Enum NegativeReceptorImage.InteractionProbe
- java.lang.Object
-
- java.lang.Enum<NegativeReceptorImage.InteractionProbe>
-
- com.actelion.research.chem.docking.receptorpharmacophore.NegativeReceptorImage.InteractionProbe
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<NegativeReceptorImage.InteractionProbe>
- Enclosing class:
- NegativeReceptorImage
public static enum NegativeReceptorImage.InteractionProbe extends java.lang.Enum<NegativeReceptorImage.InteractionProbe>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description HB_ACCEPTOR
HB_DONOR
NEG_CHARGE
POS_CHARGE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static NegativeReceptorImage.InteractionProbe
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static NegativeReceptorImage.InteractionProbe[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NEG_CHARGE
public static final NegativeReceptorImage.InteractionProbe NEG_CHARGE
-
POS_CHARGE
public static final NegativeReceptorImage.InteractionProbe POS_CHARGE
-
HB_DONOR
public static final NegativeReceptorImage.InteractionProbe HB_DONOR
-
HB_ACCEPTOR
public static final NegativeReceptorImage.InteractionProbe HB_ACCEPTOR
-
-
Method Detail
-
values
public static NegativeReceptorImage.InteractionProbe[] 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 (NegativeReceptorImage.InteractionProbe c : NegativeReceptorImage.InteractionProbe.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static NegativeReceptorImage.InteractionProbe 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
-
-