public enum DisplayList extends Enum<DisplayList> implements AttributeValue
| Enum Constant and Description |
|---|
NONE
none: "the list values are not displayed"
|
SORT_ASCENDING
sort-ascending: "the list values are displayed in ascending order."
|
UNSORTED
unsorted: "the list values are displayed in the order they occur in the condition."
|
| Modifier and Type | Method and Description |
|---|---|
String |
getValue() |
static DisplayList |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DisplayList[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DisplayList NONE
public static final DisplayList SORT_ASCENDING
public static final DisplayList UNSORTED
public static DisplayList[] values()
for (DisplayList c : DisplayList.values()) System.out.println(c);
public static DisplayList valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String getValue()
getValue in interface AttributeValueCopyright © 2016–2021. All rights reserved.