Enum UserVerification

java.lang.Object
java.lang.Enum<UserVerification>
io.vertx.ext.auth.webauthn4j.UserVerification
All Implemented Interfaces:
Serializable, Comparable<UserVerification>

public enum UserVerification extends Enum<UserVerification>
UserVerificationRequirement https://www.w3.org/TR/webauthn/#enumdef-userverificationrequirement
  • Enum Constant Details

  • Method Details

    • values

      public static UserVerification[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static UserVerification valueOf(String name)
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum type has no constant with the specified name
      NullPointerException - if the argument is null
    • toString

      public String toString()
      Overrides:
      toString in class Enum<UserVerification>
    • of

      public static UserVerification of(String string)