Enum AccountFeatureDTO

    • Enum Constant Detail

      • FUNDING

        public static final AccountFeatureDTO FUNDING
        The wallet has the ability to deposit external funds and withdraw funds allocated on it.
      • TRADING

        public static final AccountFeatureDTO TRADING
        You can trade funds allocated to this wallet.
      • MARGIN_TRADING

        public static final AccountFeatureDTO MARGIN_TRADING
        You can do margin trading with funds allocated to this wallet.
      • MARGIN_FUNDING

        public static final AccountFeatureDTO MARGIN_FUNDING
        You can fund other margin traders with funds allocated to this wallet to earn an interest.
    • Method Detail

      • values

        public static AccountFeatureDTO[] 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 (AccountFeatureDTO c : AccountFeatureDTO.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static AccountFeatureDTO 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