public enum ReplayMode extends Enum<ReplayMode>
QApiEnumDescriptor{name=ReplayMode, data=[none, record, play], fields=null}
Modifier and Type | Method and Description |
---|---|
String |
getJsonValue() |
static ReplayMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ReplayMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReplayMode none
public static final ReplayMode record
public static final ReplayMode play
public static final ReplayMode __UNKNOWN
public static ReplayMode[] values()
for (ReplayMode c : ReplayMode.values()) System.out.println(c);
public static ReplayMode 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 getJsonValue()