Enum PresentationActionAttribute.Value
- java.lang.Object
-
- java.lang.Enum<PresentationActionAttribute.Value>
-
- org.odftoolkit.odfdom.dom.attribute.presentation.PresentationActionAttribute.Value
-
- All Implemented Interfaces:
Serializable
,Comparable<PresentationActionAttribute.Value>
- Enclosing class:
- PresentationActionAttribute
public static enum PresentationActionAttribute.Value extends Enum<PresentationActionAttribute.Value>
The value set of @presentation:action.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description EXECUTE
FADE_OUT
FIRST_PAGE
HIDE
LAST_PAGE
LAST_VISITED_PAGE
NEXT_PAGE
NONE
PREVIOUS_PAGE
SHOW
SOUND
STOP
VERB
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static PresentationActionAttribute.Value
enumValueOf(String value)
String
toString()
static PresentationActionAttribute.Value
valueOf(String name)
Returns the enum constant of this type with the specified name.static PresentationActionAttribute.Value[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EXECUTE
public static final PresentationActionAttribute.Value EXECUTE
-
FADE_OUT
public static final PresentationActionAttribute.Value FADE_OUT
-
FIRST_PAGE
public static final PresentationActionAttribute.Value FIRST_PAGE
-
HIDE
public static final PresentationActionAttribute.Value HIDE
-
LAST_PAGE
public static final PresentationActionAttribute.Value LAST_PAGE
-
LAST_VISITED_PAGE
public static final PresentationActionAttribute.Value LAST_VISITED_PAGE
-
NEXT_PAGE
public static final PresentationActionAttribute.Value NEXT_PAGE
-
NONE
public static final PresentationActionAttribute.Value NONE
-
PREVIOUS_PAGE
public static final PresentationActionAttribute.Value PREVIOUS_PAGE
-
SHOW
public static final PresentationActionAttribute.Value SHOW
-
SOUND
public static final PresentationActionAttribute.Value SOUND
-
STOP
public static final PresentationActionAttribute.Value STOP
-
VERB
public static final PresentationActionAttribute.Value VERB
-
-
Method Detail
-
values
public static PresentationActionAttribute.Value[] 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 (PresentationActionAttribute.Value c : PresentationActionAttribute.Value.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PresentationActionAttribute.Value 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
-
toString
public String toString()
- Overrides:
toString
in classEnum<PresentationActionAttribute.Value>
-
enumValueOf
public static PresentationActionAttribute.Value enumValueOf(String value)
-
-