public enum ThemeColor extends java.lang.Enum<ThemeColor>
| Enum Constant and Description |
|---|
Accent1
Specifies the accent1 theme color.
|
Accent2
Specifies the accent2 theme color.
|
Accent3
Specifies the accent3 theme color.
|
Accent4
Specifies the accent4 theme color.
|
Accent5
Specifies the accent5 theme color.
|
Accent6
Specifies the accent6 theme color.
|
Dark1
Specifies the Dark 1 theme color.
|
Dark2
Specifies the Dark 2 theme color.
|
FollowedHyperlink
Specifies the followed hyperlink theme color.
|
Hyperlink
Specifies the hyperlink theme color.
|
Light1
Specifies the Light 1 theme color.
|
Light2
Specifies the Light 2 theme color.
|
None
Specifies to not use any theme color.
|
| Modifier and Type | Method and Description |
|---|---|
static ThemeColor |
forValue(int value) |
int |
getValue() |
static ThemeColor |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ThemeColor[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ThemeColor None
public static final ThemeColor Light1
public static final ThemeColor Dark1
public static final ThemeColor Light2
public static final ThemeColor Dark2
public static final ThemeColor Accent1
public static final ThemeColor Accent2
public static final ThemeColor Accent3
public static final ThemeColor Accent4
public static final ThemeColor Accent5
public static final ThemeColor Accent6
public static final ThemeColor Hyperlink
public static final ThemeColor FollowedHyperlink
public static ThemeColor[] values()
for (ThemeColor c : ThemeColor.values()) System.out.println(c);
public static ThemeColor valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic int getValue()
public static ThemeColor forValue(int value)