Enum AlterSystemOperation
- java.lang.Object
-
- java.lang.Enum<AlterSystemOperation>
-
- net.sf.jsqlparser.statement.alter.AlterSystemOperation
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<AlterSystemOperation>
public enum AlterSystemOperation extends java.lang.Enum<AlterSystemOperation>
- See Also:
- ALTER SESSION
-
-
Enum Constant Summary
-
Field Summary
Fields Modifier and Type Field Description private java.lang.String
label
-
Constructor Summary
Constructors Modifier Constructor Description private
AlterSystemOperation(java.lang.String label)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AlterSystemOperation
from(java.lang.String operation)
java.lang.String
toString()
static AlterSystemOperation
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static AlterSystemOperation[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ARCHIVE_LOG
public static final AlterSystemOperation ARCHIVE_LOG
-
CHECKPOINT
public static final AlterSystemOperation CHECKPOINT
-
CHECK_DATAFILES
public static final AlterSystemOperation CHECK_DATAFILES
-
DUMP_ACTIVE_SESSION_HISTORY
public static final AlterSystemOperation DUMP_ACTIVE_SESSION_HISTORY
-
ENABLE_DISTRIBUTED_RECOVERY
public static final AlterSystemOperation ENABLE_DISTRIBUTED_RECOVERY
-
DISABLE_DISTRIBUTED_RECOVERY
public static final AlterSystemOperation DISABLE_DISTRIBUTED_RECOVERY
-
ENABLE_RESTRICTED_SESSION
public static final AlterSystemOperation ENABLE_RESTRICTED_SESSION
-
DISABLE_RESTRICTED_SESSION
public static final AlterSystemOperation DISABLE_RESTRICTED_SESSION
-
FLUSH
public static final AlterSystemOperation FLUSH
-
DISCONNECT_SESSION
public static final AlterSystemOperation DISCONNECT_SESSION
-
KILL_SESSION
public static final AlterSystemOperation KILL_SESSION
-
SWITCH
public static final AlterSystemOperation SWITCH
-
SUSPEND
public static final AlterSystemOperation SUSPEND
-
RESUME
public static final AlterSystemOperation RESUME
-
QUIESCE
public static final AlterSystemOperation QUIESCE
-
UNQUIESCE
public static final AlterSystemOperation UNQUIESCE
-
SHUTDOWN
public static final AlterSystemOperation SHUTDOWN
-
REGISTER
public static final AlterSystemOperation REGISTER
-
SET
public static final AlterSystemOperation SET
-
RESET
public static final AlterSystemOperation RESET
-
-
Method Detail
-
values
public static AlterSystemOperation[] 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 (AlterSystemOperation c : AlterSystemOperation.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AlterSystemOperation 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
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Enum<AlterSystemOperation>
-
from
public static AlterSystemOperation from(java.lang.String operation)
-
-