com.atlan.model.enums.IncidentSeverity 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 IncidentSeverity implements AtlanEnum {
LOW("LOW"), MEDIUM("MEDIUM"), HIGH("HIGH");
@JsonValue
private final String value;
IncidentSeverity(String value) {
this.value = value;
}
public static IncidentSeverity fromValue(String value) {
for (IncidentSeverity b : IncidentSeverity.values()) {
if (b.value.equals(value)) {
return b;
}
}
return null;
}
@Override
@java.lang.SuppressWarnings("all")
@lombok.Generated
public String getValue() {
return this.value;
}
}