public enum ListAccountsOption extends Enum<ListAccountsOption>
| Enum Constant and Description |
|---|
ALL_EMAILS
Return all secondary emails.
|
DETAILS
Return detailed account properties.
|
| Modifier and Type | Method and Description |
|---|---|
static EnumSet<ListAccountsOption> |
fromBits(int v) |
int |
getValue() |
static int |
toBits(Set<ListAccountsOption> set) |
static ListAccountsOption |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ListAccountsOption[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ListAccountsOption DETAILS
public static final ListAccountsOption ALL_EMAILS
public static ListAccountsOption[] values()
for (ListAccountsOption c : ListAccountsOption.values()) System.out.println(c);
public static ListAccountsOption 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 int getValue()
public static EnumSet<ListAccountsOption> fromBits(int v)
public static int toBits(Set<ListAccountsOption> set)
Copyright © 2018. All rights reserved.