com.binance4j.mining.dto.MinerSorting 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;
/** Miner sorting. */
public enum MinerSorting {
/** Miner name. */
MINER_NAME("1"),
/** Real time computing_power. */
REAL_TIME_COMPUTING_POWER("1"),
/** Daily average computing_power. */
DAILY_AVERAGE_COMPUTING_POWER("1"),
/** Real time rejection rate. */
REAL_TIME_REJECTION_RATE("1"),
/** Last submission time. */
LAST_SUBMISSION_TIME("1");
String value;
/**
* @param value
*/
private MinerSorting(String value) {
this.value = value;
}
@Override
public String toString() {
return value;
}
}