Package org.geolatte.geom.codec
Enum Wkt.Dialect
- java.lang.Object
-
- java.lang.Enum<Wkt.Dialect>
-
- org.geolatte.geom.codec.Wkt.Dialect
-
- All Implemented Interfaces:
Serializable,Comparable<Wkt.Dialect>
- Enclosing class:
- Wkt
public static enum Wkt.Dialect extends Enum<Wkt.Dialect>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DB2_WKTHANA_EWKTMYSQL_WKTPOSTGIS_EWKT_1
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Wkt.DialectvalueOf(String name)Returns the enum constant of this type with the specified name.static Wkt.Dialect[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
POSTGIS_EWKT_1
public static final Wkt.Dialect POSTGIS_EWKT_1
-
MYSQL_WKT
public static final Wkt.Dialect MYSQL_WKT
-
HANA_EWKT
public static final Wkt.Dialect HANA_EWKT
-
DB2_WKT
public static final Wkt.Dialect DB2_WKT
-
-
Method Detail
-
values
public static Wkt.Dialect[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Wkt.Dialect c : Wkt.Dialect.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Wkt.Dialect valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-