public enum SignedExchangeErrorField extends Enum<SignedExchangeErrorField>
| Enum Constant and Description |
|---|
SIGNATURE_CERT_SHA_256 |
SIGNATURE_CERT_URL |
SIGNATURE_INTEGRITY |
SIGNATURE_SIG |
SIGNATURE_TIMESTAMPS |
SIGNATURE_VALIDITY_URL |
| Modifier and Type | Method and Description |
|---|---|
static SignedExchangeErrorField |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SignedExchangeErrorField[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SignedExchangeErrorField SIGNATURE_SIG
public static final SignedExchangeErrorField SIGNATURE_INTEGRITY
public static final SignedExchangeErrorField SIGNATURE_CERT_URL
public static final SignedExchangeErrorField SIGNATURE_CERT_SHA_256
public static final SignedExchangeErrorField SIGNATURE_VALIDITY_URL
public static final SignedExchangeErrorField SIGNATURE_TIMESTAMPS
public static SignedExchangeErrorField[] values()
for (SignedExchangeErrorField c : SignedExchangeErrorField.values()) System.out.println(c);
public static SignedExchangeErrorField valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2020. All rights reserved.