com.atlan.model.enums.ADLSAccountStatus Maven / Gradle / Ivy
// Generated by delombok at Thu Oct 10 18:56:33 UTC 2024
/* SPDX-License-Identifier: Apache-2.0
Copyright 2022 Atlan Pte. Ltd. */
package com.atlan.model.enums;
import com.fasterxml.jackson.annotation.JsonValue;
import javax.annotation.processing.Generated;
@Generated("com.atlan.generators.ModelGeneratorV2")
public enum ADLSAccountStatus implements AtlanEnum {
AVAILABLE("Available"), UNAVAILABLE("Unavailable");
@JsonValue
private final String value;
ADLSAccountStatus(String value) {
this.value = value;
}
public static ADLSAccountStatus fromValue(String value) {
for (ADLSAccountStatus b : ADLSAccountStatus.values()) {
if (b.value.equals(value)) {
return b;
}
}
return null;
}
@Override
@java.lang.SuppressWarnings("all")
@lombok.Generated
public String getValue() {
return this.value;
}
}