public enum AccountNameInquiryType extends java.lang.Enum<AccountNameInquiryType>
| Enum Constant and Description |
|---|
FULL_MATCH |
NO_MATCH |
NOT_PERFORMED |
NOT_SUPPORTED |
PARTIAL_MATCH |
| Modifier and Type | Method and Description |
|---|---|
static AccountNameInquiryType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AccountNameInquiryType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="full_match") public static final AccountNameInquiryType FULL_MATCH
@SerializedName(value="partial_match") public static final AccountNameInquiryType PARTIAL_MATCH
@SerializedName(value="no_match") public static final AccountNameInquiryType NO_MATCH
@SerializedName(value="not_performed") public static final AccountNameInquiryType NOT_PERFORMED
@SerializedName(value="not_supported") public static final AccountNameInquiryType NOT_SUPPORTED
public static AccountNameInquiryType[] values()
for (AccountNameInquiryType c : AccountNameInquiryType.values()) System.out.println(c);
public static AccountNameInquiryType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null