Package org.knowm.xchange.dto.account
Enum Wallet.WalletFeature
- All Implemented Interfaces:
Serializable
,Comparable<Wallet.WalletFeature>
,java.lang.constant.Constable
- Enclosing class:
- Wallet
public static enum Wallet.WalletFeature extends Enum<Wallet.WalletFeature>
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum Constants Enum Constant Description FUNDING
The wallet has the ability to deposit external funds and withdraw funds allocated on itFUTURES_TRADING
Wallet for futures platformMARGIN_FUNDING
You can fund other margin traders with funds allocated to this wallet to earn an interestMARGIN_TRADING
You can do margin trading with funds allocated to this walletTRADING
You can trade funds allocated to this wallet -
Method Summary
Modifier and Type Method Description static Wallet.WalletFeature
valueOf(String name)
Returns the enum constant of this type with the specified name.static Wallet.WalletFeature[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
FUNDING
The wallet has the ability to deposit external funds and withdraw funds allocated on it -
TRADING
You can trade funds allocated to this wallet -
MARGIN_TRADING
You can do margin trading with funds allocated to this wallet -
MARGIN_FUNDING
You can fund other margin traders with funds allocated to this wallet to earn an interest -
FUTURES_TRADING
Wallet for futures platform
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-