Package chemaxon.checkers
Enum StructureCheckOptions.Type
- java.lang.Object
-
- java.lang.Enum<StructureCheckOptions.Type>
-
- chemaxon.checkers.StructureCheckOptions.Type
-
- All Implemented Interfaces:
Serializable
,Comparable<StructureCheckOptions.Type>
- Enclosing class:
- StructureCheckOptions
public static enum StructureCheckOptions.Type extends Enum<StructureCheckOptions.Type>
The output type of the structure check- Since:
- 5.7
-
-
Enum Constant Summary
Enum Constants Enum Constant Description Accepted
Indicates, that the structure checker puts valid or fixed structures to the output file.Discarded
Indicates, that the structure checker puts invalid structures to the discarded file.Separated
Indicates, that the structure checker puts valid or fixed structures to the output file, the others to the discarded file.Single
Indicates, that the structure checker puts all structures to the output file.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static StructureCheckOptions.Type
valueOf(String name)
Returns the enum constant of this type with the specified name.static StructureCheckOptions.Type[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Single
public static final StructureCheckOptions.Type Single
Indicates, that the structure checker puts all structures to the output file.
-
Separated
public static final StructureCheckOptions.Type Separated
Indicates, that the structure checker puts valid or fixed structures to the output file, the others to the discarded file.
-
Accepted
public static final StructureCheckOptions.Type Accepted
Indicates, that the structure checker puts valid or fixed structures to the output file.
-
Discarded
public static final StructureCheckOptions.Type Discarded
Indicates, that the structure checker puts invalid structures to the discarded file.
-
-
Method Detail
-
values
public static StructureCheckOptions.Type[] 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 (StructureCheckOptions.Type c : StructureCheckOptions.Type.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static StructureCheckOptions.Type 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
-
-