public enum LayeredLayoutTraits extends java.lang.Enum<LayeredLayoutTraits> implements NamedEnum
Enum Constant and Description |
---|
Layer
The number associated with this key specifies the index of the layer
the layout should attempt to place the node to.
|
Modifier and Type | Method and Description |
---|---|
int |
getValue()
Gets an integer value corresponding to enumeration member.
|
static LayeredLayoutTraits |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LayeredLayoutTraits[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LayeredLayoutTraits Layer
public static LayeredLayoutTraits[] values()
for (LayeredLayoutTraits c : LayeredLayoutTraits.values()) System.out.println(c);
public static LayeredLayoutTraits 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