com.finbourne.luminesce.model.BackgroundQueryState Maven / Gradle / Ivy
/*
* FINBOURNE Luminesce Web API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: 1.13.202
* 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 java.util.Arrays;
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 BackgroundQueryState
*/
@JsonAdapter(BackgroundQueryState.Adapter.class)
public enum BackgroundQueryState {
NEW("New"),
RUNNING("Running"),
ERRORED("Errored"),
CANCELLED("Cancelled"),
EXECUTED("Executed"),
EXECUTEDNOSERIALIZATIONREQUIRED("ExecutedNoSerializationRequired"),
SERIALIZED("Serialized"),
SERIALIZATIONFAILED("SerializationFailed"),
ATTEMPTINGTODESERIALIZE("AttemptingToDeserialize"),
LOADED("Loaded"),
CLEARED("Cleared"),
DISPOSED("Disposed");
private String value;
BackgroundQueryState(String value) {
this.value = value;
}
public String getValue() {
return value;
}
@Override
public String toString() {
return String.valueOf(value);
}
public static BackgroundQueryState fromValue(String value) {
for (BackgroundQueryState b : BackgroundQueryState.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 BackgroundQueryState enumeration) throws IOException {
jsonWriter.value(enumeration.getValue());
}
@Override
public BackgroundQueryState read(final JsonReader jsonReader) throws IOException {
String value = jsonReader.nextString();
return BackgroundQueryState.fromValue(value);
}
}
}