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

com.clinia.model.datacatalog.V1DataPartitionStatus 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 the data partition. Stale means that the data partition can no longer receive
 * updates, but still has data (readonly).
 */
public enum V1DataPartitionStatus {
  READY("STATUS_READY"),

  PENDING("STATUS_PENDING"),

  STALE("STATUS_STALE"),

  ERROR("STATUS_ERROR");

  private final String value;

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

  @JsonValue
  public String getValue() {
    return value;
  }

  @Override
  public String toString() {
    return String.valueOf(value);
  }

  @JsonCreator
  public static V1DataPartitionStatus fromValue(String value) {
    for (V1DataPartitionStatus b : V1DataPartitionStatus.values()) {
      if (b.value.equals(value)) {
        return b;
      }
    }
    throw new IllegalArgumentException("Unexpected value '" + value + "'");
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy