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

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

/**
 * State of the action on the device
 */
@jakarta.annotation.Generated("com.microsoft.kiota")
public enum ActionState implements ValuedEnum {
    /** Not a valid action state */
    None("none"),
    /** Action is pending */
    Pending("pending"),
    /** Action has been cancelled. */
    Canceled("canceled"),
    /** Action is active. */
    Active("active"),
    /** Action completed without errors. */
    Done("done"),
    /** Action failed */
    Failed("failed"),
    /** Action is not supported. */
    NotSupported("notSupported");
    public final String value;
    ActionState(final String value) {
        this.value = value;
    }
    @jakarta.annotation.Nonnull
    public String getValue() { return this.value; }
    @jakarta.annotation.Nullable
    public static ActionState forValue(@jakarta.annotation.Nonnull final String searchValue) {
        Objects.requireNonNull(searchValue);
        switch(searchValue) {
            case "none": return None;
            case "pending": return Pending;
            case "canceled": return Canceled;
            case "active": return Active;
            case "done": return Done;
            case "failed": return Failed;
            case "notSupported": return NotSupported;
            default: return null;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy