public enum MassiveType extends java.lang.Enum<MassiveType>
Enum Constant and Description |
---|
COSIGN
Cofirma.
|
COUNTERSIGN_ALL
Contrafirma de todo el árbol de firmantes.
|
COUNTERSIGN_LEAFS
Contrafirma de solo las hojas del árbol de firmantes.
|
SIGN
Firma convencional.
|
Modifier and Type | Method and Description |
---|---|
static MassiveType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MassiveType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MassiveType SIGN
public static final MassiveType COSIGN
public static final MassiveType COUNTERSIGN_ALL
public static final MassiveType COUNTERSIGN_LEAFS
public static MassiveType[] values()
for (MassiveType c : MassiveType.values()) System.out.println(c);
public static MassiveType 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