public static enum SubCommand.CommandCategory extends java.lang.Enum<SubCommand.CommandCategory>
Enum Constant and Description |
---|
ACTIONS
|
CLAIMING
|
DEBUG
|
INFO
|
TELEPORT
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toString()
|
static SubCommand.CommandCategory
|
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SubCommand.CommandCategory[]
|
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SubCommand.CommandCategory CLAIMING
public static final SubCommand.CommandCategory TELEPORT
public static final SubCommand.CommandCategory ACTIONS
public static final SubCommand.CommandCategory INFO
public static final SubCommand.CommandCategory DEBUG
public static SubCommand.CommandCategory[] values()
for (SubCommand.CommandCategory c : SubCommand.CommandCategory.values()) System.out.println(c);
public static SubCommand.CommandCategory valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
java.lang.NullPointerException
- if the argument is nullpublic java.lang.String toString()
toString
in class java.lang.Enum<SubCommand.CommandCategory>