Package chemaxon.checkers
Enum CheckerSeverity
- java.lang.Object
-
- java.lang.Enum<CheckerSeverity>
-
- chemaxon.checkers.CheckerSeverity
-
- All Implemented Interfaces:
Serializable
,Comparable<CheckerSeverity>
@PublicAPI public enum CheckerSeverity extends Enum<CheckerSeverity>
This enum defines the constants which represent the severity of theStructureChecker
implementations- Since:
- Marvin 5.7
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ERROR
This severity level should used forStructureChecker
implementations which search for serious problems in aMolecule
INFO
This severity level should used forStructureChecker
implementations which search for standard informations in aMolecule
WARNING
This severity level should used forStructureChecker
implementations which search for problematic features in aMolecule
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method 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.
-
-
-
Enum Constant Detail
-
INFO
public static final CheckerSeverity INFO
This severity level should used forStructureChecker
implementations which search for standard informations in aMolecule
-
WARNING
public static final CheckerSeverity WARNING
This severity level should used forStructureChecker
implementations which search for problematic features in aMolecule
-
ERROR
public static final CheckerSeverity ERROR
This severity level should used forStructureChecker
implementations which search for serious problems in aMolecule
-
-
Method Detail
-
values
public static CheckerSeverity[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (CheckerSeverity c : CheckerSeverity.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CheckerSeverity valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-