Enum WithdrawalRequest.Type
- java.lang.Object
-
- java.lang.Enum<WithdrawalRequest.Type>
-
- org.knowm.xchange.cryptonit2.dto.account.WithdrawalRequest.Type
-
- All Implemented Interfaces:
Serializable,Comparable<WithdrawalRequest.Type>
- Enclosing class:
- WithdrawalRequest
public static enum WithdrawalRequest.Type extends Enum<WithdrawalRequest.Type>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static WithdrawalRequest.TypefromString(String string)static WithdrawalRequest.TypevalueOf(String name)Returns the enum constant of this type with the specified name.static WithdrawalRequest.Type[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SEPA
public static final WithdrawalRequest.Type SEPA
-
bitcoin
public static final WithdrawalRequest.Type bitcoin
-
wire
public static final WithdrawalRequest.Type wire
-
rippleUSD
public static final WithdrawalRequest.Type rippleUSD
-
rippleBTC
public static final WithdrawalRequest.Type rippleBTC
-
XRP
public static final WithdrawalRequest.Type XRP
-
litecoin
public static final WithdrawalRequest.Type litecoin
-
unknown
public static final WithdrawalRequest.Type unknown
-
-
Method Detail
-
values
public static WithdrawalRequest.Type[] 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 (WithdrawalRequest.Type c : WithdrawalRequest.Type.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static WithdrawalRequest.Type 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
-
fromString
public static WithdrawalRequest.Type fromString(String string)
-
-