public enum MoleculeBondType extends Enum<MoleculeBondType>
| Enum Constant and Description |
|---|
AROMATIC_BOND |
DOUBLE_BOND |
ISOMERIC_BOND_DOWN |
ISOMERIC_BOND_UP |
QUADRUPLE_BOND |
SINGLE_BOND |
TRIPLE_BOND |
UNCONNECTED |
| Modifier and Type | Method and Description |
|---|---|
static MoleculeBondType |
getBondForSMILESSymbol(char smilesSymbol) |
char |
getSmilesRepresentation() |
static MoleculeBondType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MoleculeBondType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MoleculeBondType SINGLE_BOND
public static final MoleculeBondType DOUBLE_BOND
public static final MoleculeBondType TRIPLE_BOND
public static final MoleculeBondType QUADRUPLE_BOND
public static final MoleculeBondType ISOMERIC_BOND_UP
public static final MoleculeBondType ISOMERIC_BOND_DOWN
public static final MoleculeBondType AROMATIC_BOND
public static final MoleculeBondType UNCONNECTED
public static MoleculeBondType[] values()
for (MoleculeBondType c : MoleculeBondType.values()) System.out.println(c);
public static MoleculeBondType 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 nullpublic static MoleculeBondType getBondForSMILESSymbol(char smilesSymbol)
public char getSmilesRepresentation()
Copyright © 2018. All rights reserved.