Enum SymbolPaletteUtil.SymbolThemePalette
- java.lang.Object
-
- java.lang.Enum<SymbolPaletteUtil.SymbolThemePalette>
-
- com.inductiveautomation.perspective.common.config.symbols.util.SymbolPaletteUtil.SymbolThemePalette
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<SymbolPaletteUtil.SymbolThemePalette>
- Enclosing class:
- SymbolPaletteUtil
public static enum SymbolPaletteUtil.SymbolThemePalette extends java.lang.Enum<SymbolPaletteUtil.SymbolThemePalette>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DARK
DARK_COOL
DARK_WARM
LIGHT
LIGHT_COOL
LIGHT_WARM
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getName()
static SymbolPaletteUtil.SymbolThemePalette
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static SymbolPaletteUtil.SymbolThemePalette[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LIGHT
public static final SymbolPaletteUtil.SymbolThemePalette LIGHT
-
LIGHT_WARM
public static final SymbolPaletteUtil.SymbolThemePalette LIGHT_WARM
-
LIGHT_COOL
public static final SymbolPaletteUtil.SymbolThemePalette LIGHT_COOL
-
DARK
public static final SymbolPaletteUtil.SymbolThemePalette DARK
-
DARK_WARM
public static final SymbolPaletteUtil.SymbolThemePalette DARK_WARM
-
DARK_COOL
public static final SymbolPaletteUtil.SymbolThemePalette DARK_COOL
-
-
Method Detail
-
values
public static SymbolPaletteUtil.SymbolThemePalette[] 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 (SymbolPaletteUtil.SymbolThemePalette c : SymbolPaletteUtil.SymbolThemePalette.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SymbolPaletteUtil.SymbolThemePalette 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
-
getName
public java.lang.String getName()
-
-