public enum CommonConnectorFeature extends Enum<CommonConnectorFeature> implements ConnectorFeature
| Enum Constant and Description |
|---|
DATA_SIZE_SAMPLING
Indicates that the connector supports data sampling for performance optimization purposes.
|
INDEXED_RECORDS
Indicates that the connector handles indexed records (i.e.
|
MAPPED_RECORDS
Indicates that the connector handles mapped records (i.e.
|
| Modifier and Type | Method and Description |
|---|---|
static CommonConnectorFeature |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CommonConnectorFeature[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CommonConnectorFeature INDEXED_RECORDS
public static final CommonConnectorFeature MAPPED_RECORDS
public static final CommonConnectorFeature DATA_SIZE_SAMPLING
public static CommonConnectorFeature[] values()
for (CommonConnectorFeature c : CommonConnectorFeature.values()) System.out.println(c);
public static CommonConnectorFeature 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–2021 DataStax. All rights reserved.