public enum LookUpPropertiesError extends Enum<LookUpPropertiesError>
| Enum Constant and Description |
|---|
PROPERTY_GROUP_NOT_FOUND
This property group does not exist for this file.
|
| Modifier and Type | Method and Description |
|---|---|
static LookUpPropertiesError |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LookUpPropertiesError[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LookUpPropertiesError PROPERTY_GROUP_NOT_FOUND
public static LookUpPropertiesError[] values()
for (LookUpPropertiesError c : LookUpPropertiesError.values()) System.out.println(c);
public static LookUpPropertiesError 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