public enum DelegationRequest extends Enum<DelegationRequest>
| Enum Constant and Description |
|---|
NOT_REQUESTED
Delegation was not requested.
|
REQUESTED_OPTIONAL
Delegation was requested, as optional.
|
REQUESTED_REQUIRED
Delegation was requested, as required.
|
| Modifier and Type | Method and Description |
|---|---|
static DelegationRequest |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DelegationRequest[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DelegationRequest NOT_REQUESTED
public static final DelegationRequest REQUESTED_OPTIONAL
public static final DelegationRequest REQUESTED_REQUIRED
public static DelegationRequest[] values()
for (DelegationRequest c : DelegationRequest.values()) System.out.println(c);
public static DelegationRequest 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 © 1999–2018 Shibboleth Consortium. All rights reserved.