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

com.microsoft.graph.generated.models.WindowsArchitecture Maven / Gradle / Ivy

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

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

/**
 * Contains properties for Windows architecture.
 */
@jakarta.annotation.Generated("com.microsoft.kiota")
public enum WindowsArchitecture implements ValuedEnum {
    /** No flags set. */
    None("none"),
    /** Whether or not the X86 Windows architecture type is supported. */
    X86("x86"),
    /** Whether or not the X64 Windows architecture type is supported. */
    X64("x64"),
    /** Whether or not the Arm Windows architecture type is supported. */
    Arm("arm"),
    /** Whether or not the Neutral Windows architecture type is supported. */
    Neutral("neutral");
    public final String value;
    WindowsArchitecture(final String value) {
        this.value = value;
    }
    @jakarta.annotation.Nonnull
    public String getValue() { return this.value; }
    @jakarta.annotation.Nullable
    public static WindowsArchitecture forValue(@jakarta.annotation.Nonnull final String searchValue) {
        Objects.requireNonNull(searchValue);
        switch(searchValue) {
            case "none": return None;
            case "x86": return X86;
            case "x64": return X64;
            case "arm": return Arm;
            case "neutral": return Neutral;
            default: return null;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy