Enum InteractionAtomTypeCalculator.AtomFlagCount
- java.lang.Object
-
- java.lang.Enum<InteractionAtomTypeCalculator.AtomFlagCount>
-
- com.actelion.research.chem.interactionstatistics.InteractionAtomTypeCalculator.AtomFlagCount
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<InteractionAtomTypeCalculator.AtomFlagCount>
- Enclosing class:
- InteractionAtomTypeCalculator
public static enum InteractionAtomTypeCalculator.AtomFlagCount extends java.lang.Enum<InteractionAtomTypeCalculator.AtomFlagCount>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BASIC_ATOM_FLAG_COUNT
EXTENDED_ATOM_FLAG_COUNT
FUNC_GROUP_FLAG_COUNT
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getCount()
static InteractionAtomTypeCalculator.AtomFlagCount
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static InteractionAtomTypeCalculator.AtomFlagCount[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FUNC_GROUP_FLAG_COUNT
public static final InteractionAtomTypeCalculator.AtomFlagCount FUNC_GROUP_FLAG_COUNT
-
BASIC_ATOM_FLAG_COUNT
public static final InteractionAtomTypeCalculator.AtomFlagCount BASIC_ATOM_FLAG_COUNT
-
EXTENDED_ATOM_FLAG_COUNT
public static final InteractionAtomTypeCalculator.AtomFlagCount EXTENDED_ATOM_FLAG_COUNT
-
-
Method Detail
-
values
public static InteractionAtomTypeCalculator.AtomFlagCount[] 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.AtomFlagCount c : InteractionAtomTypeCalculator.AtomFlagCount.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.AtomFlagCount 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
-
getCount
public int getCount()
-
-