public class ScanWithIndex extends Scan
Scan.Ordering
Constructor and Description |
---|
ScanWithIndex(Key indexKey)
Deprecated.
As of release 3.6.0. Will be removed in release 5.0.0. Use
Scan.newBuilder() instead |
ScanWithIndex(ScanWithIndex scanWithIndex)
Deprecated.
As of release 3.6.0. Will be removed in release 5.0.0. Use
Scan.newBuilder(Scan) instead |
Modifier and Type | Method and Description |
---|---|
boolean |
equals(java.lang.Object o)
Indicates whether some other object is "equal to" this object.
|
ScanWithIndex |
forNamespace(java.lang.String namespace)
Deprecated.
As of release 3.6.0. Will be removed in release 5.0.0. Use the setter method of the
Scan builder instead; to create a Scan builder, use
Scan.newBuilder() |
ScanWithIndex |
forTable(java.lang.String tableName)
Deprecated.
As of release 3.6.0. Will be removed in release 5.0.0. Use the setter method of the
Scan builder instead; to create a Scan builder, use
Scan.newBuilder() |
int |
hashCode() |
java.lang.String |
toString() |
ScanWithIndex |
withConsistency(Consistency consistency)
Deprecated.
As of release 3.6.0. Will be removed in release 5.0.0. Use the setter method of the
Scan builder instead; to create a Scan builder, use
Scan.newBuilder() |
ScanWithIndex |
withEnd(Key clusteringKey)
Deprecated.
Unsupported operation.
|
ScanWithIndex |
withEnd(Key clusteringKey,
boolean inclusive)
Deprecated.
Unsupported operation.
|
ScanWithIndex |
withLimit(int limit)
Deprecated.
As of release 3.6.0. Will be removed in release 5.0.0. Use the setter method of the
Scan builder instead; to create a Scan builder, use
Scan.newBuilder() |
ScanWithIndex |
withOrdering(Scan.Ordering ordering)
Deprecated.
Unsupported operation.
|
ScanWithIndex |
withProjection(java.lang.String projection)
Deprecated.
As of release 3.6.0. Will be removed in release 5.0.0. Use the setter method of the
Scan builder instead; to create a Scan builder, use
Scan.newBuilder() |
ScanWithIndex |
withProjections(java.util.Collection<java.lang.String> projections)
Deprecated.
As of release 3.6.0. Will be removed in release 5.0.0. Use the setter method of the
Scan builder instead; to create a Scan builder, use
Scan.newBuilder() |
ScanWithIndex |
withStart(Key clusteringKey)
Deprecated.
Unsupported operation.
|
ScanWithIndex |
withStart(Key clusteringKey,
boolean inclusive)
Deprecated.
Unsupported operation.
|
accept, getEndClusteringKey, getEndInclusive, getLimit, getOrderings, getStartClusteringKey, getStartInclusive, newBuilder, newBuilder
clearProjections, getProjections
forFullTableName, forNamespace, forTable, getClusteringKey, getConsistency, getPartitionKey
@Deprecated public ScanWithIndex(Key indexKey)
Scan.newBuilder()
insteadindexKey
- an index key@Deprecated public ScanWithIndex(ScanWithIndex scanWithIndex)
Scan.newBuilder(Scan)
insteadscanWithIndex
- a ScanWithIndex@Deprecated public ScanWithIndex withStart(Key clusteringKey)
@Deprecated public ScanWithIndex withStart(Key clusteringKey, boolean inclusive)
@Deprecated public ScanWithIndex withEnd(Key clusteringKey)
@Deprecated public ScanWithIndex withEnd(Key clusteringKey, boolean inclusive)
@Deprecated public ScanWithIndex withOrdering(Scan.Ordering ordering)
withOrdering
in class Scan
ordering
- a scan orderingjava.lang.UnsupportedOperationException
- always@Deprecated public ScanWithIndex withLimit(int limit)
Scan.newBuilder()
Scan
@Deprecated public ScanWithIndex forNamespace(java.lang.String namespace)
Scan.newBuilder()
Operation
forNamespace
in class Scan
namespace
- target namespace for this operation@Deprecated public ScanWithIndex forTable(java.lang.String tableName)
Scan.newBuilder()
Operation
@Deprecated public ScanWithIndex withConsistency(Consistency consistency)
Scan.newBuilder()
Operation
withConsistency
in class Scan
consistency
- consistency level to set@Deprecated public ScanWithIndex withProjection(java.lang.String projection)
Scan.newBuilder()
Selection
withProjection
in class Scan
projection
- a column name to project@Deprecated public ScanWithIndex withProjections(java.util.Collection<java.lang.String> projections)
Scan.newBuilder()
Selection
withProjections
in class Scan
projections
- a collection of the column names to projectpublic boolean equals(java.lang.Object o)
Scan
Scan
and