public static enum Timeline.TimelineState extends java.lang.Enum<Timeline.TimelineState>
| Enum Constant and Description |
|---|
CANCELLED |
DONE |
IDLE |
PLAYING_FORWARD |
PLAYING_REVERSE |
READY |
SUSPENDED |
| Modifier and Type | Method and Description |
|---|---|
static Timeline.TimelineState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Timeline.TimelineState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Timeline.TimelineState IDLE
public static final Timeline.TimelineState READY
public static final Timeline.TimelineState PLAYING_FORWARD
public static final Timeline.TimelineState PLAYING_REVERSE
public static final Timeline.TimelineState SUSPENDED
public static final Timeline.TimelineState CANCELLED
public static final Timeline.TimelineState DONE
public static Timeline.TimelineState[] values()
for (Timeline.TimelineState c : Timeline.TimelineState.values()) System.out.println(c);
public static Timeline.TimelineState 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 null