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

com.microsoft.graph.beta.generated.models.ApplicationGuardEnabledOptions Maven / Gradle / Ivy

There is a newer version: 6.26.0
Show newest version
package com.microsoft.graph.beta.models;

import com.microsoft.kiota.serialization.ValuedEnum;
import java.util.Objects;

/**
 * Possible values for ApplicationGuardEnabledOptions
 */
@jakarta.annotation.Generated("com.microsoft.kiota")
public enum ApplicationGuardEnabledOptions implements ValuedEnum {
    /** Not Configured */
    NotConfigured("notConfigured"),
    /** Enabled For Edge */
    EnabledForEdge("enabledForEdge"),
    /** Enabled For Office */
    EnabledForOffice("enabledForOffice"),
    /** Enabled For Edge And Office */
    EnabledForEdgeAndOffice("enabledForEdgeAndOffice");
    public final String value;
    ApplicationGuardEnabledOptions(final String value) {
        this.value = value;
    }
    @jakarta.annotation.Nonnull
    public String getValue() { return this.value; }
    @jakarta.annotation.Nullable
    public static ApplicationGuardEnabledOptions forValue(@jakarta.annotation.Nonnull final String searchValue) {
        Objects.requireNonNull(searchValue);
        switch(searchValue) {
            case "notConfigured": return NotConfigured;
            case "enabledForEdge": return EnabledForEdge;
            case "enabledForOffice": return EnabledForOffice;
            case "enabledForEdgeAndOffice": return EnabledForEdgeAndOffice;
            default: return null;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy