Enum GeometricColumnType
- java.lang.Object
-
- java.lang.Enum<GeometricColumnType>
-
- com.vividsolutions.jump.datastore.spatialite.GeometricColumnType
-
- All Implemented Interfaces:
Serializable
,Comparable<GeometricColumnType>
public enum GeometricColumnType extends Enum<GeometricColumnType>
DB types for geometric columns Used by spatialite, for other datastore, default to native type.- Author:
- nicolas
-
-
Enum Constant Summary
Enum Constants Enum Constant Description NATIVE
SPATIALITE
WKB
WKT
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static GeometricColumnType
valueOf(String name)
Returns the enum constant of this type with the specified name.static GeometricColumnType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
WKT
public static final GeometricColumnType WKT
-
WKB
public static final GeometricColumnType WKB
-
SPATIALITE
public static final GeometricColumnType SPATIALITE
-
NATIVE
public static final GeometricColumnType NATIVE
-
-
Method Detail
-
values
public static GeometricColumnType[] 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 (GeometricColumnType c : GeometricColumnType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static GeometricColumnType 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
-
-