public static enum AbstractArtificialIntelligence.Level extends java.lang.Enum<AbstractArtificialIntelligence.Level>
Enum Constant and Description |
---|
AVERAGE
Average level, not supported yet.
|
EASY
Easy level.
|
HARD
Hard level, you got to think more than a second for each move,
not supported yet.
|
SUPER_EASY
Guaranteed win.
|
SUPER_HARD
Super hard level, you will need to build graphs and think like
an engineer to win.
|
Modifier and Type | Method and Description |
---|---|
static AbstractArtificialIntelligence.Level |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AbstractArtificialIntelligence.Level[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AbstractArtificialIntelligence.Level SUPER_EASY
public static final AbstractArtificialIntelligence.Level EASY
public static final AbstractArtificialIntelligence.Level AVERAGE
public static final AbstractArtificialIntelligence.Level HARD
public static final AbstractArtificialIntelligence.Level SUPER_HARD
public static AbstractArtificialIntelligence.Level[] values()
for (AbstractArtificialIntelligence.Level c : AbstractArtificialIntelligence.Level.values()) System.out.println(c);
public static AbstractArtificialIntelligence.Level 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 namejava.lang.NullPointerException
- if the argument is null