io.coinapi.rest.Taker_side Maven / Gradle / Ivy
The newest version!
package io.coinapi.rest;
/**
* Defines all the elements of a taker_side, as described in https://docs.coinapi.io/#json-structure.
*
* This enum is multithread safe: it is stateless (except for the enumeration of values, which are immutable).
*
* Like all java enums, this enum is Comparable and Serializable.
*
* @see Enum documentation
*/
public enum Taker_side {
BUY,
SELL,
BUY_ESTIMATED,
SELL_ESTIMATED,
UNKNOWN;
}