public static enum VideoGameShow.EnumAction extends Enum<VideoGameShow.EnumAction>
| Enum Constant and Description |
|---|
NULL |
VALUE_END_GAME |
VALUE_START_GAME |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static VideoGameShow.EnumAction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VideoGameShow.EnumAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VideoGameShow.EnumAction VALUE_START_GAME
public static final VideoGameShow.EnumAction VALUE_END_GAME
public static final VideoGameShow.EnumAction NULL
public static VideoGameShow.EnumAction[] values()
for (VideoGameShow.EnumAction c : VideoGameShow.EnumAction.values()) System.out.println(c);
public static VideoGameShow.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<VideoGameShow.EnumAction>Copyright © 2018. All rights reserved.