public enum PropertyKeyState extends Enum<PropertyKeyState>
PropertyKeyState
enum is used to represent the state of the propertyEnum Constant and Description |
---|
ABSENT
Property missing
|
PRESENT
Property exist
|
Modifier and Type | Method and Description |
---|---|
static PropertyKeyState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PropertyKeyState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PropertyKeyState PRESENT
public static final PropertyKeyState ABSENT
public static PropertyKeyState[] values()
for (PropertyKeyState c : PropertyKeyState.values()) System.out.println(c);
public static PropertyKeyState 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 © 2022 Apache Software Foundation. All rights reserved.