public static enum IBond.Stereo extends Enum<IBond.Stereo>
Enum Constant and Description |
---|
DOWN
A bond pointing down of which the start atom is the stereocenter
and the end atom is below the drawing plane.
|
DOWN_INVERTED
A bond pointing down of which the end atom is the stereocenter and
the start atom is below the drawing plane.
|
E
Indication that this double bond has a E configuration.
|
E_OR_Z
Indication that this double bond has a fixed, but unknown E/Z
configuration.
|
E_Z_BY_COORDINATES
Indication that this double bond has a fixed configuration, defined
by the 2D and/or 3D coordinates.
|
NONE
A bond for which there is no stereochemistry.
|
UP
A bond pointing up of which the start atom is the stereocenter and
the end atom is above the drawing plane.
|
UP_INVERTED
A bond pointing up of which the end atom is the stereocenter and
the start atom is above the drawing plane.
|
UP_OR_DOWN
A bond for which there is stereochemistry, we just do not know
if it is UP or DOWN.
|
UP_OR_DOWN_INVERTED
A bond for which there is stereochemistry, we just do not know
if it is UP or DOWN.
|
Z
Indication that this double bond has a Z configuration.
|
Modifier and Type | Method and Description |
---|---|
static IBond.Stereo |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IBond.Stereo[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IBond.Stereo NONE
public static final IBond.Stereo UP
public static final IBond.Stereo UP_INVERTED
public static final IBond.Stereo DOWN
public static final IBond.Stereo DOWN_INVERTED
public static final IBond.Stereo UP_OR_DOWN
public static final IBond.Stereo UP_OR_DOWN_INVERTED
public static final IBond.Stereo E_OR_Z
public static final IBond.Stereo E
public static final IBond.Stereo Z
public static final IBond.Stereo E_Z_BY_COORDINATES
public static IBond.Stereo[] values()
for (IBond.Stereo c : IBond.Stereo.values()) System.out.println(c);
public static IBond.Stereo valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2021. All rights reserved.