public enum CheckerSeverity extends Enum<CheckerSeverity>
StructureChecker
implementations| Enum Constant and Description |
|---|
ERROR
This severity level should used for
StructureChecker implementations
which search for serious problems in a Molecule |
INFO
This severity level should used for
StructureChecker implementations
which search for standard informations in a Molecule |
WARNING
This severity level should used for
StructureChecker implementations
which search for problematic features in a Molecule |
| Modifier and Type | Method and Description |
|---|---|
static CheckerSeverity |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CheckerSeverity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CheckerSeverity INFO
StructureChecker implementations
which search for standard informations in a Moleculepublic static final CheckerSeverity WARNING
StructureChecker implementations
which search for problematic features in a Moleculepublic static final CheckerSeverity ERROR
StructureChecker implementations
which search for serious problems in a Moleculepublic static CheckerSeverity[] values()
for (CheckerSeverity c : CheckerSeverity.values()) System.out.println(c);
public static CheckerSeverity valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is null