Package org.pushingpixels.trident
Enum TimelineScenario.TimelineScenarioState
- java.lang.Object
-
- java.lang.Enum<TimelineScenario.TimelineScenarioState>
-
- org.pushingpixels.trident.TimelineScenario.TimelineScenarioState
-
- All Implemented Interfaces:
Serializable
,Comparable<TimelineScenario.TimelineScenarioState>
- Enclosing class:
- TimelineScenario
public static enum TimelineScenario.TimelineScenarioState extends Enum<TimelineScenario.TimelineScenarioState>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static TimelineScenario.TimelineScenarioState
valueOf(String name)
Returns the enum constant of this type with the specified name.static TimelineScenario.TimelineScenarioState[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DONE
public static final TimelineScenario.TimelineScenarioState DONE
-
PLAYING
public static final TimelineScenario.TimelineScenarioState PLAYING
-
IDLE
public static final TimelineScenario.TimelineScenarioState IDLE
-
SUSPENDED
public static final TimelineScenario.TimelineScenarioState SUSPENDED
-
-
Method Detail
-
values
public static TimelineScenario.TimelineScenarioState[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (TimelineScenario.TimelineScenarioState c : TimelineScenario.TimelineScenarioState.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TimelineScenario.TimelineScenarioState valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-