public static enum HealthProperties.Show extends Enum<HealthProperties.Show>
HealthEndpoint
web
extensions.Enum Constant and Description |
---|
ALWAYS
Always show the item in the response.
|
NEVER
Never show the item in the response.
|
WHEN_AUTHORIZED
Show the item in the response when accessed by an authorized user.
|
Modifier and Type | Method and Description |
---|---|
static HealthProperties.Show |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HealthProperties.Show[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HealthProperties.Show NEVER
public static final HealthProperties.Show WHEN_AUTHORIZED
public static final HealthProperties.Show ALWAYS
public static HealthProperties.Show[] values()
for (HealthProperties.Show c : HealthProperties.Show.values()) System.out.println(c);
public static HealthProperties.Show 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