public enum Indication extends java.lang.Enum<Indication>
Enum Constant | Description |
---|---|
INDETERMINATE |
The available information is insufficient to determine whether the signature is valid or invalid.
|
INVALID |
The constraint is invalid according to the chosen signature validation profile.
|
VALID |
The constraint is valid according to the chosen signature validation profile.
|
Modifier and Type | Method | Description |
---|---|---|
static Indication |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static Indication[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Indication VALID
public static final Indication INVALID
public static final Indication INDETERMINATE
public static Indication[] values()
for (Indication c : Indication.values()) System.out.println(c);
public static Indication 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