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

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

/**
 * Android Device Owner Kiosk Mode managed home screen icon size.
 */
@jakarta.annotation.Generated("com.microsoft.kiota")
public enum AndroidDeviceOwnerKioskModeIconSize implements ValuedEnum {
    /** Not configured; this value is ignored. */
    NotConfigured("notConfigured"),
    /** Smallest icon size. */
    Smallest("smallest"),
    /** Small icon size. */
    Small("small"),
    /** Regular icon size. */
    Regular("regular"),
    /** Large icon size. */
    Large("large"),
    /** Largest icon size. */
    Largest("largest");
    public final String value;
    AndroidDeviceOwnerKioskModeIconSize(final String value) {
        this.value = value;
    }
    @jakarta.annotation.Nonnull
    public String getValue() { return this.value; }
    @jakarta.annotation.Nullable
    public static AndroidDeviceOwnerKioskModeIconSize forValue(@jakarta.annotation.Nonnull final String searchValue) {
        Objects.requireNonNull(searchValue);
        switch(searchValue) {
            case "notConfigured": return NotConfigured;
            case "smallest": return Smallest;
            case "small": return Small;
            case "regular": return Regular;
            case "large": return Large;
            case "largest": return Largest;
            default: return null;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy