com.microsoft.graph.beta.generated.models.MdmSupportedState Maven / Gradle / Ivy
package com.microsoft.graph.beta.models;
import com.microsoft.kiota.serialization.ValuedEnum;
import java.util.Objects;
/**
* Mdm Support Status of the setting.
*/
@jakarta.annotation.Generated("com.microsoft.kiota")
public enum MdmSupportedState implements ValuedEnum {
/** Mdm support status of the setting is not known. */
Unknown("unknown"),
/** Setting is supported. */
Supported("supported"),
/** Setting is unsupported. */
Unsupported("unsupported"),
/** Setting is depcrecated. */
Deprecated("deprecated");
public final String value;
MdmSupportedState(final String value) {
this.value = value;
}
@jakarta.annotation.Nonnull
public String getValue() { return this.value; }
@jakarta.annotation.Nullable
public static MdmSupportedState forValue(@jakarta.annotation.Nonnull final String searchValue) {
Objects.requireNonNull(searchValue);
switch(searchValue) {
case "unknown": return Unknown;
case "supported": return Supported;
case "unsupported": return Unsupported;
case "deprecated": return Deprecated;
default: return null;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy