public enum OAuthEvent extends Enum<OAuthEvent> implements IAuthEvent
| Enum Constant and Description |
|---|
AUTH_REQUEST_RECEIVED
Event for auth request received.
|
OAUTH_CODE_RECEIVED
Webview returns oauth code.
|
OAUTH_CREATED
Event for oauth created.
|
PAGE_FINISHED
Event for page finished loading.
|
PAGE_STARTED
Event for page started loading.
|
| Modifier and Type | Method and Description |
|---|---|
static OAuthEvent |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OAuthEvent[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OAuthEvent PAGE_STARTED
public static final OAuthEvent PAGE_FINISHED
public static final OAuthEvent OAUTH_CODE_RECEIVED
public static final OAuthEvent AUTH_REQUEST_RECEIVED
public static final OAuthEvent OAUTH_CREATED
public static OAuthEvent[] values()
for (OAuthEvent c : OAuthEvent.values()) System.out.println(c);
public static OAuthEvent 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. All Rights Reserved.