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

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

There is a newer version: 3.0.0
Show newest version
// 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;
import javax.annotation.processing.Generated;

@Generated("com.atlan.generators.ModelGeneratorV2")
public enum AuthPolicyResourceCategory implements AtlanEnum {
    ENTITY("ENTITY"), RELATIONSHIP("RELATIONSHIP"), TAG("TAG"), CUSTOM("CUSTOM"), TYPEDEFS("TYPEDEFS"), ADMIN("ADMIN");
    @JsonValue
    private final String value;

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

    public static AuthPolicyResourceCategory fromValue(String value) {
        for (AuthPolicyResourceCategory b : AuthPolicyResourceCategory.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