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

com.azure.resourcemanager.security.models.SettingKind 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;

/**
 * the kind of the settings string.
 */
public final class SettingKind extends ExpandableStringEnum {
    /**
     * Static value DataExportSettings for SettingKind.
     */
    public static final SettingKind DATA_EXPORT_SETTINGS = fromString("DataExportSettings");

    /**
     * Static value AlertSuppressionSetting for SettingKind.
     */
    public static final SettingKind ALERT_SUPPRESSION_SETTING = fromString("AlertSuppressionSetting");

    /**
     * Static value AlertSyncSettings for SettingKind.
     */
    public static final SettingKind ALERT_SYNC_SETTINGS = fromString("AlertSyncSettings");

    /**
     * Creates a new instance of SettingKind value.
     * 
     * @deprecated Use the {@link #fromString(String)} factory method.
     */
    @Deprecated
    public SettingKind() {
    }

    /**
     * Creates or finds a SettingKind from its string representation.
     * 
     * @param name a name to look for.
     * @return the corresponding SettingKind.
     */
    public static SettingKind fromString(String name) {
        return fromString(name, SettingKind.class);
    }

    /**
     * Gets known SettingKind values.
     * 
     * @return known SettingKind values.
     */
    public static Collection values() {
        return values(SettingKind.class);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy