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

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

/**
 * Possible statuses associated with a generated report.
 */
@jakarta.annotation.Generated("com.microsoft.kiota")
public enum DeviceManagementReportStatus implements ValuedEnum {
    /** Report generation status is unknown. */
    Unknown("unknown"),
    /** Report generation has not started. */
    NotStarted("notStarted"),
    /** Report generation is in progress. */
    InProgress("inProgress"),
    /** Report generation is completed. */
    Completed("completed"),
    /** Report generation has failed. */
    Failed("failed");
    public final String value;
    DeviceManagementReportStatus(final String value) {
        this.value = value;
    }
    @jakarta.annotation.Nonnull
    public String getValue() { return this.value; }
    @jakarta.annotation.Nullable
    public static DeviceManagementReportStatus forValue(@jakarta.annotation.Nonnull final String searchValue) {
        Objects.requireNonNull(searchValue);
        switch(searchValue) {
            case "unknown": return Unknown;
            case "notStarted": return NotStarted;
            case "inProgress": return InProgress;
            case "completed": return Completed;
            case "failed": return Failed;
            default: return null;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy