Package net.postgis.jdbc.geometry.util
Enum VersionFunctions
- All Implemented Interfaces:
Serializable,Comparable<VersionFunctions>,java.lang.constant.Constable
An enumeration of existing version functions.
- Author:
- Phillip Ross
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe function to return the full version and build configuration info of the PostGIS Server.The function to return the version of the GDAL library.The function to return the version of the GEOS library.The function to return the build date of the PostGIS library.The function to return the version of the PostGIS library.The function to return the version of the libjson library.The function to return the version of the libxml library.The function to return the version of the Proj library.The function to return the version of the raster library.The function to return the build date of the scripts.The function to return the version of the scripts installed in the database.The function to return the version of the scripts released with the installed PostGIS library.The function to return the Subversion version of the PostGIS Server.The function to return the version of the PostGIS Server. -
Method Summary
Modifier and TypeMethodDescriptionstatic VersionFunctionsReturns the enum constant of this type with the specified name.static VersionFunctions[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
POSTGIS_FULL_VERSION
The function to return the full version and build configuration info of the PostGIS Server. -
POSTGIS_GDAL_VERSION
The function to return the version of the GDAL library. -
POSTGIS_GEOS_VERSION
The function to return the version of the GEOS library. -
POSTGIS_LIB_BUILD_DATE
The function to return the build date of the PostGIS library. -
POSTGIS_LIB_VERSION
The function to return the version of the PostGIS library. -
POSTGIS_LIBJSON_VERSION
The function to return the version of the libjson library. -
POSTGIS_LIBXML_VERSION
The function to return the version of the libxml library. -
POSTGIS_PROJ_VERSION
The function to return the version of the Proj library. -
POSTGIS_RASTER_LIB_VERSION
The function to return the version of the raster library. -
POSTGIS_SCRIPTS_BUILD_DATE
The function to return the build date of the scripts. -
POSTGIS_SCRIPTS_INSTALLED
The function to return the version of the scripts installed in the database. -
POSTGIS_SCRIPTS_RELEASED
The function to return the version of the scripts released with the installed PostGIS library. -
POSTGIS_SVN_VERSION
The function to return the Subversion version of the PostGIS Server. -
POSTGIS_VERSION
The function to return the version of the PostGIS Server.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-