com.binance4j.mining.dto.WorkerStatus 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;
/** Worker status. */
public enum WorkerStatus {
/** All. */
ALL("0"),
/** Valid. */
VALID("1"),
/** Invalid. */
INVALID("2"),
/** Failure. */
FAILURE("3");
String value;
/**
* @param value
*/
private WorkerStatus(String value) {
this.value = value;
}
@Override
public String toString() {
return value;
}
}