public enum FacetType extends Enum<FacetType>
| Enum Constant and Description |
|---|
INPUT_GROUP_ADDON |
INPUT_GROUP_BTN |
NONE |
| Modifier and Type | Method and Description |
|---|---|
static FacetType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FacetType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FacetType NONE
public static final FacetType INPUT_GROUP_ADDON
public static final FacetType INPUT_GROUP_BTN
public final String label
public static FacetType[] values()
for (FacetType c : FacetType.values()) System.out.println(c);
public static FacetType 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. All rights reserved.