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 ByteBuffer
UNBOUND_END
static ByteBuffer
UNBOUND_START
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description ByteBuffer
end()
static ByteBuffer
endOfColumnExcludingSentinels(byte[] columnName)
static ByteBuffer
endOfColumnIncludingSentinels(byte[] columnName)
static SlicePredicates.Range
of(ByteBuffer startInclusive, ByteBuffer endInclusive)
static SlicePredicates.Range
singleColumn(byte[] columnName, long maxTimestampExclusive)
ByteBuffer
start()
static ByteBuffer
startOfColumn(byte[] columnName, long maxTimestampExclusive)
-
-
-
Field Detail
-
UNBOUND_START
static final ByteBuffer UNBOUND_START
-
UNBOUND_END
static final ByteBuffer UNBOUND_END
-
ALL
static final SlicePredicates.Range ALL
-
-
Method Detail
-
singleColumn
static SlicePredicates.Range singleColumn(byte[] columnName, long maxTimestampExclusive)
-
startOfColumn
static ByteBuffer startOfColumn(byte[] columnName, long maxTimestampExclusive)
-
endOfColumnIncludingSentinels
static ByteBuffer endOfColumnIncludingSentinels(byte[] columnName)
-
endOfColumnExcludingSentinels
static ByteBuffer endOfColumnExcludingSentinels(byte[] columnName)
-
of
static SlicePredicates.Range of(ByteBuffer startInclusive, ByteBuffer endInclusive)
-
start
ByteBuffer start()
-
end
ByteBuffer end()
-
-