public enum BoundedVoronoiRenderingType extends Enum<BoundedVoronoiRenderingType>
| Enum Constant and Description |
|---|
Area
Feature type for area-fill operations
|
Boundary
Featuure type for the outer boundary of a Voronoi structure.
|
Line
Feature type for line-drawing features
|
Vertex
Feature type for vertex rendering features
|
| Modifier and Type | Method and Description |
|---|---|
static BoundedVoronoiRenderingType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BoundedVoronoiRenderingType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BoundedVoronoiRenderingType Area
public static final BoundedVoronoiRenderingType Line
public static final BoundedVoronoiRenderingType Vertex
public static final BoundedVoronoiRenderingType Boundary
public static BoundedVoronoiRenderingType[] values()
for (BoundedVoronoiRenderingType c : BoundedVoronoiRenderingType.values()) System.out.println(c);
public static BoundedVoronoiRenderingType 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 © 2019. All rights reserved.