Interface SlicePredicates.Range
-
- Enclosing class:
- SlicePredicates
@Immutable public static interface SlicePredicates.Range
-
-
Field Summary
Fields Modifier and Type Field Description static SlicePredicates.Range
ALL
static java.nio.ByteBuffer
UNBOUND_END
static java.nio.ByteBuffer
UNBOUND_START
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description java.nio.ByteBuffer
end()
static java.nio.ByteBuffer
endOfColumnExcludingSentinels(byte[] columnName)
static java.nio.ByteBuffer
endOfColumnIncludingSentinels(byte[] columnName)
static SlicePredicates.Range
of(java.nio.ByteBuffer startInclusive, java.nio.ByteBuffer endInclusive)
static SlicePredicates.Range
singleColumn(byte[] columnName, long maxTimestampExclusive)
java.nio.ByteBuffer
start()
static java.nio.ByteBuffer
startOfColumn(byte[] columnName, long maxTimestampExclusive)
-
-
-
Field Detail
-
UNBOUND_START
static final java.nio.ByteBuffer UNBOUND_START
-
UNBOUND_END
static final java.nio.ByteBuffer UNBOUND_END
-
ALL
static final SlicePredicates.Range ALL
-
-
Method Detail
-
singleColumn
static SlicePredicates.Range singleColumn(byte[] columnName, long maxTimestampExclusive)
-
startOfColumn
static java.nio.ByteBuffer startOfColumn(byte[] columnName, long maxTimestampExclusive)
-
endOfColumnIncludingSentinels
static java.nio.ByteBuffer endOfColumnIncludingSentinels(byte[] columnName)
-
endOfColumnExcludingSentinels
static java.nio.ByteBuffer endOfColumnExcludingSentinels(byte[] columnName)
-
of
static SlicePredicates.Range of(java.nio.ByteBuffer startInclusive, java.nio.ByteBuffer endInclusive)
-
start
java.nio.ByteBuffer start()
-
end
java.nio.ByteBuffer end()
-
-