tools.moltyping.enumerations
Enum EnumerationsAtomTypes.AtomLabelType

java.lang.Object
  extended by java.lang.Enum<EnumerationsAtomTypes.AtomLabelType>
      extended by tools.moltyping.enumerations.EnumerationsAtomTypes.AtomLabelType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<EnumerationsAtomTypes.AtomLabelType>
Enclosing class:
EnumerationsAtomTypes

public static enum EnumerationsAtomTypes.AtomLabelType
extends java.lang.Enum<EnumerationsAtomTypes.AtomLabelType>


Enum Constant Summary
CDK_ATOM_TYPES
           
CUSTOM
           
DAYLIGHT_INVARIANT
           
DAYLIGHT_INVARIANT_RING
           
ELEMENT_NEIGHBOR
          element symbol + #atom neighbours
ELEMENT_NEIGHBOR_RING
          element symbol + ring flag +#atom neighbours
ELEMENT_SYMBOL
          Only element symbols
 
Method Summary
static EnumerationsAtomTypes.AtomLabelType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static EnumerationsAtomTypes.AtomLabelType[] 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

CDK_ATOM_TYPES

public static final EnumerationsAtomTypes.AtomLabelType CDK_ATOM_TYPES

ELEMENT_NEIGHBOR

public static final EnumerationsAtomTypes.AtomLabelType ELEMENT_NEIGHBOR
element symbol + #atom neighbours


ELEMENT_NEIGHBOR_RING

public static final EnumerationsAtomTypes.AtomLabelType ELEMENT_NEIGHBOR_RING
element symbol + ring flag +#atom neighbours


ELEMENT_SYMBOL

public static final EnumerationsAtomTypes.AtomLabelType ELEMENT_SYMBOL
Only element symbols


CUSTOM

public static final EnumerationsAtomTypes.AtomLabelType CUSTOM

DAYLIGHT_INVARIANT

public static final EnumerationsAtomTypes.AtomLabelType DAYLIGHT_INVARIANT

DAYLIGHT_INVARIANT_RING

public static final EnumerationsAtomTypes.AtomLabelType DAYLIGHT_INVARIANT_RING
Method Detail

values

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

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

valueOf

public static EnumerationsAtomTypes.AtomLabelType valueOf(java.lang.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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null