com.microsoft.graph.generated.models.DeviceManagementExchangeAccessState Maven / Gradle / Ivy
package com.microsoft.graph.models;
import com.microsoft.kiota.serialization.ValuedEnum;
import java.util.Objects;
/**
* Device Exchange Access State.
*/
@jakarta.annotation.Generated("com.microsoft.kiota")
public enum DeviceManagementExchangeAccessState implements ValuedEnum {
/** No access state discovered from Exchange */
None("none"),
/** Device access state to Exchange is unknown */
Unknown("unknown"),
/** Device has access to Exchange */
Allowed("allowed"),
/** Device is Blocked in Exchange */
Blocked("blocked"),
/** Device is Quarantined in Exchange */
Quarantined("quarantined");
public final String value;
DeviceManagementExchangeAccessState(final String value) {
this.value = value;
}
@jakarta.annotation.Nonnull
public String getValue() { return this.value; }
@jakarta.annotation.Nullable
public static DeviceManagementExchangeAccessState forValue(@jakarta.annotation.Nonnull final String searchValue) {
Objects.requireNonNull(searchValue);
switch(searchValue) {
case "none": return None;
case "unknown": return Unknown;
case "allowed": return Allowed;
case "blocked": return Blocked;
case "quarantined": return Quarantined;
default: return null;
}
}
}