Enum BitsoUserTransaction.TransactionType
- java.lang.Object
-
- java.lang.Enum<BitsoUserTransaction.TransactionType>
-
- org.knowm.xchange.bitso.dto.trade.BitsoUserTransaction.TransactionType
-
- All Implemented Interfaces:
Serializable,Comparable<BitsoUserTransaction.TransactionType>
- Enclosing class:
- BitsoUserTransaction
public static enum BitsoUserTransaction.TransactionType extends Enum<BitsoUserTransaction.TransactionType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description deposittradetype3_reservedtype4_reservedtype5_reseverdtype6_resevedtype7_reservedwithdrawal
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static BitsoUserTransaction.TransactionTypevalueOf(String name)Returns the enum constant of this type with the specified name.static BitsoUserTransaction.TransactionType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
deposit
public static final BitsoUserTransaction.TransactionType deposit
-
withdrawal
public static final BitsoUserTransaction.TransactionType withdrawal
-
trade
public static final BitsoUserTransaction.TransactionType trade
-
type3_reserved
public static final BitsoUserTransaction.TransactionType type3_reserved
-
type4_reserved
public static final BitsoUserTransaction.TransactionType type4_reserved
-
type5_reseverd
public static final BitsoUserTransaction.TransactionType type5_reseverd
-
type6_reseved
public static final BitsoUserTransaction.TransactionType type6_reseved
-
type7_reserved
public static final BitsoUserTransaction.TransactionType type7_reserved
-
-
Method Detail
-
values
public static BitsoUserTransaction.TransactionType[] 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 (BitsoUserTransaction.TransactionType c : BitsoUserTransaction.TransactionType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BitsoUserTransaction.TransactionType 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
-
-