|
Oracle® Database JDBC Java API Reference 11g Release 2 ("11.2.0.0.1-Beta-1") BETA E13995-01 |
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object
java.lang.Enum<TableChangeDescription.TableOperation>
oracle.jdbc.dcn.TableChangeDescription.TableOperation
public static enum TableChangeDescription.TableOperation
Enum Constant Summary | |
---|---|
ALL_ROWS The table is completely invalidated and row level information isn't available. |
|
ALTER Alter table operation (DDL). |
|
DELETE Delete operation (DML). |
|
DROP Drop table opersation (DDL). |
|
INSERT Insert operation (DML). |
|
UPDATE Update operation (DML). |
Method Summary | |
---|---|
int |
getCode() Implementation detail (for internal use only). |
static java.util.EnumSet<TableChangeDescription.TableOperation> |
getTableOperations(int opcode) Implementation detail (for internal use only). |
static TableChangeDescription.TableOperation |
valueOf(java.lang.String name) Returns the enum constant of this type with the specified name. |
static TableChangeDescription.TableOperation[] |
values() Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
compareTo, equals, 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 TableChangeDescription.TableOperation ALL_ROWS
DCN_NOTIFY_ROWIDS
option hasn't been turned on during registration, then all events will have this OPERATION_ALL_ROWS
flag on. It can also happen in situations where too many rows have changed and it would be too expensive for the server to send the list of them..public static final TableChangeDescription.TableOperation INSERT
public static final TableChangeDescription.TableOperation UPDATE
public static final TableChangeDescription.TableOperation DELETE
public static final TableChangeDescription.TableOperation ALTER
public static final TableChangeDescription.TableOperation DROP
Method Detail |
---|
public static TableChangeDescription.TableOperation[] values()
for (TableChangeDescription.TableOperation c : TableChangeDescription.TableOperation.values()) System.out.println(c);
public static TableChangeDescription.TableOperation 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 final int getCode()
public static final java.util.EnumSet<TableChangeDescription.TableOperation> getTableOperations(int opcode)
|
Oracle® Database JDBC Java API Reference 11g Release 2 ("11.2.0.0.1-Beta-1") BETA E13995-01 |
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |