com.clinia.model.datacatalog.V1ConnectionScheduleStatus Maven / Gradle / Ivy
// Code generated by OpenAPI Generator (https://openapi-generator.tech), manual changes will be lost
// - read more on https://github.com/clinia/api-clients-generation. DO NOT EDIT.
package com.clinia.model.datacatalog;
import com.fasterxml.jackson.annotation.*;
import com.fasterxml.jackson.databind.annotation.*;
/** The status of schedule. */
public enum V1ConnectionScheduleStatus {
RUNNING("RUNNING"),
PAUSED("PAUSED");
private final String value;
V1ConnectionScheduleStatus(String value) {
this.value = value;
}
@JsonValue
public String getValue() {
return value;
}
@Override
public String toString() {
return String.valueOf(value);
}
@JsonCreator
public static V1ConnectionScheduleStatus fromValue(String value) {
for (V1ConnectionScheduleStatus b : V1ConnectionScheduleStatus.values()) {
if (b.value.equals(value)) {
return b;
}
}
throw new IllegalArgumentException("Unexpected value '" + value + "'");
}
}