public enum ClaimValueScope extends Enum<ClaimValueScope>
| Enum Constant and Description |
|---|
REQUEST
Indicates that a claim has request scope.
|
SESSION
Indicates that a claim has session scope.
|
STATIC
Indicates that a claim has static scope.
|
| Modifier and Type | Method and Description |
|---|---|
static ClaimValueScope |
fromString(String name)
Returns the
ClaimValueScope with the specified name, or null if not found. |
static ClaimValueScope |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ClaimValueScope[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ClaimValueScope REQUEST
public static final ClaimValueScope SESSION
public static final ClaimValueScope STATIC
public static ClaimValueScope[] values()
for (ClaimValueScope c : ClaimValueScope.values()) System.out.println(c);
public static ClaimValueScope 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 static ClaimValueScope fromString(String name)
ClaimValueScope with the specified name, or null if not found.name - The name of the ClaimValueScope.ClaimValueScope with the specified name, or null if not found.Copyright (c) 2014-2021 All Rights Reserved by the RWS Group for and on behalf of its affiliates and subsidiaries