public static enum SigningOptions.Validation extends java.lang.Enum<SigningOptions.Validation>
| Enum Constant and Description |
|---|
ALWAYS_VALIDATE
Always perform signature validation
|
ASSUME_INVALID
Assume the signature is invalid without validation i.e.
|
ASSUME_VALID
Assume the signature is valid without validation i.e.
|
| Modifier and Type | Method and Description |
|---|---|
static SigningOptions.Validation |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SigningOptions.Validation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SigningOptions.Validation ALWAYS_VALIDATE
public static final SigningOptions.Validation ASSUME_VALID
public static final SigningOptions.Validation ASSUME_INVALID
public static SigningOptions.Validation[] values()
for (SigningOptions.Validation c : SigningOptions.Validation.values()) System.out.println(c);
public static SigningOptions.Validation valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null