com.microsoft.graph.beta.generated.models.AuthenticationMethodFeature Maven / Gradle / Ivy
package com.microsoft.graph.beta.models;
import com.microsoft.kiota.serialization.ValuedEnum;
import java.util.Objects;
@jakarta.annotation.Generated("com.microsoft.kiota")
public enum AuthenticationMethodFeature implements ValuedEnum {
SsprRegistered("ssprRegistered"),
SsprEnabled("ssprEnabled"),
SsprCapable("ssprCapable"),
PasswordlessCapable("passwordlessCapable"),
MfaCapable("mfaCapable"),
UnknownFutureValue("unknownFutureValue");
public final String value;
AuthenticationMethodFeature(final String value) {
this.value = value;
}
@jakarta.annotation.Nonnull
public String getValue() { return this.value; }
@jakarta.annotation.Nullable
public static AuthenticationMethodFeature forValue(@jakarta.annotation.Nonnull final String searchValue) {
Objects.requireNonNull(searchValue);
switch(searchValue) {
case "ssprRegistered": return SsprRegistered;
case "ssprEnabled": return SsprEnabled;
case "ssprCapable": return SsprCapable;
case "passwordlessCapable": return PasswordlessCapable;
case "mfaCapable": return MfaCapable;
case "unknownFutureValue": return UnknownFutureValue;
default: return null;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy