Enum OdfStylePropertiesSet
- java.lang.Object
-
- java.lang.Enum<OdfStylePropertiesSet>
-
- org.odftoolkit.odfdom.dom.style.props.OdfStylePropertiesSet
-
- All Implemented Interfaces:
Serializable
,Comparable<OdfStylePropertiesSet>
public enum OdfStylePropertiesSet extends Enum<OdfStylePropertiesSet>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static OdfStylePropertiesSet
valueOf(String name)
Returns the enum constant of this type with the specified name.static OdfStylePropertiesSet[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ChartProperties
public static final OdfStylePropertiesSet ChartProperties
-
DrawingPageProperties
public static final OdfStylePropertiesSet DrawingPageProperties
-
GraphicProperties
public static final OdfStylePropertiesSet GraphicProperties
-
HeaderFooterProperties
public static final OdfStylePropertiesSet HeaderFooterProperties
-
ListLevelProperties
public static final OdfStylePropertiesSet ListLevelProperties
-
PageLayoutProperties
public static final OdfStylePropertiesSet PageLayoutProperties
-
ParagraphProperties
public static final OdfStylePropertiesSet ParagraphProperties
-
RubyProperties
public static final OdfStylePropertiesSet RubyProperties
-
SectionProperties
public static final OdfStylePropertiesSet SectionProperties
-
TableCellProperties
public static final OdfStylePropertiesSet TableCellProperties
-
TableColumnProperties
public static final OdfStylePropertiesSet TableColumnProperties
-
TableProperties
public static final OdfStylePropertiesSet TableProperties
-
TableRowProperties
public static final OdfStylePropertiesSet TableRowProperties
-
TextProperties
public static final OdfStylePropertiesSet TextProperties
-
-
Method Detail
-
values
public static OdfStylePropertiesSet[] 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 (OdfStylePropertiesSet c : OdfStylePropertiesSet.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OdfStylePropertiesSet 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
-
-