Package oracle.jdbc
Enum Class DatabaseFunction
- All Implemented Interfaces:
Serializable,Comparable<DatabaseFunction>,Constable
Database operation/function enumeration.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescription -
Method Summary
Modifier and TypeMethodDescriptionshortgetCode()Gets the database function code.Gets the database function description.static DatabaseFunctionReturns the enum constant of this class with the specified name.static DatabaseFunctionvalueOfFunctionCode(short code) Gets the DatabaseFunction by function codestatic DatabaseFunction[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
OPEN_CURSOR
-
FETCH_ROW
-
CLOSE_CURSOR
-
LOGOFF
-
AUTO_COMMIT_ON
-
AUTO_COMMIT_OFF
-
COMMIT
-
ROLLBACK
-
CANCEL_OPERATION
-
DESCRIBE_ARRAY
-
GET_VERSION
-
OSTART
-
OSTOP
-
DISTRIBUTED_TRANS_MGR_RPC
-
FAST_UPI_CALLS
-
OSQL7
-
OEXFEN
-
LOGON_CHALLENGE_RESPONSE_2
-
LOGON_CHALLENGE_RESPONSE_1
-
EXECUTE_QUERY
-
LOB_FILE_CALL
-
DESCRIBE_QUERY_CALL
-
TRANSACTION_START
-
TRANSACTION_COMMIT
-
CLOSE_ALL_CURSOR
-
SESSION_SWITCH_V8
-
DESCRIBE_ANY_V8
-
AUTH_CALL
-
SESSION_KEY
-
CANCEL_ALL
-
KERNEL_PROGRAMMATIC_NOTIFICATION
-
TRACING_MESSAGE
-
PARAMETER_PUT_SPFILE
-
PING
-
KEY_VALUE
-
EXTENSIBLE_SECURITY_SESSION_CREATE
-
EXTENSIBLE_SECURITY_SESSION_ROUNDTRIP
-
EXTENSIBLE_SECURITY_SESSION_PIGGYBACK
-
ADVANCED_QUEUING_ENQUEUE
-
ADVANCED_QUEUING_DEQUEUE_V8
-
ADVANCED_QUEUING_GET_PROPAGATION_STATUS
-
ADVANCED_QUEUING_LISTEN
-
ADVANCED_QUEUING_ARRAY_ENQUEUE_DEQUEUE
-
ADVANCED_QUEUING_SESSION_GET_RPC_1
-
ADVANCED_QUEUING_SESSION_GET_RPC_2
-
SESSION_STATE_TEMPLATE
-
CLIENT_QUERY_CACHE_STATS_UPDATE
-
CLIENT_QUERY_CACHE_IDS
-
XS_NAMESPACE_OPS
-
XS_NAMESPACE_OP
-
XS_STATE_SYNC_OP
-
XS_ATTACH_SESSION
-
XS_CREATE_SESSION
-
XS_DETACH_SESSION
-
XS_DESTROY_SESSION
-
XS_SET_SESSION_PARAMETER
-
SESSION_STATE_OPS
-
APP_REPLAY
-
ADVANCED_QUEUING_SHARED_ENQUEUE
-
ADVANCED_QUEUING_SHARED_DEQUEUE
-
ADVANCED_QUEUING_12C_EMON_DEQUEUE
-
DB12C_NOTIFICATION_RCV
-
CHUNCK_INFO
-
CLIENT_FEATURES
-
DBNS_SAGAS
-
DIRECT_PATH_PREPARE
-
DIRECT_PATH_MISC_OP
-
DIRECT_PATH_LOAD_STREAM
-
PIPELINE_PIGGYBACK_BEGIN
-
PIPELINE_END
-
PIPELINE_PIGGYBACK_OP
-
TTC_DTY_ROUNDTRIP
-
TTC_PRO_ROUNDTRIP
-
-
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
-
valueOfFunctionCode
Gets the DatabaseFunction by function code- Parameters:
code- the database function code- Returns:
- the matching DatabaseFunction
-
getCode
public short getCode()Gets the database function code.- Returns:
- the code
-
getDescription
Gets the database function description.- Returns:
- the description
-