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