Serializable, Comparable<AdapterRequestType>public enum AdapterRequestType extends Enum<AdapterRequestType>
| Enum Constant | Description |
|---|---|
CREATE_VIRTUAL_SCHEMA |
|
DROP_VIRTUAL_SCHEMA |
|
GET_CAPABILITIES |
|
PUSHDOWN |
|
REFRESH |
|
SET_PROPERTIES |
| Modifier and Type | Method | Description |
|---|---|---|
static AdapterRequestType |
valueOf(String name) |
Returns the enum constant of this type with the specified name.
|
static AdapterRequestType[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AdapterRequestType CREATE_VIRTUAL_SCHEMA
public static final AdapterRequestType DROP_VIRTUAL_SCHEMA
public static final AdapterRequestType REFRESH
public static final AdapterRequestType SET_PROPERTIES
public static final AdapterRequestType GET_CAPABILITIES
public static final AdapterRequestType PUSHDOWN
public static AdapterRequestType[] values()
for (AdapterRequestType c : AdapterRequestType.values()) System.out.println(c);
public static AdapterRequestType 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 © 2019. All rights reserved.