public enum RequestedUserInfo extends Enum<RequestedUserInfo>
| Enum Constant and Description |
|---|
CONTACT_EMAIL
The contact email.
|
CONTACT_NAME
The contact name.
|
CONTACT_PHONE
The contact phone.
|
SHIPPING_ADDRESS
The shipping address.
|
| Modifier and Type | Method and Description |
|---|---|
static RequestedUserInfo |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RequestedUserInfo[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RequestedUserInfo SHIPPING_ADDRESS
public static final RequestedUserInfo CONTACT_NAME
public static final RequestedUserInfo CONTACT_PHONE
public static final RequestedUserInfo CONTACT_EMAIL
public static RequestedUserInfo[] values()
for (RequestedUserInfo c : RequestedUserInfo.values()) System.out.println(c);
public static RequestedUserInfo 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 © 2017 BotMill. All rights reserved.