Enum StereoConstants.StereoValue.CisTransStereo
- java.lang.Object
-
- java.lang.Enum<StereoConstants.StereoValue.CisTransStereo>
-
- com.chemaxon.calculations.stereoanal.StereoConstants.StereoValue.CisTransStereo
-
- All Implemented Interfaces:
StereoConstants.StereoValue
,Serializable
,Comparable<StereoConstants.StereoValue.CisTransStereo>
- Enclosing interface:
- StereoConstants.StereoValue
@Deprecated public static enum StereoConstants.StereoValue.CisTransStereo extends Enum<StereoConstants.StereoValue.CisTransStereo> implements StereoConstants.StereoValue
Deprecated.As of Marvin 14.9.15, replaced byCisTransStereoIUPACDescriptor
.Cis-trans 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 CIS
Deprecated.If substituents located on the same side of the reference plane.TRANS
Deprecated.If substituents located on the opposite side of the reference plane.UNKNOWN
Deprecated.Unknown stereo information.WIGGLY
Deprecated.CIS | TRANS.
-
Method Summary
All Methods Static Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static StereoConstants.StereoValue.CisTransStereo
valueOf(String name)
Deprecated.Returns the enum constant of this type with the specified name.static StereoConstants.StereoValue.CisTransStereo[]
values()
Deprecated.Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CIS
public static final StereoConstants.StereoValue.CisTransStereo CIS
Deprecated.If substituents located on the same side of the reference plane.
-
TRANS
public static final StereoConstants.StereoValue.CisTransStereo TRANS
Deprecated.If substituents located on the opposite side of the reference plane.
-
UNKNOWN
public static final StereoConstants.StereoValue.CisTransStereo UNKNOWN
Deprecated.Unknown stereo information.
-
WIGGLY
public static final StereoConstants.StereoValue.CisTransStereo WIGGLY
Deprecated.CIS | TRANS.
-
-
Method Detail
-
values
public static StereoConstants.StereoValue.CisTransStereo[] 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.CisTransStereo c : StereoConstants.StereoValue.CisTransStereo.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.CisTransStereo 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
-
-