Enum StereoConstants.StereoValue.AxialStereo
- java.lang.Object
-
- java.lang.Enum<StereoConstants.StereoValue.AxialStereo>
-
- com.chemaxon.calculations.stereoanal.StereoConstants.StereoValue.AxialStereo
-
- All Implemented Interfaces:
StereoConstants.StereoValue
,Serializable
,Comparable<StereoConstants.StereoValue.AxialStereo>
- Enclosing interface:
- StereoConstants.StereoValue
@Deprecated public static enum StereoConstants.StereoValue.AxialStereo extends Enum<StereoConstants.StereoValue.AxialStereo> implements StereoConstants.StereoValue
Deprecated.As of Marvin 14.9.15, replaced byAxialStereoIUPACDescriptor
.Axial stereo value.- See Also:
- CIP stereo chemistry
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface com.chemaxon.calculations.stereoanal.StereoConstants.StereoValue
StereoConstants.StereoValue.AtropStereo, StereoConstants.StereoValue.AxialStereo, StereoConstants.StereoValue.CisTransStereo, StereoConstants.StereoValue.TetrahedralStereo
-
-
Enum Constant Summary
Enum Constants Enum Constant Description EVEN
Deprecated.The angle between two bonds connecting the highest indexed ligands is positive.ODD
Deprecated.The angle between two bonds connecting the highest indexed ligands is negative.UNKNOWN
Deprecated.The angle is not defined.WIGGLY
Deprecated.If the centers have wiggly bond.
-
Method Summary
All Methods Static Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static StereoConstants.StereoValue.AxialStereo
valueOf(String name)
Deprecated.Returns the enum constant of this type with the specified name.static StereoConstants.StereoValue.AxialStereo[]
values()
Deprecated.Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ODD
public static final StereoConstants.StereoValue.AxialStereo ODD
Deprecated.The angle between two bonds connecting the highest indexed ligands is negative.
-
EVEN
public static final StereoConstants.StereoValue.AxialStereo EVEN
Deprecated.The angle between two bonds connecting the highest indexed ligands is positive.
-
UNKNOWN
public static final StereoConstants.StereoValue.AxialStereo UNKNOWN
Deprecated.The angle is not defined. Or near 0/Pi.
-
WIGGLY
public static final StereoConstants.StereoValue.AxialStereo WIGGLY
Deprecated.If the centers have wiggly bond.
-
-
Method Detail
-
values
public static StereoConstants.StereoValue.AxialStereo[] values()
Deprecated.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.StereoValue.AxialStereo c : StereoConstants.StereoValue.AxialStereo.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.StereoValue.AxialStereo valueOf(String name)
Deprecated.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
-
-