Enum StereoConstants.Type
- java.lang.Object
-
- java.lang.Enum<StereoConstants.Type>
-
- com.chemaxon.calculations.stereoanal.StereoConstants.Type
-
- All Implemented Interfaces:
Serializable
,Comparable<StereoConstants.Type>
- Enclosing interface:
- StereoConstants
public static enum StereoConstants.Type extends Enum<StereoConstants.Type>
Stereo center type.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ATROP
Atrop stereo center.AXIAL
Axial stereo center (eg.CISTRANS
Cis-trans stereo center.TETRAHEDRAL
Tetrahedral stereo center.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static StereoConstants.Type
valueOf(String name)
Returns the enum constant of this type with the specified name.static StereoConstants.Type[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TETRAHEDRAL
public static final StereoConstants.Type TETRAHEDRAL
Tetrahedral stereo center.
-
CISTRANS
public static final StereoConstants.Type CISTRANS
Cis-trans stereo center.
-
AXIAL
public static final StereoConstants.Type AXIAL
Axial stereo center (eg. ClC=C=CCl)
-
ATROP
public static final StereoConstants.Type ATROP
Atrop stereo center.
-
-
Method Detail
-
values
public static StereoConstants.Type[] 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.Type c : StereoConstants.Type.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.Type 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
-
-