public static enum PropertyKey.Result extends Enum<PropertyKey.Result>
| Enum Constant and Description |
|---|
ALLOWED |
INVALID_TAGS |
NOT_ALLOWED |
NOT_EQUALS |
| Modifier and Type | Method and Description |
|---|---|
static PropertyKey.Result |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PropertyKey.Result[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PropertyKey.Result NOT_EQUALS
public static final PropertyKey.Result INVALID_TAGS
public static final PropertyKey.Result NOT_ALLOWED
public static final PropertyKey.Result ALLOWED
public static PropertyKey.Result[] values()
for (PropertyKey.Result c : PropertyKey.Result.values()) System.out.println(c);
public static PropertyKey.Result 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 null