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**.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description PCISIGNATORYSIGNATORYSOLEPROPRIETORSHIPUBOTHROUGHCONTROLUBOTHROUGHOWNERSHIPULTIMATEPARENTCOMPANY
-
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
-
PCISIGNATORY
public static final LegalEntityAssociation.TypeEnum PCISIGNATORY
-
SIGNATORY
public static final LegalEntityAssociation.TypeEnum SIGNATORY
-
SOLEPROPRIETORSHIP
public static final LegalEntityAssociation.TypeEnum SOLEPROPRIETORSHIP
-
UBOTHROUGHCONTROL
public static final LegalEntityAssociation.TypeEnum UBOTHROUGHCONTROL
-
UBOTHROUGHOWNERSHIP
public static final LegalEntityAssociation.TypeEnum UBOTHROUGHOWNERSHIP
-
ULTIMATEPARENTCOMPANY
public static final LegalEntityAssociation.TypeEnum ULTIMATEPARENTCOMPANY
-
-
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)
-
-