public static enum PointStyle.Placement extends java.lang.Enum<PointStyle.Placement>
Enum Constant and Description |
---|
centroid
Centroid placement.
|
midpoint
Midpoint placement.
|
spaced
Spaced placement.
|
vertex
Vertex placement.
|
Modifier and Type | Method and Description |
---|---|
static PointStyle.Placement |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PointStyle.Placement[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PointStyle.Placement vertex
public static final PointStyle.Placement spaced
public static final PointStyle.Placement midpoint
public static final PointStyle.Placement centroid
public static PointStyle.Placement[] values()
for (PointStyle.Placement c : PointStyle.Placement.values()) System.out.println(c);
public static PointStyle.Placement 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