Enum DigitalClockWidget.Design
- java.lang.Object
-
- java.lang.Enum<DigitalClockWidget.Design>
-
- org.csstudio.display.builder.model.widgets.DigitalClockWidget.Design
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<DigitalClockWidget.Design>
- Enclosing class:
- DigitalClockWidget
public static enum DigitalClockWidget.Design extends java.lang.Enum<DigitalClockWidget.Design>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DigitalClockWidget.Design
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static DigitalClockWidget.Design[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AMBER
public static final DigitalClockWidget.Design AMBER
-
BEIGE
public static final DigitalClockWidget.Design BEIGE
-
BLACK
public static final DigitalClockWidget.Design BLACK
-
BLACK_RED
public static final DigitalClockWidget.Design BLACK_RED
-
BLACK_YELLOW
public static final DigitalClockWidget.Design BLACK_YELLOW
-
BLUE
public static final DigitalClockWidget.Design BLUE
-
BLUE2
public static final DigitalClockWidget.Design BLUE2
-
BLUE_BLACK
public static final DigitalClockWidget.Design BLUE_BLACK
-
BLUE_BLUE
public static final DigitalClockWidget.Design BLUE_BLUE
-
BLUE_DARKBLUE
public static final DigitalClockWidget.Design BLUE_DARKBLUE
-
BLUE_GRAY
public static final DigitalClockWidget.Design BLUE_GRAY
-
BLUE_LIGHTBLUE
public static final DigitalClockWidget.Design BLUE_LIGHTBLUE
-
BLUE_LIGHTBLUE2
public static final DigitalClockWidget.Design BLUE_LIGHTBLUE2
-
DARKAMBER
public static final DigitalClockWidget.Design DARKAMBER
-
DARKBLUE
public static final DigitalClockWidget.Design DARKBLUE
-
DARKGREEN
public static final DigitalClockWidget.Design DARKGREEN
-
DARKPURPLE
public static final DigitalClockWidget.Design DARKPURPLE
-
GRAY
public static final DigitalClockWidget.Design GRAY
-
GRAY_PURPLE
public static final DigitalClockWidget.Design GRAY_PURPLE
-
GREEN
public static final DigitalClockWidget.Design GREEN
-
GREEN_BLACK
public static final DigitalClockWidget.Design GREEN_BLACK
-
GREEN_DARKGREEN
public static final DigitalClockWidget.Design GREEN_DARKGREEN
-
LIGHTBLUE
public static final DigitalClockWidget.Design LIGHTBLUE
-
LIGHTGREEN
public static final DigitalClockWidget.Design LIGHTGREEN
-
LIGHTGREEN_BLACK
public static final DigitalClockWidget.Design LIGHTGREEN_BLACK
-
ORANGE
public static final DigitalClockWidget.Design ORANGE
-
PURPLE
public static final DigitalClockWidget.Design PURPLE
-
RED
public static final DigitalClockWidget.Design RED
-
RED_DARKRED
public static final DigitalClockWidget.Design RED_DARKRED
-
SECTIONS
public static final DigitalClockWidget.Design SECTIONS
-
STANDARD
public static final DigitalClockWidget.Design STANDARD
-
STANDARD_GREEN
public static final DigitalClockWidget.Design STANDARD_GREEN
-
WHITE
public static final DigitalClockWidget.Design WHITE
-
YELLOW
public static final DigitalClockWidget.Design YELLOW
-
YELLOW_BLACK
public static final DigitalClockWidget.Design YELLOW_BLACK
-
YOCTOPUCE
public static final DigitalClockWidget.Design YOCTOPUCE
-
-
Method Detail
-
values
public static DigitalClockWidget.Design[] 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 (DigitalClockWidget.Design c : DigitalClockWidget.Design.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DigitalClockWidget.Design 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
-
-