|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<ScopeToken.Requirement>
com.nimbusds.oauth2.sdk.ScopeToken.Requirement
public static enum ScopeToken.Requirement
Enumeration of the scope token
requirements
for application-specific authorisation requests.
Enum Constant Summary | |
---|---|
OPTIONAL
The token may be optionally included in the Scope
parameter. |
|
REQUIRED
The token must be present in the Scope parameter. |
Method Summary | |
---|---|
static ScopeToken.Requirement |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static ScopeToken.Requirement[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final ScopeToken.Requirement REQUIRED
Scope
parameter.
public static final ScopeToken.Requirement OPTIONAL
Scope
parameter.
Method Detail |
---|
public static ScopeToken.Requirement[] values()
for (ScopeToken.Requirement c : ScopeToken.Requirement.values()) System.out.println(c);
public static ScopeToken.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 name
NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |