Package com.yubico.webauthn.meta
Enum Class DocumentStatus
- All Implemented Interfaces:
Serializable
,Comparable<DocumentStatus>
,Constable
A representation of Web Authentication specification document statuses.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionA candidate recommendation is a specification release candidate.An editor's draft is a changing work in progress.A proposed recommendation is a finished draft intended for release.A recommendation is a finished and released specification.A working draft is a named snapshot of a particular state of an editor's draft. -
Method Summary
Modifier and TypeMethodDescriptionstatic DocumentStatus
Returns the enum constant of this class with the specified name.static DocumentStatus[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
EDITORS_DRAFT
An editor's draft is a changing work in progress. -
WORKING_DRAFT
A working draft is a named snapshot of a particular state of an editor's draft. -
CANDIDATE_RECOMMENDATION
A candidate recommendation is a specification release candidate. -
PROPOSED_RECOMMENDATION
A proposed recommendation is a finished draft intended for release. -
RECOMMENDATION
A recommendation is a finished and released specification.
-
-
Method Details
-
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
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 nameNullPointerException
- if the argument is null
-