public enum AttributeSelectMode extends Enum<AttributeSelectMode>
| Enum Constant and Description |
|---|
COMBO |
FANCY_LIST |
INHERIT |
LIST |
LOOKUP |
TOKEN |
| Modifier and Type | Method and Description |
|---|---|
static AttributeSelectMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AttributeSelectMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AttributeSelectMode INHERIT
public static final AttributeSelectMode COMBO
public static final AttributeSelectMode LOOKUP
public static final AttributeSelectMode LIST
public static final AttributeSelectMode FANCY_LIST
public static final AttributeSelectMode TOKEN
public static AttributeSelectMode[] values()
for (AttributeSelectMode c : AttributeSelectMode.values()) System.out.println(c);
public static AttributeSelectMode 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 nullCopyright © 2019 Open Circle Solutions. All rights reserved.