public enum GridType extends Enum<GridType> implements Serializable
| Enum Constant and Description |
|---|
EQUALGRID
The equalgrid.
|
HILBERT
The hilbert.
|
RTREE
The rtree.
|
VORONOI
The voronoi.
|
| Modifier and Type | Method and Description |
|---|---|
static GridType |
getGridType(String str)
Gets the grid type.
|
static GridType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GridType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GridType EQUALGRID
public static final GridType HILBERT
public static final GridType RTREE
public static final GridType VORONOI
public static GridType[] values()
for (GridType c : GridType.values()) System.out.println(c);
public static GridType 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 © 2017. All rights reserved.