public enum GoraOperation extends Enum<GoraOperation>
Enum Constant and Description |
---|
CREATE_SCHEMA
Gora "create schema" operation
|
DELETE
Gora "delete" operation
|
DELETE_BY_QUERY
Gora "deleteByQuery" operation
|
DELETE_SCHEMA
Gora "delete schema" operation
|
GET
Gora fetch/"get" operation
|
GET_SCHEMA_NAME
Gora "get schema name" operation
|
PUT
Gora "put" operation
|
QUERY
Gora "query" operation
|
SCHEMA_EXIST
Gora "schemaExists" operation
|
Modifier and Type | Method and Description |
---|---|
static GoraOperation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GoraOperation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GoraOperation PUT
public static final GoraOperation GET
public static final GoraOperation DELETE
public static final GoraOperation GET_SCHEMA_NAME
public static final GoraOperation DELETE_SCHEMA
public static final GoraOperation CREATE_SCHEMA
public static final GoraOperation QUERY
public static final GoraOperation DELETE_BY_QUERY
public static final GoraOperation SCHEMA_EXIST
public final String value
public static GoraOperation[] values()
for (GoraOperation c : GoraOperation.values()) System.out.println(c);
public static GoraOperation 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 nullApache Camel