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

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

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

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

@jakarta.annotation.Generated("com.microsoft.kiota")
public enum ProtectionUnitStatus implements ValuedEnum {
    ProtectRequested("protectRequested"),
    Protected("protected"),
    UnprotectRequested("unprotectRequested"),
    Unprotected("unprotected"),
    RemoveRequested("removeRequested"),
    UnknownFutureValue("unknownFutureValue");
    public final String value;
    ProtectionUnitStatus(final String value) {
        this.value = value;
    }
    @jakarta.annotation.Nonnull
    public String getValue() { return this.value; }
    @jakarta.annotation.Nullable
    public static ProtectionUnitStatus forValue(@jakarta.annotation.Nonnull final String searchValue) {
        Objects.requireNonNull(searchValue);
        switch(searchValue) {
            case "protectRequested": return ProtectRequested;
            case "protected": return Protected;
            case "unprotectRequested": return UnprotectRequested;
            case "unprotected": return Unprotected;
            case "removeRequested": return RemoveRequested;
            case "unknownFutureValue": return UnknownFutureValue;
            default: return null;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy