com.atlan.model.enums.ADLSStorageKind 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 ADLSStorageKind implements AtlanEnum {
BLOB_STORAGE("BlobStorage"), BLOCK_BLOB_STORAGE("BlockBlobStorage"), FILE_STORAGE("FileStorage"), STORAGE("Storage"), STORAGE_V2("StorageV2");
@JsonValue
private final String value;
ADLSStorageKind(String value) {
this.value = value;
}
public static ADLSStorageKind fromValue(String value) {
for (ADLSStorageKind b : ADLSStorageKind.values()) {
if (b.value.equals(value)) {
return b;
}
}
return null;
}
@Override
@java.lang.SuppressWarnings("all")
@lombok.Generated
public String getValue() {
return this.value;
}
}