Package org.apache.poi.xssf.model
Enum ThemesTable.ThemeElement
- java.lang.Object
-
- java.lang.Enum<ThemesTable.ThemeElement>
-
- org.apache.poi.xssf.model.ThemesTable.ThemeElement
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<ThemesTable.ThemeElement>
- Enclosing class:
- ThemesTable
public static enum ThemesTable.ThemeElement extends java.lang.Enum<ThemesTable.ThemeElement>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ThemesTable.ThemeElement
byId(int idx)
static ThemesTable.ThemeElement
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ThemesTable.ThemeElement[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LT1
public static final ThemesTable.ThemeElement LT1
-
DK1
public static final ThemesTable.ThemeElement DK1
-
LT2
public static final ThemesTable.ThemeElement LT2
-
DK2
public static final ThemesTable.ThemeElement DK2
-
ACCENT1
public static final ThemesTable.ThemeElement ACCENT1
-
ACCENT2
public static final ThemesTable.ThemeElement ACCENT2
-
ACCENT3
public static final ThemesTable.ThemeElement ACCENT3
-
ACCENT4
public static final ThemesTable.ThemeElement ACCENT4
-
ACCENT5
public static final ThemesTable.ThemeElement ACCENT5
-
ACCENT6
public static final ThemesTable.ThemeElement ACCENT6
-
HLINK
public static final ThemesTable.ThemeElement HLINK
-
FOLHLINK
public static final ThemesTable.ThemeElement FOLHLINK
-
UNKNOWN
public static final ThemesTable.ThemeElement UNKNOWN
-
-
Method Detail
-
values
public static ThemesTable.ThemeElement[] 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 (ThemesTable.ThemeElement c : ThemesTable.ThemeElement.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ThemesTable.ThemeElement valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
byId
public static ThemesTable.ThemeElement byId(int idx)
-
-