public static enum CuePoint.CuePointType extends java.lang.Enum<CuePoint.CuePointType>
Enum Constant and Description |
---|
AD
An ad break.
|
CODE
A non-ad event or action.
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toString() |
static CuePoint.CuePointType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CuePoint.CuePointType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CuePoint.CuePointType AD
public static final CuePoint.CuePointType CODE
public static CuePoint.CuePointType[] values()
for (CuePoint.CuePointType c : CuePoint.CuePointType.values()) System.out.println(c);
public static CuePoint.CuePointType 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<CuePoint.CuePointType>