public enum AssertionTarget extends Enum<AssertionTarget>
| Enum Constant and Description |
|---|
CLIENT_REGISTRATION_SOFTWARE_STATEMENT
The assertion processor is used for the OAuth Dynamic Client Registration
protocol's "software_statement" field, which contains a signed assertion
of client attributes.
|
| Modifier and Type | Method and Description |
|---|---|
static AssertionTarget |
getByValue(short value)
Get the enum object with the given numerical value, or
null if not
found. |
short |
getValue()
Get the numerical value for this target.
|
String |
toString() |
static AssertionTarget |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AssertionTarget[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AssertionTarget CLIENT_REGISTRATION_SOFTWARE_STATEMENT
public static AssertionTarget[] values()
for (AssertionTarget c : AssertionTarget.values()) System.out.println(c);
public static AssertionTarget 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 nullpublic short getValue()
public String toString()
toString in class Enum<AssertionTarget>public static AssertionTarget getByValue(short value)
null if not
found.value - The numerical value to search for.null if not found.Copyright © 2019. All rights reserved.