Enum ThemeVal
- java.lang.Object
-
- java.lang.Enum<ThemeVal>
-
- com.djrapitops.plan.settings.theme.ThemeVal
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getDefaultValue()
java.lang.String
getThemePath()
static ThemeVal
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ThemeVal[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
THEME_DEFAULT
public static final ThemeVal THEME_DEFAULT
-
FONT_STYLESHEET
public static final ThemeVal FONT_STYLESHEET
-
FONT_FAMILY
public static final ThemeVal FONT_FAMILY
-
RED
public static final ThemeVal RED
-
PINK
public static final ThemeVal PINK
-
PURPLE
public static final ThemeVal PURPLE
-
DEEP_PURPLE
public static final ThemeVal DEEP_PURPLE
-
INDIGO
public static final ThemeVal INDIGO
-
BLUE
public static final ThemeVal BLUE
-
LIGHT_BLUE
public static final ThemeVal LIGHT_BLUE
-
CYAN
public static final ThemeVal CYAN
-
TEAL
public static final ThemeVal TEAL
-
GREEN
public static final ThemeVal GREEN
-
LIGHT_GREEN
public static final ThemeVal LIGHT_GREEN
-
LIME
public static final ThemeVal LIME
-
YELLOW
public static final ThemeVal YELLOW
-
AMBER
public static final ThemeVal AMBER
-
ORANGE
public static final ThemeVal ORANGE
-
DEEP_ORANGE
public static final ThemeVal DEEP_ORANGE
-
BROWN
public static final ThemeVal BROWN
-
GREY
public static final ThemeVal GREY
-
BLUE_GREY
public static final ThemeVal BLUE_GREY
-
BLACK
public static final ThemeVal BLACK
-
WHITE
public static final ThemeVal WHITE
-
GRAPH_PUNCHCARD
public static final ThemeVal GRAPH_PUNCHCARD
-
GRAPH_PLAYERS_ONLINE
public static final ThemeVal GRAPH_PLAYERS_ONLINE
-
GRAPH_TPS_HIGH
public static final ThemeVal GRAPH_TPS_HIGH
-
GRAPH_TPS_MED
public static final ThemeVal GRAPH_TPS_MED
-
GRAPH_TPS_LOW
public static final ThemeVal GRAPH_TPS_LOW
-
GRAPH_CPU
public static final ThemeVal GRAPH_CPU
-
GRAPH_RAM
public static final ThemeVal GRAPH_RAM
-
GRAPH_CHUNKS
public static final ThemeVal GRAPH_CHUNKS
-
GRAPH_ENTITIES
public static final ThemeVal GRAPH_ENTITIES
-
GRAPH_WORLD_PIE
public static final ThemeVal GRAPH_WORLD_PIE
-
GRAPH_GM_PIE
public static final ThemeVal GRAPH_GM_PIE
-
GRAPH_ACTIVITY_PIE
public static final ThemeVal GRAPH_ACTIVITY_PIE
-
GRAPH_SERVER_PREF_PIE
public static final ThemeVal GRAPH_SERVER_PREF_PIE
-
GRAPH_AVG_PING
public static final ThemeVal GRAPH_AVG_PING
-
GRAPH_MAX_PING
public static final ThemeVal GRAPH_MAX_PING
-
GRAPH_MIN_PING
public static final ThemeVal GRAPH_MIN_PING
-
WORLD_MAP_HIGH
public static final ThemeVal WORLD_MAP_HIGH
-
WORLD_MAP_LOW
public static final ThemeVal WORLD_MAP_LOW
-
PARSED_SESSION_ACCORDION
@Deprecated public static final ThemeVal PARSED_SESSION_ACCORDION
Deprecated.
-
PARSED_SERVER_ACCORDION
@Deprecated public static final ThemeVal PARSED_SERVER_ACCORDION
Deprecated.
-
-
Method Detail
-
values
public static ThemeVal[] 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 (ThemeVal c : ThemeVal.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ThemeVal 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
-
getThemePath
public java.lang.String getThemePath()
-
getDefaultValue
public java.lang.String getDefaultValue()
-
-