Enum PresentationEffectAttribute.Value
- java.lang.Object
-
- java.lang.Enum<PresentationEffectAttribute.Value>
-
- org.odftoolkit.odfdom.dom.attribute.presentation.PresentationEffectAttribute.Value
-
- All Implemented Interfaces:
Serializable
,Comparable<PresentationEffectAttribute.Value>
- Enclosing class:
- PresentationEffectAttribute
public static enum PresentationEffectAttribute.Value extends Enum<PresentationEffectAttribute.Value>
The value set of @presentation:effect.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static PresentationEffectAttribute.Value
enumValueOf(String value)
String
toString()
static PresentationEffectAttribute.Value
valueOf(String name)
Returns the enum constant of this type with the specified name.static PresentationEffectAttribute.Value[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
APPEAR
public static final PresentationEffectAttribute.Value APPEAR
-
CHECKERBOARD
public static final PresentationEffectAttribute.Value CHECKERBOARD
-
CLOSE
public static final PresentationEffectAttribute.Value CLOSE
-
DISSOLVE
public static final PresentationEffectAttribute.Value DISSOLVE
-
FADE
public static final PresentationEffectAttribute.Value FADE
-
HIDE
public static final PresentationEffectAttribute.Value HIDE
-
LASER
public static final PresentationEffectAttribute.Value LASER
-
LINES
public static final PresentationEffectAttribute.Value LINES
-
MOVE
public static final PresentationEffectAttribute.Value MOVE
-
MOVE_SHORT
public static final PresentationEffectAttribute.Value MOVE_SHORT
-
NONE
public static final PresentationEffectAttribute.Value NONE
-
OPEN
public static final PresentationEffectAttribute.Value OPEN
-
RANDOM
public static final PresentationEffectAttribute.Value RANDOM
-
ROTATE
public static final PresentationEffectAttribute.Value ROTATE
-
STRETCH
public static final PresentationEffectAttribute.Value STRETCH
-
STRIPES
public static final PresentationEffectAttribute.Value STRIPES
-
WAVYLINE
public static final PresentationEffectAttribute.Value WAVYLINE
-
-
Method Detail
-
values
public static PresentationEffectAttribute.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 (PresentationEffectAttribute.Value c : PresentationEffectAttribute.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 PresentationEffectAttribute.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<PresentationEffectAttribute.Value>
-
enumValueOf
public static PresentationEffectAttribute.Value enumValueOf(String value)
-
-