Enum PresentationObjectAttribute.Value
- java.lang.Object
-
- java.lang.Enum<PresentationObjectAttribute.Value>
-
- org.odftoolkit.odfdom.dom.attribute.presentation.PresentationObjectAttribute.Value
-
- All Implemented Interfaces:
Serializable
,Comparable<PresentationObjectAttribute.Value>
- Enclosing class:
- PresentationObjectAttribute
public static enum PresentationObjectAttribute.Value extends Enum<PresentationObjectAttribute.Value>
The value set of @presentation:object.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static PresentationObjectAttribute.Value
enumValueOf(String value)
String
toString()
static PresentationObjectAttribute.Value
valueOf(String name)
Returns the enum constant of this type with the specified name.static PresentationObjectAttribute.Value[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CHART
public static final PresentationObjectAttribute.Value CHART
-
DATE_TIME
public static final PresentationObjectAttribute.Value DATE_TIME
-
FOOTER
public static final PresentationObjectAttribute.Value FOOTER
-
GRAPHIC
public static final PresentationObjectAttribute.Value GRAPHIC
-
HANDOUT
public static final PresentationObjectAttribute.Value HANDOUT
-
HEADER
public static final PresentationObjectAttribute.Value HEADER
-
NOTES
public static final PresentationObjectAttribute.Value NOTES
-
OBJECT
public static final PresentationObjectAttribute.Value OBJECT
-
ORGCHART
public static final PresentationObjectAttribute.Value ORGCHART
-
OUTLINE
public static final PresentationObjectAttribute.Value OUTLINE
-
PAGE
public static final PresentationObjectAttribute.Value PAGE
-
PAGE_NUMBER
public static final PresentationObjectAttribute.Value PAGE_NUMBER
-
SUBTITLE
public static final PresentationObjectAttribute.Value SUBTITLE
-
TABLE
public static final PresentationObjectAttribute.Value TABLE
-
TEXT
public static final PresentationObjectAttribute.Value TEXT
-
TITLE
public static final PresentationObjectAttribute.Value TITLE
-
-
Method Detail
-
values
public static PresentationObjectAttribute.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 (PresentationObjectAttribute.Value c : PresentationObjectAttribute.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 PresentationObjectAttribute.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<PresentationObjectAttribute.Value>
-
enumValueOf
public static PresentationObjectAttribute.Value enumValueOf(String value)
-
-