public static enum Scope.Value.Requirement extends Enum<Scope.Value.Requirement>
Enum Constant and Description |
---|
OPTIONAL
The value may be optionally included in the
Scope parameter. |
REQUIRED
The value must be present in the
Scope
parameter. |
Modifier and Type | Method and Description |
---|---|
static Scope.Value.Requirement |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Scope.Value.Requirement[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Scope.Value.Requirement REQUIRED
Scope
parameter.public static final Scope.Value.Requirement OPTIONAL
Scope
parameter.public static Scope.Value.Requirement[] values()
for (Scope.Value.Requirement c : Scope.Value.Requirement.values()) System.out.println(c);
public static Scope.Value.Requirement 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 © 2016 Connect2id Ltd.. All Rights Reserved.