Arcturus-Community/src/main/java/com/eu/habbo/habbohotel/modtool/CfhActionType.java
2019-05-26 21:15:26 +03:00

34 lines
696 B
Java

package com.eu.habbo.habbohotel.modtool;
public enum CfhActionType {
MODS(0),
AUTO_REPLY(1),
AUTO_IGNORE(2),
GUARDIANS(3);
public final int type;
CfhActionType(int type) {
this.type = type;
}
public static CfhActionType get(String name) {
switch (name) {
case "auto_reply":
return CfhActionType.AUTO_REPLY;
case "auto_ignore":
return CfhActionType.AUTO_IGNORE;
case "guardians":
return CfhActionType.GUARDIANS;
}
return CfhActionType.MODS;
}
@Override
public String toString() {
return this.name().toLowerCase();
}
}