public enum ApiAction extends Enum<ApiAction>
| Enum Constant and Description |
|---|
ADD_EXTERNAL_ID |
AUTHENTICATE |
NO_ACTION |
READ_PROFILE |
UPDATE_BIO |
| Modifier and Type | Method and Description |
|---|---|
String |
getScope() |
static ApiAction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ApiAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ApiAction NO_ACTION
public static final ApiAction AUTHENTICATE
public static final ApiAction READ_PROFILE
public static final ApiAction ADD_EXTERNAL_ID
public static final ApiAction UPDATE_BIO
public static ApiAction[] values()
for (ApiAction c : ApiAction.values()) System.out.println(c);
public static ApiAction 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 nullpublic String getScope()
Copyright © 2017. All rights reserved.