public enum IntensityAttributeValues extends java.lang.Enum<IntensityAttributeValues>
List of intensity attributes for the elements belonging to layout of Screen.
Modifier and Type | Method and Description |
---|---|
static IntensityAttributeValues |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IntensityAttributeValues[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IntensityAttributeValues _B
Bright.
The field is highlighted.
public static final IntensityAttributeValues _D
Dark
The field is hidden.
public static final IntensityAttributeValues _N
Normal
public static final IntensityAttributeValues NONE
Default Value
public static IntensityAttributeValues valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static IntensityAttributeValues[] values()
for (IntensityAttributeValues c : IntensityAttributeValues.values()) System.out.println(c);