Package com.flagright.api.types
Enum SanctionsDetailsEntityType
- java.lang.Object
-
- java.lang.Enum<SanctionsDetailsEntityType>
-
- com.flagright.api.types.SanctionsDetailsEntityType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<SanctionsDetailsEntityType>
public enum SanctionsDetailsEntityType extends java.lang.Enum<SanctionsDetailsEntityType>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringtoString()static SanctionsDetailsEntityTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static SanctionsDetailsEntityType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CONSUMER_NAME
public static final SanctionsDetailsEntityType CONSUMER_NAME
-
LEGAL_NAME
public static final SanctionsDetailsEntityType LEGAL_NAME
-
SHAREHOLDER
public static final SanctionsDetailsEntityType SHAREHOLDER
-
DIRECTOR
public static final SanctionsDetailsEntityType DIRECTOR
-
NAME_ON_CARD
public static final SanctionsDetailsEntityType NAME_ON_CARD
-
PAYMENT_NAME
public static final SanctionsDetailsEntityType PAYMENT_NAME
-
PAYMENT_BENEFICIARY_NAME
public static final SanctionsDetailsEntityType PAYMENT_BENEFICIARY_NAME
-
BANK_NAME
public static final SanctionsDetailsEntityType BANK_NAME
-
BANK_ACCOUNT_HOLDER_NAME
public static final SanctionsDetailsEntityType BANK_ACCOUNT_HOLDER_NAME
-
BUSINESS_PARTNER
public static final SanctionsDetailsEntityType BUSINESS_PARTNER
-
ASSOCIATED_PARTY
public static final SanctionsDetailsEntityType ASSOCIATED_PARTY
-
CONSUMER_ALIAS
public static final SanctionsDetailsEntityType CONSUMER_ALIAS
-
LEGAL_ENTITY_ALIAS
public static final SanctionsDetailsEntityType LEGAL_ENTITY_ALIAS
-
TRANSACTION_REFERENCE
public static final SanctionsDetailsEntityType TRANSACTION_REFERENCE
-
TRANSACTION_TAG
public static final SanctionsDetailsEntityType TRANSACTION_TAG
-
-
Method Detail
-
values
public static SanctionsDetailsEntityType[] 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 (SanctionsDetailsEntityType c : SanctionsDetailsEntityType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SanctionsDetailsEntityType 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 namejava.lang.NullPointerException- if the argument is null
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Enum<SanctionsDetailsEntityType>
-
-