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

org.gs4tr.gcc.restclient.model.TaskStatus Maven / Gradle / Ivy

Go to download

GlobalLink Connect Cloud java is a library to connect your system to GlobalLink Connect Cloud REST API.

There is a newer version: 3.1.3
Show newest version
package org.gs4tr.gcc.restclient.model;

public enum TaskStatus {

    Processing("Processing"), Translate("Translate"), Analyzed("Analyzed"), Review("Review"), ReviewCompleted(
	    "Review-Completed"), Completed(
		    "Completed"), Delivered("Delivered"), Rejected("Rejected"), Cancelled("Cancelled");

    TaskStatus(String value) {
	this.value = value;
    }

    private String value;

    public String text() {
	return value;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy