Enum PresentationDirectionAttribute.Value
- java.lang.Object
-
- java.lang.Enum<PresentationDirectionAttribute.Value>
-
- org.odftoolkit.odfdom.dom.attribute.presentation.PresentationDirectionAttribute.Value
-
- All Implemented Interfaces:
Serializable
,Comparable<PresentationDirectionAttribute.Value>
- Enclosing class:
- PresentationDirectionAttribute
public static enum PresentationDirectionAttribute.Value extends Enum<PresentationDirectionAttribute.Value>
The value set of @presentation:direction.
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static PresentationDirectionAttribute.Value
enumValueOf(String value)
String
toString()
static PresentationDirectionAttribute.Value
valueOf(String name)
Returns the enum constant of this type with the specified name.static PresentationDirectionAttribute.Value[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CLOCKWISE
public static final PresentationDirectionAttribute.Value CLOCKWISE
-
COUNTER_CLOCKWISE
public static final PresentationDirectionAttribute.Value COUNTER_CLOCKWISE
-
FROM_BOTTOM
public static final PresentationDirectionAttribute.Value FROM_BOTTOM
-
FROM_CENTER
public static final PresentationDirectionAttribute.Value FROM_CENTER
-
FROM_LEFT
public static final PresentationDirectionAttribute.Value FROM_LEFT
-
FROM_LOWER_LEFT
public static final PresentationDirectionAttribute.Value FROM_LOWER_LEFT
-
FROM_LOWER_RIGHT
public static final PresentationDirectionAttribute.Value FROM_LOWER_RIGHT
-
FROM_RIGHT
public static final PresentationDirectionAttribute.Value FROM_RIGHT
-
FROM_TOP
public static final PresentationDirectionAttribute.Value FROM_TOP
-
FROM_UPPER_LEFT
public static final PresentationDirectionAttribute.Value FROM_UPPER_LEFT
-
FROM_UPPER_RIGHT
public static final PresentationDirectionAttribute.Value FROM_UPPER_RIGHT
-
HORIZONTAL
public static final PresentationDirectionAttribute.Value HORIZONTAL
-
NONE
public static final PresentationDirectionAttribute.Value NONE
-
PATH
public static final PresentationDirectionAttribute.Value PATH
-
SPIRAL_INWARD_LEFT
public static final PresentationDirectionAttribute.Value SPIRAL_INWARD_LEFT
-
SPIRAL_INWARD_RIGHT
public static final PresentationDirectionAttribute.Value SPIRAL_INWARD_RIGHT
-
SPIRAL_OUTWARD_LEFT
public static final PresentationDirectionAttribute.Value SPIRAL_OUTWARD_LEFT
-
SPIRAL_OUTWARD_RIGHT
public static final PresentationDirectionAttribute.Value SPIRAL_OUTWARD_RIGHT
-
TO_BOTTOM
public static final PresentationDirectionAttribute.Value TO_BOTTOM
-
TO_CENTER
public static final PresentationDirectionAttribute.Value TO_CENTER
-
TO_LEFT
public static final PresentationDirectionAttribute.Value TO_LEFT
-
TO_LOWER_LEFT
public static final PresentationDirectionAttribute.Value TO_LOWER_LEFT
-
TO_LOWER_RIGHT
public static final PresentationDirectionAttribute.Value TO_LOWER_RIGHT
-
TO_RIGHT
public static final PresentationDirectionAttribute.Value TO_RIGHT
-
TO_TOP
public static final PresentationDirectionAttribute.Value TO_TOP
-
TO_UPPER_LEFT
public static final PresentationDirectionAttribute.Value TO_UPPER_LEFT
-
TO_UPPER_RIGHT
public static final PresentationDirectionAttribute.Value TO_UPPER_RIGHT
-
VERTICAL
public static final PresentationDirectionAttribute.Value VERTICAL
-
-
Method Detail
-
values
public static PresentationDirectionAttribute.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 (PresentationDirectionAttribute.Value c : PresentationDirectionAttribute.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 PresentationDirectionAttribute.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<PresentationDirectionAttribute.Value>
-
enumValueOf
public static PresentationDirectionAttribute.Value enumValueOf(String value)
-
-