Package com.brightcove.omniture
Enum OmnitureComponent.TrackingState
- java.lang.Object
-
- java.lang.Enum<OmnitureComponent.TrackingState>
-
- com.brightcove.omniture.OmnitureComponent.TrackingState
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<OmnitureComponent.TrackingState>
- Enclosing class:
- OmnitureComponent
public static enum OmnitureComponent.TrackingState extends java.lang.Enum<OmnitureComponent.TrackingState>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static OmnitureComponent.TrackingState
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static OmnitureComponent.TrackingState[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CLOSED
public static final OmnitureComponent.TrackingState CLOSED
-
OPEN
public static final OmnitureComponent.TrackingState OPEN
-
PLAYING
public static final OmnitureComponent.TrackingState PLAYING
-
STOPPED
public static final OmnitureComponent.TrackingState STOPPED
-
-
Method Detail
-
values
public static OmnitureComponent.TrackingState[] 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 (OmnitureComponent.TrackingState c : OmnitureComponent.TrackingState.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OmnitureComponent.TrackingState valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-