Enum SmilFillAttribute.Value
- java.lang.Object
- 
- java.lang.Enum<SmilFillAttribute.Value>
- 
- org.odftoolkit.odfdom.dom.attribute.smil.SmilFillAttribute.Value
 
 
- 
- All Implemented Interfaces:
- Serializable,- Comparable<SmilFillAttribute.Value>
 - Enclosing class:
- SmilFillAttribute
 
 public static enum SmilFillAttribute.Value extends Enum<SmilFillAttribute.Value> The value set of @smil:fill.
- 
- 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static SmilFillAttribute.ValueenumValueOf(String value)StringtoString()static SmilFillAttribute.ValuevalueOf(String name)Returns the enum constant of this type with the specified name.static SmilFillAttribute.Value[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
AUTOpublic static final SmilFillAttribute.Value AUTO 
 - 
DEFAULTpublic static final SmilFillAttribute.Value DEFAULT 
 - 
FREEZEpublic static final SmilFillAttribute.Value FREEZE 
 - 
HOLDpublic static final SmilFillAttribute.Value HOLD 
 - 
REMOVEpublic static final SmilFillAttribute.Value REMOVE 
 - 
TRANSITIONpublic static final SmilFillAttribute.Value TRANSITION 
 
- 
 - 
Method Detail- 
valuespublic static SmilFillAttribute.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 (SmilFillAttribute.Value c : SmilFillAttribute.Value.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static SmilFillAttribute.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 name
- NullPointerException- if the argument is null
 
 - 
toStringpublic String toString() - Overrides:
- toStringin class- Enum<SmilFillAttribute.Value>
 
 - 
enumValueOfpublic static SmilFillAttribute.Value enumValueOf(String value) 
 
- 
 
-