public enum AuthenticationStatus extends Enum<AuthenticationStatus>
| Enum Constant and Description |
|---|
AUTHENTICATED |
NON_AUTHENTICATED |
UNDEFINED |
| Modifier and Type | Method and Description |
|---|---|
static AuthenticationStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AuthenticationStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AuthenticationStatus NON_AUTHENTICATED
public static final AuthenticationStatus AUTHENTICATED
public static final AuthenticationStatus UNDEFINED
public static AuthenticationStatus[] values()
for (AuthenticationStatus c : AuthenticationStatus.values()) System.out.println(c);
public static AuthenticationStatus 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 © 2010–2016 Henix, henix.fr. All rights reserved.