@PublicAPI public enum CheckerSeverity extends java.lang.Enum<CheckerSeverity>
StructureChecker
implementationsEnum 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(java.lang.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 Molecule
public static final CheckerSeverity WARNING
StructureChecker
implementations
which search for problematic features in a Molecule
public static final CheckerSeverity ERROR
StructureChecker
implementations
which search for serious problems in a Molecule
public static CheckerSeverity[] values()
for (CheckerSeverity c : CheckerSeverity.values()) System.out.println(c);
public static CheckerSeverity 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