public static enum Atom.ChiralityOrder extends Enum<Atom.ChiralityOrder>
Enum Constant and Description |
---|
anticlockwise |
clockwise |
Modifier and Type | Method and Description |
---|---|
static Atom.ChiralityOrder |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Atom.ChiralityOrder[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Atom.ChiralityOrder clockwise
public static final Atom.ChiralityOrder anticlockwise
public static Atom.ChiralityOrder[] values()
for (Atom.ChiralityOrder c : Atom.ChiralityOrder.values()) System.out.println(c);
public static Atom.ChiralityOrder 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 null