public enum StartupLogEntryItem extends java.lang.Enum<StartupLogEntryItem>
| Enum Constant and Description |
|---|
API_VERSION
pgx server API version
|
PGQL_VERSION
pgx PGQL version
|
SERVER_VERSION
pgx server version
|
SHELL_VERSION
pgx shell version
|
| Modifier and Type | Method and Description |
|---|---|
static StartupLogEntryItem |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static StartupLogEntryItem[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StartupLogEntryItem API_VERSION
public static final StartupLogEntryItem PGQL_VERSION
public static final StartupLogEntryItem SERVER_VERSION
public static final StartupLogEntryItem SHELL_VERSION
public static StartupLogEntryItem valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic static StartupLogEntryItem[] values()
for (StartupLogEntryItem c : StartupLogEntryItem.values()) System.out.println(c);