public enum LayoutEngine extends Enum<LayoutEngine>
| Enum Constant and Description |
|---|
CIRCO |
DOT |
FDP |
NEATO |
NOP |
NOP1 |
NOP2 |
SFDP |
TWOPI |
| Modifier and Type | Method and Description |
|---|---|
static LayoutEngine |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LayoutEngine[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LayoutEngine CIRCO
public static final LayoutEngine DOT
public static final LayoutEngine FDP
public static final LayoutEngine NEATO
public static final LayoutEngine NOP
public static final LayoutEngine NOP1
public static final LayoutEngine NOP2
public static final LayoutEngine TWOPI
public static final LayoutEngine SFDP
public static LayoutEngine[] values()
for (LayoutEngine c : LayoutEngine.values()) System.out.println(c);
public static LayoutEngine 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 nullCopyright © 2013 dontdrinkandroot. All Rights Reserved.