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

com.atlan.model.enums.PersonaGlossaryAction Maven / Gradle / Ivy

There is a newer version: 3.0.0
Show newest version
// 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;

public enum PersonaGlossaryAction implements AtlanEnum, AtlanPolicyAction {
    CREATE("persona-glossary-create"), READ("persona-glossary-read"), UPDATE("persona-glossary-update"), DELETE("persona-glossary-delete"), UPDATE_CUSTOM_METADATA("persona-glossary-update-custom-metadata"), ADD_ATLAN_TAG("persona-glossary-add-classifications"), UPDATE_ATLAN_TAG("persona-glossary-update-classifications"), REMOVE_ATLAN_TAG("persona-glossary-delete-classifications");
    @JsonValue
    private final String value;

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

    public static PersonaGlossaryAction fromValue(String value) {
        for (PersonaGlossaryAction b : PersonaGlossaryAction.values()) {
            if (b.value.equals(value)) {
                return b;
            }
        }
        return null;
    }

    @Override
    @java.lang.SuppressWarnings("all")
    @lombok.Generated
    public String getValue() {
        return this.value;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy