Enum ClockWidget.Skin
- java.lang.Object
-
- java.lang.Enum<ClockWidget.Skin>
-
- org.csstudio.display.builder.model.widgets.ClockWidget.Skin
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<ClockWidget.Skin>
- Enclosing class:
- ClockWidget
public static enum ClockWidget.Skin extends java.lang.Enum<ClockWidget.Skin>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ClockWidget.Skin
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ClockWidget.Skin[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CLOCK
public static final ClockWidget.Skin CLOCK
-
DB
public static final ClockWidget.Skin DB
-
FAT
public static final ClockWidget.Skin FAT
-
INDUSTRIAL
public static final ClockWidget.Skin INDUSTRIAL
-
PEAR
public static final ClockWidget.Skin PEAR
-
PLAIN
public static final ClockWidget.Skin PLAIN
-
SLIM
public static final ClockWidget.Skin SLIM
-
TILE
public static final ClockWidget.Skin TILE
-
YOTA2
public static final ClockWidget.Skin YOTA2
-
-
Method Detail
-
values
public static ClockWidget.Skin[] 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 (ClockWidget.Skin c : ClockWidget.Skin.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ClockWidget.Skin 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
-
-