Enum StereoConstants.EnhancedStereoType
- java.lang.Object
-
- java.lang.Enum<StereoConstants.EnhancedStereoType>
-
- com.chemaxon.calculations.stereoanal.StereoConstants.EnhancedStereoType
-
- All Implemented Interfaces:
Serializable
,Comparable<StereoConstants.EnhancedStereoType>
- Enclosing interface:
- StereoConstants
public static enum StereoConstants.EnhancedStereoType extends Enum<StereoConstants.EnhancedStereoType>
Enhanced stereo flags.- See Also:
- MDL Enhanced Stereo
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static StereoConstants.EnhancedStereoType
valueOf(String name)
Returns the enum constant of this type with the specified name.static StereoConstants.EnhancedStereoType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ABS
public static final StereoConstants.EnhancedStereoType ABS
Stereogenic centers belonging to ABS represent absolute stereochemistry, i.e. chirality.
-
AND
public static final StereoConstants.EnhancedStereoType AND
Stereogenic centers belonging to an ANDn group (e.g. AND1) represents a mixture of two enantiomers: the structure as drawn AND the epimer in which the stereogenic centers have the opposite configuration.
-
OR
public static final StereoConstants.EnhancedStereoType OR
Stereogenic centers belonging to an ORn group (e.g. OR1) represents one stereoisomer that is either the structure as drawn (R, S) OR the epimer in which the stereogenic centers have the opposite configuration (S, R).
-
-
Method Detail
-
values
public static StereoConstants.EnhancedStereoType[] 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 (StereoConstants.EnhancedStereoType c : StereoConstants.EnhancedStereoType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static StereoConstants.EnhancedStereoType valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-