public enum DseProtocolFeature extends Enum<DseProtocolFeature> implements com.datastax.oss.driver.internal.core.ProtocolFeature
DseProtocolVersion
,
DefaultProtocolFeature
Enum Constant and Description |
---|
CONTINUOUS_PAGING
The ability to execute continuous paging requests.
|
Modifier and Type | Method and Description |
---|---|
static DseProtocolFeature |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DseProtocolFeature[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DseProtocolFeature CONTINUOUS_PAGING
ContinuousSession
public static DseProtocolFeature[] values()
for (DseProtocolFeature c : DseProtocolFeature.values()) System.out.println(c);
public static DseProtocolFeature 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 © 2017–2019. All rights reserved.