public enum WKBType extends Enum<WKBType>
| Enum Constant and Description |
|---|
GEOMETRYCOLLECTION |
LINESTRING |
MULTILINESTRING |
MULTIPOINT |
MULTIPOLYGON |
POINT |
POLYGON |
| Modifier and Type | Method and Description |
|---|---|
String |
getDescription() |
int |
getType() |
static WKBType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WKBType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WKBType POINT
public static final WKBType LINESTRING
public static final WKBType POLYGON
public static final WKBType MULTIPOINT
public static final WKBType MULTILINESTRING
public static final WKBType MULTIPOLYGON
public static final WKBType GEOMETRYCOLLECTION
public static WKBType[] values()
for (WKBType c : WKBType.values()) System.out.println(c);
public static WKBType 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 nullpublic int getType()
public String getDescription()
Copyright © 2024–2025 Dynamic-SQL. All rights reserved.