Enum IPharmacophorePoint.Functionality
- java.lang.Object
-
- java.lang.Enum<IPharmacophorePoint.Functionality>
-
- com.actelion.research.chem.phesa.pharmacophore.pp.IPharmacophorePoint.Functionality
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<IPharmacophorePoint.Functionality>
- Enclosing interface:
- IPharmacophorePoint
public static enum IPharmacophorePoint.Functionality extends java.lang.Enum<IPharmacophorePoint.Functionality>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACCEPTOR
AROM_RING
DONOR
EXIT_VECTOR
NEG_CHARGE
POS_CHARGE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getIndex()
static IPharmacophorePoint.Functionality
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static IPharmacophorePoint.Functionality[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ACCEPTOR
public static final IPharmacophorePoint.Functionality ACCEPTOR
-
DONOR
public static final IPharmacophorePoint.Functionality DONOR
-
NEG_CHARGE
public static final IPharmacophorePoint.Functionality NEG_CHARGE
-
POS_CHARGE
public static final IPharmacophorePoint.Functionality POS_CHARGE
-
AROM_RING
public static final IPharmacophorePoint.Functionality AROM_RING
-
EXIT_VECTOR
public static final IPharmacophorePoint.Functionality EXIT_VECTOR
-
-
Method Detail
-
values
public static IPharmacophorePoint.Functionality[] 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 (IPharmacophorePoint.Functionality c : IPharmacophorePoint.Functionality.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IPharmacophorePoint.Functionality 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
-
getIndex
public int getIndex()
-
-