org.gs4tr.gcc.restclient.model.TaskStatus Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gcc-restclient Show documentation
Show all versions of gcc-restclient Show documentation
GlobalLink Connect Cloud java is a library to connect your system to GlobalLink Connect Cloud REST API.
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;
}
}