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