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