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

com.microsoft.graph.beta.generated.models.IngestionSource Maven / Gradle / Ivy

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

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

/**
 * Category Ingestion source
 */
@jakarta.annotation.Generated("com.microsoft.kiota")
public enum IngestionSource implements ValuedEnum {
    /** Indicates unknown category */
    Unknown("unknown"),
    /** Indicates the category is ingested by IT admin with sufficient permissions through custom ingestion process */
    Custom("custom"),
    /** Indicates the category is ingested through system ingestion process */
    BuiltIn("builtIn"),
    /** Unknown future enum value */
    UnknownFutureValue("unknownFutureValue");
    public final String value;
    IngestionSource(final String value) {
        this.value = value;
    }
    @jakarta.annotation.Nonnull
    public String getValue() { return this.value; }
    @jakarta.annotation.Nullable
    public static IngestionSource forValue(@jakarta.annotation.Nonnull final String searchValue) {
        Objects.requireNonNull(searchValue);
        switch(searchValue) {
            case "unknown": return Unknown;
            case "custom": return Custom;
            case "builtIn": return BuiltIn;
            case "unknownFutureValue": return UnknownFutureValue;
            default: return null;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy