com.azure.resourcemanager.security.models.ExemptionCategory Maven / Gradle / Ivy
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.security.models;
import com.azure.core.util.ExpandableStringEnum;
import java.util.Collection;
/**
* Exemption category of this assignment.
*/
public final class ExemptionCategory extends ExpandableStringEnum {
/**
* Static value waiver for ExemptionCategory.
*/
public static final ExemptionCategory WAIVER = fromString("waiver");
/**
* Static value mitigated for ExemptionCategory.
*/
public static final ExemptionCategory MITIGATED = fromString("mitigated");
/**
* Creates a new instance of ExemptionCategory value.
*
* @deprecated Use the {@link #fromString(String)} factory method.
*/
@Deprecated
public ExemptionCategory() {
}
/**
* Creates or finds a ExemptionCategory from its string representation.
*
* @param name a name to look for.
* @return the corresponding ExemptionCategory.
*/
public static ExemptionCategory fromString(String name) {
return fromString(name, ExemptionCategory.class);
}
/**
* Gets known ExemptionCategory values.
*
* @return known ExemptionCategory values.
*/
public static Collection values() {
return values(ExemptionCategory.class);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy