public static enum BoxAI.Mode extends Enum<BoxAI.Mode>
Enum Constant and Description |
---|
MULTIPLE_ITEM_QA
Multiple items
|
SINGLE_ITEM_QA
Single item
|
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static BoxAI.Mode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BoxAI.Mode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BoxAI.Mode MULTIPLE_ITEM_QA
public static final BoxAI.Mode SINGLE_ITEM_QA
public static BoxAI.Mode[] values()
for (BoxAI.Mode c : BoxAI.Mode.values()) System.out.println(c);
public static BoxAI.Mode valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic String toString()
toString
in class Enum<BoxAI.Mode>