public enum PresentationAttributeValues extends java.lang.Enum<PresentationAttributeValues>
List of presentation attributes for the elements belonging to layout of Screen.
Enum Constant and Description |
---|
_B
Blinking
|
_N
Normal
|
_R
Reversed video
|
_U
Underlined
|
NONE
Default Value
|
Modifier and Type | Method and Description |
---|---|
static PresentationAttributeValues |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PresentationAttributeValues[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PresentationAttributeValues _B
Blinking
public static final PresentationAttributeValues _N
Normal
public static final PresentationAttributeValues _R
Reversed video
public static final PresentationAttributeValues _U
Underlined
public static final PresentationAttributeValues NONE
Default Value
public static PresentationAttributeValues 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 PresentationAttributeValues[] values()
for (PresentationAttributeValues c : PresentationAttributeValues.values()) System.out.println(c);