public enum BondType extends Enum<BondType>
| Enum Constant and Description |
|---|
DOUBLE_BOND |
HYDROGEN_BOND |
HYDROPHOBIC_INTERACTION |
PI_STACKING |
SINGLE_BOND |
TRIPLE_BOND |
| Modifier and Type | Method and Description |
|---|---|
static Optional<BondType> |
getBondTypeByCifName(String cifName) |
String |
getCifName() |
static BondType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BondType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BondType SINGLE_BOND
public static final BondType DOUBLE_BOND
public static final BondType TRIPLE_BOND
public static final BondType HYDROPHOBIC_INTERACTION
public static final BondType HYDROGEN_BOND
public static final BondType PI_STACKING
public static BondType[] values()
for (BondType c : BondType.values()) System.out.println(c);
public static BondType 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 String getCifName()
Copyright © 2018. All rights reserved.