public static enum SimpleLayoutAlgorithm.RelativePosition extends Enum<SimpleLayoutAlgorithm.RelativePosition>
| Modifier and Type | Method and Description |
|---|---|
static SimpleLayoutAlgorithm.RelativePosition |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SimpleLayoutAlgorithm.RelativePosition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SimpleLayoutAlgorithm.RelativePosition ABOVE
public static final SimpleLayoutAlgorithm.RelativePosition BELOW
public static final SimpleLayoutAlgorithm.RelativePosition LEFT
public static final SimpleLayoutAlgorithm.RelativePosition RIGHT
public static final SimpleLayoutAlgorithm.RelativePosition UNDEFINED
public static SimpleLayoutAlgorithm.RelativePosition[] values()
for (SimpleLayoutAlgorithm.RelativePosition c : SimpleLayoutAlgorithm.RelativePosition.values()) System.out.println(c);
public static SimpleLayoutAlgorithm.RelativePosition 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 © 2009–2020. All rights reserved.