Package oracle.pgx.api.admin
Enum StartupLogEntryItem
- java.lang.Object
-
- java.lang.Enum<StartupLogEntryItem>
-
- oracle.pgx.api.admin.StartupLogEntryItem
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<StartupLogEntryItem>
public enum StartupLogEntryItem extends java.lang.Enum<StartupLogEntryItem>
A list of each version info that got display on the console when the shell starts
-
-
Enum Constant Summary
Enum Constants Enum Constant Description API_VERSION
pgx server API versionPGQL_VERSION
pgx PGQL versionSERVER_VERSION
pgx server versionSHELL_VERSION
pgx shell version
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method 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.
-
-
-
Enum Constant Detail
-
SHELL_VERSION
public static final StartupLogEntryItem SHELL_VERSION
pgx shell version
-
SERVER_VERSION
public static final StartupLogEntryItem SERVER_VERSION
pgx server version
-
API_VERSION
public static final StartupLogEntryItem API_VERSION
pgx server API version
-
PGQL_VERSION
public static final StartupLogEntryItem PGQL_VERSION
pgx PGQL version
-
-
Method Detail
-
values
public static StartupLogEntryItem[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (StartupLogEntryItem c : StartupLogEntryItem.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static StartupLogEntryItem valueOf(java.lang.String name)
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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-