public static enum AuthorizationResult.Decision extends Enum<AuthorizationResult.Decision>
Modifier and Type | Method and Description |
---|---|
static AuthorizationResult.Decision |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AuthorizationResult.Decision[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AuthorizationResult.Decision PERMIT
public static final AuthorizationResult.Decision DENY
public static AuthorizationResult.Decision[] values()
for (AuthorizationResult.Decision c : AuthorizationResult.Decision.values()) System.out.println(c);
public static AuthorizationResult.Decision 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 © 2023 JBoss by Red Hat. All rights reserved.