public enum BitfinexOrderType extends Enum<BitfinexOrderType>
Enum Constant and Description |
---|
FILL_OR_KILL |
LIMIT |
MARGIN_FILL_OR_KILL |
MARGIN_LIMIT |
MARGIN_MARKET |
MARGIN_STOP |
MARGIN_TRAILING_STOP |
MARKET |
STOP |
TRAILING_STOP |
Modifier and Type | Method and Description |
---|---|
String |
getValue() |
String |
toString() |
static BitfinexOrderType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BitfinexOrderType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BitfinexOrderType MARKET
public static final BitfinexOrderType LIMIT
public static final BitfinexOrderType STOP
public static final BitfinexOrderType TRAILING_STOP
public static final BitfinexOrderType FILL_OR_KILL
public static final BitfinexOrderType MARGIN_MARKET
public static final BitfinexOrderType MARGIN_LIMIT
public static final BitfinexOrderType MARGIN_STOP
public static final BitfinexOrderType MARGIN_TRAILING_STOP
public static final BitfinexOrderType MARGIN_FILL_OR_KILL
public static BitfinexOrderType[] values()
for (BitfinexOrderType c : BitfinexOrderType.values()) System.out.println(c);
public static BitfinexOrderType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic String getValue()
public String toString()
toString
in class Enum<BitfinexOrderType>
Copyright © 2012–2016 Xeiam, LLC. All rights reserved.