org.openscience.cdk.interfaces
Enum IBond.Order
java.lang.Object
java.lang.Enum<IBond.Order>
org.openscience.cdk.interfaces.IBond.Order
- All Implemented Interfaces:
- Serializable, Comparable<IBond.Order>
- Enclosing interface:
- IBond
public static enum IBond.Order
- extends Enum<IBond.Order>
A list of permissible bond orders.
|
Method Summary |
static IBond.Order |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static IBond.Order[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared. |
SINGLE
public static final IBond.Order SINGLE
DOUBLE
public static final IBond.Order DOUBLE
TRIPLE
public static final IBond.Order TRIPLE
QUADRUPLE
public static final IBond.Order QUADRUPLE
values
public static IBond.Order[] 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 (IBond.Order c : IBond.Order.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static IBond.Order 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 name
NullPointerException - if the argument is null