com.binance4j.mining.dto.SortSequence Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of binance4j-mining Show documentation
Show all versions of binance4j-mining Show documentation
Connector for the mining endpoints of the Binance API
package com.binance4j.mining.dto;
/** Sorting. */
public enum SortSequence {
/** Positive. */
POSITIVE("0"),
/** Negative. */
NEGATIVE("1");
/** The value. */
String value;
/**
* @param value The value.
*/
private SortSequence(String value) {
this.value = value;
}
@Override
public String toString() {
return value;
}
}