Enum Trust.TypeEnum
- java.lang.Object
-
- java.lang.Enum<Trust.TypeEnum>
-
- com.adyen.model.legalentitymanagement.Trust.TypeEnum
-
- All Implemented Interfaces:
Serializable,Comparable<Trust.TypeEnum>
- Enclosing class:
- Trust
public static enum Trust.TypeEnum extends Enum<Trust.TypeEnum>
Type of trust. Possible values for Australian trusts: **cashManagementTrust**, **corporateUnitTrust**, **deceasedEstate**, **discretionaryInvestmentTrust**, **discretionaryServicesManagementTrust**, **discretionaryTradingTrust**, **firstHomeSaverAccountsTrust**, **fixedTrust**, **fixedUnitTrust**, **hybridTrust**, **listedPublicUnitTrust**, **otherTrust**, **pooledSuperannuationTrust**, **publicTradingTrust**, **unlistedPublicUnitTrust**.
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Trust.TypeEnumfromValue(String value)StringgetValue()StringtoString()static Trust.TypeEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static Trust.TypeEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CASHMANAGEMENTTRUST
public static final Trust.TypeEnum CASHMANAGEMENTTRUST
-
CORPORATEUNITTRUST
public static final Trust.TypeEnum CORPORATEUNITTRUST
-
DECEASEDESTATE
public static final Trust.TypeEnum DECEASEDESTATE
-
DISCRETIONARYINVESTMENTTRUST
public static final Trust.TypeEnum DISCRETIONARYINVESTMENTTRUST
-
DISCRETIONARYSERVICESMANAGEMENTTRUST
public static final Trust.TypeEnum DISCRETIONARYSERVICESMANAGEMENTTRUST
-
DISCRETIONARYTRADINGTRUST
public static final Trust.TypeEnum DISCRETIONARYTRADINGTRUST
-
FIRSTHOMESAVERACCOUNTSTRUST
public static final Trust.TypeEnum FIRSTHOMESAVERACCOUNTSTRUST
-
FIXEDTRUST
public static final Trust.TypeEnum FIXEDTRUST
-
FIXEDUNITTRUST
public static final Trust.TypeEnum FIXEDUNITTRUST
-
HYBRIDTRUST
public static final Trust.TypeEnum HYBRIDTRUST
-
LISTEDPUBLICUNITTRUST
public static final Trust.TypeEnum LISTEDPUBLICUNITTRUST
-
OTHERTRUST
public static final Trust.TypeEnum OTHERTRUST
-
POOLEDSUPERANNUATIONTRUST
public static final Trust.TypeEnum POOLEDSUPERANNUATIONTRUST
-
PUBLICTRADINGTRUST
public static final Trust.TypeEnum PUBLICTRADINGTRUST
-
UNLISTEDPUBLICUNITTRUST
public static final Trust.TypeEnum UNLISTEDPUBLICUNITTRUST
-
-
Method Detail
-
values
public static Trust.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 (Trust.TypeEnum c : Trust.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 Trust.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<Trust.TypeEnum>
-
fromValue
public static Trust.TypeEnum fromValue(String value)
-
-