Enum Class DocumentStatus

java.lang.Object
java.lang.Enum<DocumentStatus>
com.yubico.webauthn.meta.DocumentStatus
All Implemented Interfaces:
Serializable, Comparable<DocumentStatus>, Constable

public enum DocumentStatus extends Enum<DocumentStatus>
A representation of Web Authentication specification document statuses.
  • Enum Constant Details

    • EDITORS_DRAFT

      public static final DocumentStatus EDITORS_DRAFT
      An editor's draft is a changing work in progress.
    • WORKING_DRAFT

      public static final DocumentStatus WORKING_DRAFT
      A working draft is a named snapshot of a particular state of an editor's draft.
    • CANDIDATE_RECOMMENDATION

      public static final DocumentStatus CANDIDATE_RECOMMENDATION
      A candidate recommendation is a specification release candidate.
    • PROPOSED_RECOMMENDATION

      public static final DocumentStatus PROPOSED_RECOMMENDATION
      A proposed recommendation is a finished draft intended for release.
    • RECOMMENDATION

      public static final DocumentStatus RECOMMENDATION
      A recommendation is a finished and released specification.
  • Method Details

    • values

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

      public static DocumentStatus valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null