Enum ExtraParamName
- java.lang.Object
-
- java.lang.Enum<ExtraParamName>
-
- com.amazonaws.services.route53domains.model.ExtraParamName
-
- All Implemented Interfaces:
Serializable
,Comparable<ExtraParamName>
public enum ExtraParamName extends Enum<ExtraParamName>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ExtraParamName
fromValue(String value)
Use this in place of valueOf.String
toString()
static ExtraParamName
valueOf(String name)
Returns the enum constant of this type with the specified name.static ExtraParamName[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DUNS_NUMBER
public static final ExtraParamName DUNS_NUMBER
-
BRAND_NUMBER
public static final ExtraParamName BRAND_NUMBER
-
BIRTH_DEPARTMENT
public static final ExtraParamName BIRTH_DEPARTMENT
-
BIRTH_DATE_IN_YYYY_MM_DD
public static final ExtraParamName BIRTH_DATE_IN_YYYY_MM_DD
-
BIRTH_COUNTRY
public static final ExtraParamName BIRTH_COUNTRY
-
BIRTH_CITY
public static final ExtraParamName BIRTH_CITY
-
DOCUMENT_NUMBER
public static final ExtraParamName DOCUMENT_NUMBER
-
AU_ID_NUMBER
public static final ExtraParamName AU_ID_NUMBER
-
AU_ID_TYPE
public static final ExtraParamName AU_ID_TYPE
-
CA_LEGAL_TYPE
public static final ExtraParamName CA_LEGAL_TYPE
-
CA_BUSINESS_ENTITY_TYPE
public static final ExtraParamName CA_BUSINESS_ENTITY_TYPE
-
ES_IDENTIFICATION
public static final ExtraParamName ES_IDENTIFICATION
-
ES_IDENTIFICATION_TYPE
public static final ExtraParamName ES_IDENTIFICATION_TYPE
-
ES_LEGAL_FORM
public static final ExtraParamName ES_LEGAL_FORM
-
FI_BUSINESS_NUMBER
public static final ExtraParamName FI_BUSINESS_NUMBER
-
FI_ID_NUMBER
public static final ExtraParamName FI_ID_NUMBER
-
IT_PIN
public static final ExtraParamName IT_PIN
-
RU_PASSPORT_DATA
public static final ExtraParamName RU_PASSPORT_DATA
-
SE_ID_NUMBER
public static final ExtraParamName SE_ID_NUMBER
-
SG_ID_NUMBER
public static final ExtraParamName SG_ID_NUMBER
-
VAT_NUMBER
public static final ExtraParamName VAT_NUMBER
-
-
Method Detail
-
values
public static ExtraParamName[] 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 (ExtraParamName c : ExtraParamName.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ExtraParamName valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
toString
public String toString()
- Overrides:
toString
in classEnum<ExtraParamName>
-
fromValue
public static ExtraParamName fromValue(String value)
Use this in place of valueOf.- Parameters:
value
- real value- Returns:
- ExtraParamName corresponding to the value
-
-