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

com.microsoft.graph.beta.generated.models.security.DeliveryLocation Maven / Gradle / Ivy

There is a newer version: 6.26.0
Show newest version
package com.microsoft.graph.beta.models.security;

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

@jakarta.annotation.Generated("com.microsoft.kiota")
public enum DeliveryLocation implements ValuedEnum {
    Unknown("unknown"),
    Inbox_folder("inbox_folder"),
    JunkFolder("junkFolder"),
    DeletedFolder("deletedFolder"),
    Quarantine("quarantine"),
    Onprem_external("onprem_external"),
    Failed("failed"),
    Dropped("dropped"),
    Others("others"),
    UnknownFutureValue("unknownFutureValue");
    public final String value;
    DeliveryLocation(final String value) {
        this.value = value;
    }
    @jakarta.annotation.Nonnull
    public String getValue() { return this.value; }
    @jakarta.annotation.Nullable
    public static DeliveryLocation forValue(@jakarta.annotation.Nonnull final String searchValue) {
        Objects.requireNonNull(searchValue);
        switch(searchValue) {
            case "unknown": return Unknown;
            case "inbox_folder": return Inbox_folder;
            case "junkFolder": return JunkFolder;
            case "deletedFolder": return DeletedFolder;
            case "quarantine": return Quarantine;
            case "onprem_external": return Onprem_external;
            case "failed": return Failed;
            case "dropped": return Dropped;
            case "others": return Others;
            case "unknownFutureValue": return UnknownFutureValue;
            default: return null;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy