public enum CounterSignTarget extends java.lang.Enum<CounterSignTarget>
Enum Constant and Description |
---|
LEAFS
Contrafirma de todas las hojas del árbol de firma.
|
NODES
Contrafirma de nodos de firma concretos.
|
SIGNERS
Contrafirma de firmantes concretos.
|
TREE
Contrafirma de todo el árbol de firma.
|
Modifier and Type | Method and Description |
---|---|
static CounterSignTarget |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CounterSignTarget[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CounterSignTarget SIGNERS
public static final CounterSignTarget NODES
public static final CounterSignTarget TREE
public static final CounterSignTarget LEAFS
public static CounterSignTarget[] values()
for (CounterSignTarget c : CounterSignTarget.values()) System.out.println(c);
public static CounterSignTarget 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