public enum CycleSubstructureStyle extends Enum<CycleSubstructureStyle>
Enum Constant and Description |
---|
CIRCULAR
Substructure style specifier for cycle structures that leads to a circular layout style.
|
NONE
Substructure style specifier for cycle structures that indicates that the algorithm does not handle such structures in a
special way.
|
Modifier and Type | Method and Description |
---|---|
static CycleSubstructureStyle |
fromOrdinal(int ordinal) |
int |
value() |
static CycleSubstructureStyle |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CycleSubstructureStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CycleSubstructureStyle CIRCULAR
public static final CycleSubstructureStyle NONE
public static final CycleSubstructureStyle fromOrdinal(int ordinal)
public int value()
public static CycleSubstructureStyle 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 CycleSubstructureStyle[] values()
for (CycleSubstructureStyle c : CycleSubstructureStyle.values()) System.out.println(c);