Enum LegalEntityAssociation.TypeEnum
- java.lang.Object
-
- java.lang.Enum<LegalEntityAssociation.TypeEnum>
-
- com.adyen.model.legalentitymanagement.LegalEntityAssociation.TypeEnum
-
- All Implemented Interfaces:
Serializable,Comparable<LegalEntityAssociation.TypeEnum>
- Enclosing class:
- LegalEntityAssociation
public static enum LegalEntityAssociation.TypeEnum extends Enum<LegalEntityAssociation.TypeEnum>
Defines the relationship of the legal entity to the current legal entity. Possible values for organizations: **uboThroughOwnership**, **uboThroughControl**, **director**, **signatory**, or **ultimateParentCompany**. Possible values for sole proprietorships: **soleProprietorship**. Possible value for trusts: **trust** Possible values for trust members: **definedBeneficiary**, **protector**, **secondaryTrustee**, **settlor**, **uboThroughControl**, or **uboThroughOwnership**.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DEFINEDBENEFICIARYDIRECTORIMMEDIATEPARENTCOMPANYPCISIGNATORYPROTECTORSECONDARYTRUSTEESETTLORSIGNATORYSOLEPROPRIETORSHIPTRUSTTRUSTOWNERSHIPUBOTHROUGHCONTROLUBOTHROUGHOWNERSHIPULTIMATEPARENTCOMPANYUNDEFINEDBENEFICIARY
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static LegalEntityAssociation.TypeEnumfromValue(String value)StringgetValue()StringtoString()static LegalEntityAssociation.TypeEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static LegalEntityAssociation.TypeEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DEFINEDBENEFICIARY
public static final LegalEntityAssociation.TypeEnum DEFINEDBENEFICIARY
-
DIRECTOR
public static final LegalEntityAssociation.TypeEnum DIRECTOR
-
IMMEDIATEPARENTCOMPANY
public static final LegalEntityAssociation.TypeEnum IMMEDIATEPARENTCOMPANY
-
PCISIGNATORY
public static final LegalEntityAssociation.TypeEnum PCISIGNATORY
-
PROTECTOR
public static final LegalEntityAssociation.TypeEnum PROTECTOR
-
SECONDARYTRUSTEE
public static final LegalEntityAssociation.TypeEnum SECONDARYTRUSTEE
-
SETTLOR
public static final LegalEntityAssociation.TypeEnum SETTLOR
-
SIGNATORY
public static final LegalEntityAssociation.TypeEnum SIGNATORY
-
SOLEPROPRIETORSHIP
public static final LegalEntityAssociation.TypeEnum SOLEPROPRIETORSHIP
-
TRUST
public static final LegalEntityAssociation.TypeEnum TRUST
-
TRUSTOWNERSHIP
public static final LegalEntityAssociation.TypeEnum TRUSTOWNERSHIP
-
UBOTHROUGHCONTROL
public static final LegalEntityAssociation.TypeEnum UBOTHROUGHCONTROL
-
UBOTHROUGHOWNERSHIP
public static final LegalEntityAssociation.TypeEnum UBOTHROUGHOWNERSHIP
-
ULTIMATEPARENTCOMPANY
public static final LegalEntityAssociation.TypeEnum ULTIMATEPARENTCOMPANY
-
UNDEFINEDBENEFICIARY
public static final LegalEntityAssociation.TypeEnum UNDEFINEDBENEFICIARY
-
-
Method Detail
-
values
public static LegalEntityAssociation.TypeEnum[] 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 (LegalEntityAssociation.TypeEnum c : LegalEntityAssociation.TypeEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static LegalEntityAssociation.TypeEnum 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
-
getValue
public String getValue()
-
toString
public String toString()
- Overrides:
toStringin classEnum<LegalEntityAssociation.TypeEnum>
-
fromValue
public static LegalEntityAssociation.TypeEnum fromValue(String value)
-
-