public static enum PropertyKey.DisplayType extends Enum<PropertyKey.DisplayType>
Enum Constant and Description |
---|
CREDENTIALS
The property value contains credentials and should not be displayed directly.
|
DEFAULT
The property value should be displayed normally.
|
Modifier and Type | Method and Description |
---|---|
static PropertyKey.DisplayType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PropertyKey.DisplayType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PropertyKey.DisplayType DEFAULT
public static final PropertyKey.DisplayType CREDENTIALS
public static PropertyKey.DisplayType[] values()
for (PropertyKey.DisplayType c : PropertyKey.DisplayType.values()) System.out.println(c);
public static PropertyKey.DisplayType 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 © 2023. All Rights Reserved.