org.openscience.cdk.io
Enum IChemObjectReader.Mode

java.lang.Object
  extended by java.lang.Enum<IChemObjectReader.Mode>
      extended by org.openscience.cdk.io.IChemObjectReader.Mode
All Implemented Interfaces:
Serializable, Comparable<IChemObjectReader.Mode>
Enclosing interface:
IChemObjectReader

public static enum IChemObjectReader.Mode
extends Enum<IChemObjectReader.Mode>


Enum Constant Summary
RELAXED
          Only fail on serious format problems
STRICT
          Fail on any format problem
 
Method Summary
static IChemObjectReader.Mode valueOf(String name)
          Returns the enum constant of this type with the specified name.
static IChemObjectReader.Mode[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

RELAXED

public static final IChemObjectReader.Mode RELAXED
Only fail on serious format problems


STRICT

public static final IChemObjectReader.Mode STRICT
Fail on any format problem

Method Detail

values

public static IChemObjectReader.Mode[] 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 (IChemObjectReader.Mode c : IChemObjectReader.Mode.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static IChemObjectReader.Mode 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 name
NullPointerException - if the argument is null