public static enum StandardizerRunner.ErrorHandlingPolicy extends java.lang.Enum<StandardizerRunner.ErrorHandlingPolicy>
Enum Constant and Description |
---|
EMPTY_MOLECULE
In case of standardization error an empty molecule is provided on the
output
|
HALT
Halts standardization process in case of standardization error
|
ORIGINAL_MOLECULE
In case of standardization error the original molecule is provided on
the output
|
SKIP
In case of standardization error the output does not contain the
molecule
|
Modifier and Type | Method and Description |
---|---|
static StandardizerRunner.ErrorHandlingPolicy |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static StandardizerRunner.ErrorHandlingPolicy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StandardizerRunner.ErrorHandlingPolicy HALT
public static final StandardizerRunner.ErrorHandlingPolicy SKIP
public static final StandardizerRunner.ErrorHandlingPolicy EMPTY_MOLECULE
public static final StandardizerRunner.ErrorHandlingPolicy ORIGINAL_MOLECULE
public static StandardizerRunner.ErrorHandlingPolicy[] values()
for (StandardizerRunner.ErrorHandlingPolicy c : StandardizerRunner.ErrorHandlingPolicy.values()) System.out.println(c);
public static StandardizerRunner.ErrorHandlingPolicy 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