com.finbourne.luminesce.model.TaskStatus Maven / Gradle / Ivy
/*
* FINBOURNE Luminesce Web API
*
* Contact: [email protected]
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.finbourne.luminesce.model;
import java.util.Objects;
import com.google.gson.annotations.SerializedName;
import java.io.IOException;
import com.google.gson.TypeAdapter;
import com.google.gson.annotations.JsonAdapter;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
/**
* Gets or Sets TaskStatus
*/
@JsonAdapter(TaskStatus.Adapter.class)
public enum TaskStatus {
CREATED("Created"),
WAITINGFORACTIVATION("WaitingForActivation"),
WAITINGTORUN("WaitingToRun"),
RUNNING("Running"),
WAITINGFORCHILDRENTOCOMPLETE("WaitingForChildrenToComplete"),
RANTOCOMPLETION("RanToCompletion"),
CANCELED("Canceled"),
FAULTED("Faulted");
private String value;
TaskStatus(String value) {
this.value = value;
}
public String getValue() {
return value;
}
@Override
public String toString() {
return String.valueOf(value);
}
public static TaskStatus fromValue(String value) {
for (TaskStatus b : TaskStatus.values()) {
if (b.value.equals(value)) {
return b;
}
}
throw new IllegalArgumentException("Unexpected value '" + value + "'");
}
public static class Adapter extends TypeAdapter {
@Override
public void write(final JsonWriter jsonWriter, final TaskStatus enumeration) throws IOException {
jsonWriter.value(enumeration.getValue());
}
@Override
public TaskStatus read(final JsonReader jsonReader) throws IOException {
String value = jsonReader.nextString();
return TaskStatus.fromValue(value);
}
}
}