public static enum GameItem.EnumAction extends Enum<GameItem.EnumAction>
| Enum Constant and Description |
|---|
VALUE_CONSUME |
VALUE_DROP |
VALUE_MARK |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static GameItem.EnumAction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GameItem.EnumAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="CONSUME") public static final GameItem.EnumAction VALUE_CONSUME
@SerializedName(value="DROP") public static final GameItem.EnumAction VALUE_DROP
@SerializedName(value="MARK") public static final GameItem.EnumAction VALUE_MARK
public static GameItem.EnumAction[] values()
for (GameItem.EnumAction c : GameItem.EnumAction.values()) System.out.println(c);
public static GameItem.EnumAction 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<GameItem.EnumAction>Copyright © 2023. All rights reserved.