Enum 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 Detail

      • CASHMANAGEMENTTRUST

        public static final Trust.TypeEnum CASHMANAGEMENTTRUST
      • CORPORATEUNITTRUST

        public static final Trust.TypeEnum CORPORATEUNITTRUST
      • 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
      • LISTEDPUBLICUNITTRUST

        public static final Trust.TypeEnum LISTEDPUBLICUNITTRUST
      • 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 name
        NullPointerException - if the argument is null
      • getValue

        public String getValue()