public enum PlaybackType extends java.lang.Enum<PlaybackType> implements IZITravelEnumeration
| Enum Constant and Description |
|---|
Random
The same, as
Sequential, but order is not important. |
Sequential
Consumer must follow a sequence of children MTGObjects one by one.
|
| Modifier and Type | Method and Description |
|---|---|
static PlaybackType |
fromValue(java.lang.String value) |
java.lang.String |
toString() |
static PlaybackType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PlaybackType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PlaybackType Sequential
public static final PlaybackType Random
Sequential, but order is not important.public static PlaybackType[] values()
for (PlaybackType c : PlaybackType.values()) System.out.println(c);
public static PlaybackType 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 java.lang.String toString()
toString in class java.lang.Enum<PlaybackType>public static PlaybackType fromValue(java.lang.String value)