public static enum Corrector.SignatureHandling extends java.lang.Enum<Corrector.SignatureHandling>
Enum Constant and Description |
---|
DISABLED
Signature handling: disabled (all intents are always evaluated).
|
ENABLED
Signature handling: enabled (repeated repair evaluation avoided).
|
Modifier and Type | Field and Description |
---|---|
java.lang.String |
codeName
Code name of the signature handling mode.
|
java.lang.String |
fullName
Full name of the signature handling mode.
|
Modifier and Type | Method and Description |
---|---|
static Corrector.SignatureHandling |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Corrector.SignatureHandling[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Corrector.SignatureHandling ENABLED
public static final Corrector.SignatureHandling DISABLED
public final java.lang.String codeName
public final java.lang.String fullName
public static Corrector.SignatureHandling[] values()
for (Corrector.SignatureHandling c : Corrector.SignatureHandling.values()) System.out.println(c);
public static Corrector.SignatureHandling 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