Package org.postgresql.core
Enum Class ServerVersion
- All Implemented Interfaces:
Serializable
,Comparable<ServerVersion>
,Constable
,Version
Enumeration for PostgreSQL versions.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum Constants -
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic Version
Attempt to parse the server version string into an XXYYZZ form version number into aVersion
.int
Get a machine-readable version number.(package private) static int
parseServerVersionStr
(String serverVersion) Attempt to parse the server version string into an XXYYZZ form version number.static ServerVersion
Returns the enum constant of this class with the specified name.static ServerVersion[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
INVALID
-
v8_2
-
v8_3
-
v8_4
-
v9_0
-
v9_1
-
v9_2
-
v9_3
-
v9_4
-
v9_5
-
v9_6
-
v10
-
v11
-
v12
-
v13
-
v14
-
v15
-
v16
-
-
Field Details
-
version
private final int version
-
-
Constructor Details
-
ServerVersion
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-
getVersionNum
public int getVersionNum()Get a machine-readable version number.- Specified by:
getVersionNum
in interfaceVersion
- Returns:
- the version in numeric XXYYZZ form, e.g. 90401 for 9.4.1
-
from
Attempt to parse the server version string into an XXYYZZ form version number into a
Version
.If the specified version cannot be parsed, the
Version.getVersionNum()
will return 0.- Parameters:
version
- version in numeric XXYYZZ form, e.g. "090401" for 9.4.1- Returns:
- a
Version
representing the specified version string.
-
parseServerVersionStr
Attempt to parse the server version string into an XXYYZZ form version number.
Returns 0 if the version could not be parsed.
Returns minor version 0 if the minor version could not be determined, e.g. devel or beta releases.
If a single major part like 90400 is passed, it's assumed to be a pre-parsed version and returned verbatim. (Anything equal to or greater than 10000 is presumed to be this form).
The yy or zz version parts may be larger than 99. A NumberFormatException is thrown if a version part is out of range.
- Parameters:
serverVersion
- server version in a XXYYZZ form- Returns:
- server version in number form
- Throws:
NumberFormatException
-