Package com.surrealdb
Class RecordIdRange
java.lang.Object
com.surrealdb.RecordIdRange
Represents a range of record IDs on a table for range queries (e.g.
select/update/delete/upsert over IDs in [start..end] or unbounded on either
side).
Use Id.from(long), Id.from(String), or
Id.from(java.util.UUID) for bounds. Pass null for start or
end to make that bound unbounded.
-
Constructor Summary
ConstructorsConstructorDescriptionRecordIdRange(String table, Id start, Id end) Creates a range over the given table with optional start and end bounds. -
Method Summary
-
Constructor Details
-
RecordIdRange
-
-
Method Details
-
getTable
-
getStart
Lower bound (inclusive), ornullif unbounded. -
getEnd
Upper bound (inclusive), ornullif unbounded.
-