public enum TokenEncoding extends java.lang.Enum<TokenEncoding>
| Enum Constant and Description |
|---|
IDENTIFIER
Opaque secure identifier.
|
SELF_CONTAINED
Self-contained, the authorisation is encoded (e.g.
|
| Modifier and Type | Method and Description |
|---|---|
static TokenEncoding |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TokenEncoding[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TokenEncoding IDENTIFIER
public static final TokenEncoding SELF_CONTAINED
public static TokenEncoding[] values()
for (TokenEncoding c : TokenEncoding.values()) System.out.println(c);
public static TokenEncoding valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullCopyright © 2014 Connect2id Ltd.. All Rights Reserved.