public enum ChainSubstructureStyle extends Enum<ChainSubstructureStyle>
Enum Constant and Description |
---|
NONE
Substructure style specifier for chains that indicates that the algorithm does not handle such structures in a special
way.
|
RECTANGULAR
Substructure style specifier for chains that leads to a compact (rotated) rectangular layout style for chains.
|
STRAIGHT_LINE
Substructure style specifier for chains that leads to a straight-line layout style for chains.
|
Modifier and Type | Method and Description |
---|---|
static ChainSubstructureStyle |
fromOrdinal(int ordinal) |
int |
value() |
static ChainSubstructureStyle |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ChainSubstructureStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ChainSubstructureStyle NONE
public static final ChainSubstructureStyle RECTANGULAR
public static final ChainSubstructureStyle STRAIGHT_LINE
public static final ChainSubstructureStyle fromOrdinal(int ordinal)
public int value()
public static ChainSubstructureStyle valueOf(String name)
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullname
- the name of the enum constant to be returned.public static ChainSubstructureStyle[] values()
for (ChainSubstructureStyle c : ChainSubstructureStyle.values()) System.out.println(c);