Enum LegalArrangementDetail.LegalFormEnum
- java.lang.Object
-
- java.lang.Enum<LegalArrangementDetail.LegalFormEnum>
-
- com.adyen.model.marketpaywebhooks.LegalArrangementDetail.LegalFormEnum
-
- All Implemented Interfaces:
Serializable,Comparable<LegalArrangementDetail.LegalFormEnum>
- Enclosing class:
- LegalArrangementDetail
public static enum LegalArrangementDetail.LegalFormEnum extends Enum<LegalArrangementDetail.LegalFormEnum>
The form of legal arrangement. Required if `type` is **Trust** or **Partnership**. The possible values depend on the `type`. - For `type` **Trust**: **CashManagementTrust**, **CorporateUnitTrust**, **DeceasedEstate**, **DiscretionaryInvestmentTrust**, **DiscretionaryServicesManagementTrust**, **DiscretionaryTradingTrust**, **FirstHomeSaverAccountsTrust**, **FixedTrust**, **FixedUnitTrust**, **HybridTrust**, **ListedPublicUnitTrust**, **OtherTrust**, **PooledSuperannuationTrust**, **PublicTradingTrust**, or **UnlistedPublicUnitTrust**. - For `type` **Partnership**: **LimitedPartnership**, **FamilyPartnership**, or **OtherPartnership**
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static LegalArrangementDetail.LegalFormEnumfromValue(String value)StringgetValue()StringtoString()static LegalArrangementDetail.LegalFormEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static LegalArrangementDetail.LegalFormEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CASHMANAGEMENTTRUST
public static final LegalArrangementDetail.LegalFormEnum CASHMANAGEMENTTRUST
-
CORPORATEUNITTRUST
public static final LegalArrangementDetail.LegalFormEnum CORPORATEUNITTRUST
-
DECEASEDESTATE
public static final LegalArrangementDetail.LegalFormEnum DECEASEDESTATE
-
DISCRETIONARYINVESTMENTTRUST
public static final LegalArrangementDetail.LegalFormEnum DISCRETIONARYINVESTMENTTRUST
-
DISCRETIONARYSERVICESMANAGEMENTTRUST
public static final LegalArrangementDetail.LegalFormEnum DISCRETIONARYSERVICESMANAGEMENTTRUST
-
DISCRETIONARYTRADINGTRUST
public static final LegalArrangementDetail.LegalFormEnum DISCRETIONARYTRADINGTRUST
-
FIRSTHOMESAVERACCOUNTSTRUST
public static final LegalArrangementDetail.LegalFormEnum FIRSTHOMESAVERACCOUNTSTRUST
-
FIXEDTRUST
public static final LegalArrangementDetail.LegalFormEnum FIXEDTRUST
-
FIXEDUNITTRUST
public static final LegalArrangementDetail.LegalFormEnum FIXEDUNITTRUST
-
HYBRIDTRUST
public static final LegalArrangementDetail.LegalFormEnum HYBRIDTRUST
-
LISTEDPUBLICUNITTRUST
public static final LegalArrangementDetail.LegalFormEnum LISTEDPUBLICUNITTRUST
-
OTHERTRUST
public static final LegalArrangementDetail.LegalFormEnum OTHERTRUST
-
POOLEDSUPERANNUATIONTRUST
public static final LegalArrangementDetail.LegalFormEnum POOLEDSUPERANNUATIONTRUST
-
PUBLICTRADINGTRUST
public static final LegalArrangementDetail.LegalFormEnum PUBLICTRADINGTRUST
-
UNLISTEDPUBLICUNITTRUST
public static final LegalArrangementDetail.LegalFormEnum UNLISTEDPUBLICUNITTRUST
-
LIMITEDPARTNERSHIP
public static final LegalArrangementDetail.LegalFormEnum LIMITEDPARTNERSHIP
-
FAMILYPARTNERSHIP
public static final LegalArrangementDetail.LegalFormEnum FAMILYPARTNERSHIP
-
OTHERPARTNERSHIP
public static final LegalArrangementDetail.LegalFormEnum OTHERPARTNERSHIP
-
-
Method Detail
-
values
public static LegalArrangementDetail.LegalFormEnum[] 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 (LegalArrangementDetail.LegalFormEnum c : LegalArrangementDetail.LegalFormEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static LegalArrangementDetail.LegalFormEnum 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<LegalArrangementDetail.LegalFormEnum>
-
fromValue
public static LegalArrangementDetail.LegalFormEnum fromValue(String value)
-
-