Package org.gephi.timeline.api
Enum TimelineModelEvent.EventType
- java.lang.Object
-
- java.lang.Enum<TimelineModelEvent.EventType>
-
- org.gephi.timeline.api.TimelineModelEvent.EventType
-
- All Implemented Interfaces:
Serializable
,Comparable<TimelineModelEvent.EventType>
- Enclosing class:
- TimelineModelEvent
public static enum TimelineModelEvent.EventType extends Enum<TimelineModelEvent.EventType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CHART
CUSTOM_BOUNDS
ENABLED
INTERVAL
MIN_MAX
MODEL
PLAY_START
PLAY_STOP
VALID_BOUNDS
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static TimelineModelEvent.EventType
valueOf(String name)
Returns the enum constant of this type with the specified name.static TimelineModelEvent.EventType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MODEL
public static final TimelineModelEvent.EventType MODEL
-
MIN_MAX
public static final TimelineModelEvent.EventType MIN_MAX
-
INTERVAL
public static final TimelineModelEvent.EventType INTERVAL
-
CUSTOM_BOUNDS
public static final TimelineModelEvent.EventType CUSTOM_BOUNDS
-
ENABLED
public static final TimelineModelEvent.EventType ENABLED
-
PLAY_START
public static final TimelineModelEvent.EventType PLAY_START
-
PLAY_STOP
public static final TimelineModelEvent.EventType PLAY_STOP
-
CHART
public static final TimelineModelEvent.EventType CHART
-
VALID_BOUNDS
public static final TimelineModelEvent.EventType VALID_BOUNDS
-
-
Method Detail
-
values
public static TimelineModelEvent.EventType[] 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 (TimelineModelEvent.EventType c : TimelineModelEvent.EventType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TimelineModelEvent.EventType 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
-
-