Arcturus-Community/src/main/java/com/eu/habbo/habbohotel/modtool/CfhActionType.java

39 lines
715 B
Java
Raw Normal View History

2018-07-06 15:30:00 +02:00
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;
}
@Override
public String toString()
{
return this.name().toLowerCase();
}
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;
}
}