public static enum HealthEndpointGroup.Show extends Enum<HealthEndpointGroup.Show>
HealthEndpointGroup
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 HealthEndpointGroup.Show |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HealthEndpointGroup.Show[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HealthEndpointGroup.Show NEVER
public static final HealthEndpointGroup.Show WHEN_AUTHORIZED
public static final HealthEndpointGroup.Show ALWAYS
public static HealthEndpointGroup.Show[] values()
for (HealthEndpointGroup.Show c : HealthEndpointGroup.Show.values()) System.out.println(c);
public static HealthEndpointGroup.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