All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.binance4j.mining.dto.MinerSorting Maven / Gradle / Ivy

There is a newer version: 2.4.0
Show newest version
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;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy