public static enum CLBrowser.AuthState extends java.lang.Enum<CLBrowser.AuthState>
Enum Constant and Description |
---|
AUTH_ERR_ACCOUNT_INVALID |
AUTH_ERR_NOT_AUTHORIZED |
AUTH_ERR_TOO_MANY_FAILURES |
AUTH_ERR_UNKNOWN |
AUTH_FAILED |
AUTH_INACTIVE |
AUTH_OK |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getMesg() |
int |
getState() |
void |
setMesg(java.lang.String s) |
void |
setState(int state) |
static CLBrowser.AuthState |
valueOf(int i) |
static CLBrowser.AuthState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CLBrowser.AuthState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CLBrowser.AuthState AUTH_ERR_UNKNOWN
public static final CLBrowser.AuthState AUTH_ERR_NOT_AUTHORIZED
public static final CLBrowser.AuthState AUTH_ERR_TOO_MANY_FAILURES
public static final CLBrowser.AuthState AUTH_ERR_ACCOUNT_INVALID
public static final CLBrowser.AuthState AUTH_FAILED
public static final CLBrowser.AuthState AUTH_INACTIVE
public static final CLBrowser.AuthState AUTH_OK
public static CLBrowser.AuthState[] values()
for (CLBrowser.AuthState c : CLBrowser.AuthState.values()) System.out.println(c);
public static CLBrowser.AuthState valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static CLBrowser.AuthState valueOf(int i)
public int getState()
public void setState(int state)
public void setMesg(java.lang.String s)
public java.lang.String getMesg()