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

com.microsoft.graph.beta.generated.models.ManagedDeviceManagementFeatures 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;

/**
 * Device management features.
 */
@jakarta.annotation.Generated("com.microsoft.kiota")
public enum ManagedDeviceManagementFeatures implements ValuedEnum {
    /** Unknown device management features. */
    None("none"),
    /** Microsoft Managed Desktop */
    MicrosoftManagedDesktop("microsoftManagedDesktop");
    public final String value;
    ManagedDeviceManagementFeatures(final String value) {
        this.value = value;
    }
    @jakarta.annotation.Nonnull
    public String getValue() { return this.value; }
    @jakarta.annotation.Nullable
    public static ManagedDeviceManagementFeatures forValue(@jakarta.annotation.Nonnull final String searchValue) {
        Objects.requireNonNull(searchValue);
        switch(searchValue) {
            case "none": return None;
            case "microsoftManagedDesktop": return MicrosoftManagedDesktop;
            default: return null;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy