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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy