public static enum Game.Difficulty extends java.lang.Enum<Game.Difficulty>
Modifier and Type | Method and Description |
---|---|
int |
getDifficulty()
Getter do valor numérico da dificuldade
|
static Game.Difficulty |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Game.Difficulty[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Game.Difficulty EASY
public static final Game.Difficulty MEDIUM
public static final Game.Difficulty HARD
public static Game.Difficulty[] values()
for (Game.Difficulty c : Game.Difficulty.values()) System.out.println(c);
public static Game.Difficulty 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 nullpublic int getDifficulty()