Package web5.sdk.dids
Enum ResolutionMetadataError
-
- All Implemented Interfaces:
-
java.io.Serializable,kotlin.Comparable
public enum ResolutionMetadataError extends Enum<ResolutionMetadataError>
Enum representing possible errors that can occur during DID resolution.
-
-
Field Summary
Fields Modifier and Type Field Description private final Stringnameprivate final Integerordinalprivate final EnumEntries<ResolutionMetadataError>entries
-
Enum Constant Summary
Enum Constants Enum Constant Description INVALID_DIDNOT_FOUNDREPRESENTATION_NOT_SUPPORTEDMETHOD_NOT_SUPPORTEDINVALID_DID_DOCUMENTINVALID_PUBLIC_KEYINVALID_DID_DOCUMENT_LENGTHINTERNAL_ERROR
-
Method Summary
Modifier and Type Method Description final ResolutionMetadataErrorvalueOf(String value)Returns the enum constant of this type with the specified name. final Array<ResolutionMetadataError>values()Returns an array containing the constants of this enum type, in the order they're declared. final EnumEntries<ResolutionMetadataError>getEntries()Enum representing possible errors that can occur during DID resolution. -
-
Method Detail
-
valueOf
final ResolutionMetadataError valueOf(String value)
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.)
-
values
final Array<ResolutionMetadataError> values()
Returns an array containing the constants of this enum type, in the order they're declared.
This method may be used to iterate over the constants.
-
getEntries
final EnumEntries<ResolutionMetadataError> getEntries()
Enum representing possible errors that can occur during DID resolution.
-
-
-
-