Enum InteractionAtomTypeCalculator.AtomPropertyMask
- java.lang.Object
-
- java.lang.Enum<InteractionAtomTypeCalculator.AtomPropertyMask>
-
- com.actelion.research.chem.interactionstatistics.InteractionAtomTypeCalculator.AtomPropertyMask
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<InteractionAtomTypeCalculator.AtomPropertyMask>
- Enclosing class:
- InteractionAtomTypeCalculator
public static enum InteractionAtomTypeCalculator.AtomPropertyMask extends java.lang.Enum<InteractionAtomTypeCalculator.AtomPropertyMask>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AROM
ATOMIC_NO
BASIC
EXTENDED
FUNCTIONAL_GROUP
HYBRID
NONHNEIGHBOURS
SPECIFIC
STABILIZED
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getMask()
static InteractionAtomTypeCalculator.AtomPropertyMask
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static InteractionAtomTypeCalculator.AtomPropertyMask[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ATOMIC_NO
public static final InteractionAtomTypeCalculator.AtomPropertyMask ATOMIC_NO
-
HYBRID
public static final InteractionAtomTypeCalculator.AtomPropertyMask HYBRID
-
NONHNEIGHBOURS
public static final InteractionAtomTypeCalculator.AtomPropertyMask NONHNEIGHBOURS
-
AROM
public static final InteractionAtomTypeCalculator.AtomPropertyMask AROM
-
STABILIZED
public static final InteractionAtomTypeCalculator.AtomPropertyMask STABILIZED
-
FUNCTIONAL_GROUP
public static final InteractionAtomTypeCalculator.AtomPropertyMask FUNCTIONAL_GROUP
-
BASIC
public static final InteractionAtomTypeCalculator.AtomPropertyMask BASIC
-
EXTENDED
public static final InteractionAtomTypeCalculator.AtomPropertyMask EXTENDED
-
SPECIFIC
public static final InteractionAtomTypeCalculator.AtomPropertyMask SPECIFIC
-
-
Method Detail
-
values
public static InteractionAtomTypeCalculator.AtomPropertyMask[] 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 (InteractionAtomTypeCalculator.AtomPropertyMask c : InteractionAtomTypeCalculator.AtomPropertyMask.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static InteractionAtomTypeCalculator.AtomPropertyMask 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 namejava.lang.NullPointerException
- if the argument is null
-
getMask
public int getMask()
-
-