com.hoiio.sdk.objects.account
Enum Account.Params
java.lang.Object
java.lang.Enum<Account.Params>
com.hoiio.sdk.objects.account.Account.Params
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<Account.Params>
- Enclosing class:
- Account
private static enum Account.Params
- extends java.lang.Enum<Account.Params>
Method Summary |
java.lang.String |
toString()
|
static Account.Params |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static Account.Params[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared. |
Methods inherited from class java.lang.Enum |
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOf |
Methods inherited from class java.lang.Object |
getClass, notify, notifyAll, wait, wait, wait |
UID
public static final Account.Params UID
NAME
public static final Account.Params NAME
MOBILE_NUMBER
public static final Account.Params MOBILE_NUMBER
EMAIL
public static final Account.Params EMAIL
COUNTRY
public static final Account.Params COUNTRY
PREFIX
public static final Account.Params PREFIX
CURRENCY
public static final Account.Params CURRENCY
values
public static Account.Params[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (Account.Params c : Account.Params.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static Account.Params valueOf(java.lang.String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name
- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
java.lang.NullPointerException
- if the argument is null
toString
public java.lang.String toString()
- Overrides:
toString
in class java.lang.Enum<Account.Params>