Enum DigitalClockWidget.LCDFont
- java.lang.Object
-
- java.lang.Enum<DigitalClockWidget.LCDFont>
-
- org.csstudio.display.builder.model.widgets.DigitalClockWidget.LCDFont
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<DigitalClockWidget.LCDFont>
- Enclosing class:
- DigitalClockWidget
public static enum DigitalClockWidget.LCDFont extends java.lang.Enum<DigitalClockWidget.LCDFont>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DIGITAL
DIGITAL_BOLD
ELEKTRA
LCD
STANDARD
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DigitalClockWidget.LCDFont
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static DigitalClockWidget.LCDFont[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DIGITAL
public static final DigitalClockWidget.LCDFont DIGITAL
-
DIGITAL_BOLD
public static final DigitalClockWidget.LCDFont DIGITAL_BOLD
-
ELEKTRA
public static final DigitalClockWidget.LCDFont ELEKTRA
-
LCD
public static final DigitalClockWidget.LCDFont LCD
-
STANDARD
public static final DigitalClockWidget.LCDFont STANDARD
-
-
Method Detail
-
values
public static DigitalClockWidget.LCDFont[] 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.LCDFont c : DigitalClockWidget.LCDFont.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.LCDFont 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
-
-