![JAR search and dependency download from the Maven repository](/logo.png)
com.atlan.model.enums.AssetCreationHandling Maven / Gradle / Ivy
// Generated by delombok at Wed Oct 16 22:16:04 UTC 2024
/* SPDX-License-Identifier: Apache-2.0
Copyright 2022 Atlan Pte. Ltd. */
package com.atlan.model.enums;
import com.fasterxml.jackson.annotation.JsonValue;
/**
* Asset creation vs update semantics.
*/
public enum AssetCreationHandling implements AtlanEnum {
FULL("upsert"), PARTIAL("partial"), NONE("update");
@JsonValue
private final String value;
AssetCreationHandling(String value) {
this.value = value;
}
public static AssetCreationHandling fromValue(String value) {
for (AssetCreationHandling b : AssetCreationHandling.values()) {
if (b.value.equals(value)) {
return b;
}
}
return null;
}
@Override
@java.lang.SuppressWarnings("all")
@lombok.Generated
public String getValue() {
return this.value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy