static enum IndexViewExample.Operation extends Enum<IndexViewExample.Operation>
Enum Constant and Description |
---|
BUILD_INDEX
Build an Index View.
|
DELETE_RECORD
Delete a record in primary DB and the related Index View records.
|
DROP_INDEX
Drop an Index View.
|
INSERT_RECORD
Insert a record into the primary DB and create an Index View record.
|
LOAD_DATA
Load record into Oracle NoSQL Database.
|
QUERY_RECORD
Query records in the primary DB.
|
SHOW_INDEX
Show all Index Views.
|
UPDATE_RECORD
Update a record in primary DB and the related Index View records.
|
Modifier and Type | Method and Description |
---|---|
static IndexViewExample.Operation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IndexViewExample.Operation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IndexViewExample.Operation LOAD_DATA
public static final IndexViewExample.Operation BUILD_INDEX
public static final IndexViewExample.Operation DROP_INDEX
public static final IndexViewExample.Operation INSERT_RECORD
public static final IndexViewExample.Operation UPDATE_RECORD
public static final IndexViewExample.Operation DELETE_RECORD
public static final IndexViewExample.Operation QUERY_RECORD
public static final IndexViewExample.Operation SHOW_INDEX
public static IndexViewExample.Operation[] values()
for (IndexViewExample.Operation c : IndexViewExample.Operation.values()) System.out.println(c);
public static IndexViewExample.Operation valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright (c) 2011, 2015 Oracle and/or its affiliates. All rights reserved.