Enum BitfinexOrderFlags
- All Implemented Interfaces:
Serializable
,Comparable<BitfinexOrderFlags>
,java.lang.constant.Constable
,Order.IOrderFlags
public enum BitfinexOrderFlags extends Enum<BitfinexOrderFlags> implements Order.IOrderFlags
-
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 FILL_OR_KILL
This type of order is a limit order that must be filled in its entirety or cancelled (killed).HIDDEN
This is an order which does not appear in the orderbook, and thus doesn't influence other market participants.MARGIN
This type of order a margin order that is leveraged in line with bitfinex current leverage rates.POST_ONLY
These are orders that allow you to be sure to always pay the maker fee.STOP
Stop orderTRAILING_STOP
Trailing stop orderUSE_REMAINING
For order amends indicates that the new order should use the remaining amount of the original order. -
Method Summary
Modifier and Type Method Description static BitfinexOrderFlags
valueOf(String name)
Returns the enum constant of this type with the specified name.static BitfinexOrderFlags[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
FILL_OR_KILL
This type of order is a limit order that must be filled in its entirety or cancelled (killed). -
HIDDEN
This is an order which does not appear in the orderbook, and thus doesn't influence other market participants. the taker fee will apply to any trades. -
POST_ONLY
These are orders that allow you to be sure to always pay the maker fee. -
USE_REMAINING
For order amends indicates that the new order should use the remaining amount of the original order. -
MARGIN
This type of order a margin order that is leveraged in line with bitfinex current leverage rates. -
TRAILING_STOP
Trailing stop order -
STOP
Stop order
-
-
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
-