public enum LayoutAlgorithms extends java.lang.Enum<LayoutAlgorithms>
| Enum Constant and Description |
|---|
AUTOMATIC |
BALLOON |
BOX |
CIRCLE |
CIRCLE_CENTER |
COMPACT_TREE |
CONCENTRIC |
CONVEX |
DAG |
FAST_ORGANIC |
FRUCHTERMAN_REINGOLD |
HIERARCHICAL |
ISOM |
KAMADA_KAWAI |
NODE_LINK_TREE |
ORGANIC |
ORTHOGONAL1 |
PARTITION |
RADIAL_TREE |
RADIAL_TREE2 |
SPRING |
SPTING2 |
SQUIRED_TREEMAP |
STACK |
TREE |
TUTTE |
| Modifier and Type | Method and Description |
|---|---|
static LayoutAlgorithms |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LayoutAlgorithms[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LayoutAlgorithms AUTOMATIC
public static final LayoutAlgorithms ORTHOGONAL1
public static final LayoutAlgorithms CONCENTRIC
public static final LayoutAlgorithms CONVEX
public static final LayoutAlgorithms TUTTE
public static final LayoutAlgorithms KAMADA_KAWAI
public static final LayoutAlgorithms FRUCHTERMAN_REINGOLD
public static final LayoutAlgorithms SPRING
public static final LayoutAlgorithms DAG
public static final LayoutAlgorithms CIRCLE
public static final LayoutAlgorithms CIRCLE_CENTER
public static final LayoutAlgorithms BOX
public static final LayoutAlgorithms BALLOON
public static final LayoutAlgorithms RADIAL_TREE
public static final LayoutAlgorithms TREE
public static final LayoutAlgorithms COMPACT_TREE
public static final LayoutAlgorithms ISOM
public static final LayoutAlgorithms FAST_ORGANIC
public static final LayoutAlgorithms ORGANIC
public static final LayoutAlgorithms HIERARCHICAL
public static final LayoutAlgorithms STACK
public static final LayoutAlgorithms PARTITION
public static final LayoutAlgorithms SPTING2
public static final LayoutAlgorithms NODE_LINK_TREE
public static final LayoutAlgorithms RADIAL_TREE2
public static final LayoutAlgorithms SQUIRED_TREEMAP
public static LayoutAlgorithms[] values()
for (LayoutAlgorithms c : LayoutAlgorithms.values()) System.out.println(c);
public static LayoutAlgorithms valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null