public enum AestheticCriteria extends java.lang.Enum<AestheticCriteria>
| Enum Constant and Description |
|---|
EDGE_LENGTHS |
EDGE_VARIATION |
MINIMAL_EDGE_CROESSES |
MINIMUM_ANGLES |
MINIMUM_BANDS |
NODE_DISTRIBUTION |
PLANAR |
SYMMETRIC |
UNIFORM_FLOW |
| Modifier and Type | Method and Description |
|---|---|
static AestheticCriteria |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AestheticCriteria[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AestheticCriteria PLANAR
public static final AestheticCriteria MINIMAL_EDGE_CROESSES
public static final AestheticCriteria MINIMUM_ANGLES
public static final AestheticCriteria MINIMUM_BANDS
public static final AestheticCriteria UNIFORM_FLOW
public static final AestheticCriteria SYMMETRIC
public static final AestheticCriteria NODE_DISTRIBUTION
public static final AestheticCriteria EDGE_LENGTHS
public static final AestheticCriteria EDGE_VARIATION
public static AestheticCriteria[] values()
for (AestheticCriteria c : AestheticCriteria.values()) System.out.println(c);
public static AestheticCriteria 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