public enum VersionFunctions extends Enum<VersionFunctions>
| Enum Constant and Description |
|---|
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.
|
| Modifier and Type | Method and Description |
|---|---|
static VersionFunctions |
valueOf(String name)
Returns 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.
|
public static final VersionFunctions POSTGIS_FULL_VERSION
public static final VersionFunctions POSTGIS_GDAL_VERSION
public static final VersionFunctions POSTGIS_GEOS_VERSION
public static final VersionFunctions POSTGIS_LIB_BUILD_DATE
public static final VersionFunctions POSTGIS_LIB_VERSION
public static final VersionFunctions POSTGIS_LIBJSON_VERSION
public static final VersionFunctions POSTGIS_LIBXML_VERSION
public static final VersionFunctions POSTGIS_PROJ_VERSION
public static final VersionFunctions POSTGIS_RASTER_LIB_VERSION
public static final VersionFunctions POSTGIS_SCRIPTS_BUILD_DATE
public static final VersionFunctions POSTGIS_SCRIPTS_INSTALLED
public static final VersionFunctions POSTGIS_SCRIPTS_RELEASED
public static final VersionFunctions POSTGIS_SVN_VERSION
public static final VersionFunctions POSTGIS_VERSION
public static VersionFunctions[] values()
for (VersionFunctions c : VersionFunctions.values()) System.out.println(c);
public static VersionFunctions 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 © 2024. All rights reserved.