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