|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<ServerVersion>
org.postgresql.core.ServerVersion
public enum ServerVersion
Enumeration for PostgreSQL versions.
| Enum Constant Summary | |
|---|---|
INVALID
|
|
v6_4
|
|
v6_5
|
|
v7_0
|
|
v7_1
|
|
v7_2
|
|
v7_3
|
|
v7_4
|
|
v8_0
|
|
v8_1
|
|
v8_2
|
|
v8_3
|
|
v8_4
|
|
v9_0
|
|
v9_1
|
|
v9_2
|
|
v9_3
|
|
v9_4
|
|
v9_5
|
|
| Method Summary | |
|---|---|
static Version |
from(String version)
Attempt to parse the server version string into an XXYYZZ form version number into a Version. |
int |
getVersionNum()
Get a machine-readable version number. |
static ServerVersion |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static ServerVersion[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final ServerVersion INVALID
public static final ServerVersion v6_4
public static final ServerVersion v6_5
public static final ServerVersion v7_0
public static final ServerVersion v7_1
public static final ServerVersion v7_2
public static final ServerVersion v7_3
public static final ServerVersion v7_4
public static final ServerVersion v8_0
public static final ServerVersion v8_1
public static final ServerVersion v8_2
public static final ServerVersion v8_3
public static final ServerVersion v8_4
public static final ServerVersion v9_0
public static final ServerVersion v9_1
public static final ServerVersion v9_2
public static final ServerVersion v9_3
public static final ServerVersion v9_4
public static final ServerVersion v9_5
| Method Detail |
|---|
public static ServerVersion[] values()
for (ServerVersion c : ServerVersion.values()) System.out.println(c);
public static ServerVersion valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is nullpublic int getVersionNum()
getVersionNum in interface Versionpublic static Version from(String version)
Version.
If the specified version cannot be parsed, the
Version.getVersionNum() will return 0.
version - version in numeric XXYYZZ form, e.g. "090401" for 9.4.1
Version representing the specified version string.
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||