Enum PresentationTransitionSpeedAttribute.Value
- java.lang.Object
-
- java.lang.Enum<PresentationTransitionSpeedAttribute.Value>
-
- org.odftoolkit.odfdom.dom.attribute.presentation.PresentationTransitionSpeedAttribute.Value
-
- All Implemented Interfaces:
Serializable
,Comparable<PresentationTransitionSpeedAttribute.Value>
- Enclosing class:
- PresentationTransitionSpeedAttribute
public static enum PresentationTransitionSpeedAttribute.Value extends Enum<PresentationTransitionSpeedAttribute.Value>
The value set of @presentation:transition-speed.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static PresentationTransitionSpeedAttribute.Value
enumValueOf(String value)
String
toString()
static PresentationTransitionSpeedAttribute.Value
valueOf(String name)
Returns the enum constant of this type with the specified name.static PresentationTransitionSpeedAttribute.Value[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FAST
public static final PresentationTransitionSpeedAttribute.Value FAST
-
MEDIUM
public static final PresentationTransitionSpeedAttribute.Value MEDIUM
-
SLOW
public static final PresentationTransitionSpeedAttribute.Value SLOW
-
-
Method Detail
-
values
public static PresentationTransitionSpeedAttribute.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 (PresentationTransitionSpeedAttribute.Value c : PresentationTransitionSpeedAttribute.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 PresentationTransitionSpeedAttribute.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<PresentationTransitionSpeedAttribute.Value>
-
enumValueOf
public static PresentationTransitionSpeedAttribute.Value enumValueOf(String value)
-
-