case class ScanTerm(term: String, exclusive: Boolean = false) extends Product with Serializable
A scan term identifies a point to scan from or to scan to.
- term
matches a particular document id pattern, such as "user_". Since it's represented as an Array[Byte] to support maximum() and minimum(), it's easiest to construct a ScanTerm via the methods in the companion object.
- exclusive
controls whether this term is inclusive or exclusive - defaults to false.
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- ScanTerm
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new ScanTerm(term: String, exclusive: Boolean = false)
- term
matches a particular document id pattern, such as "user_". Since it's represented as an Array[Byte] to support maximum() and minimum(), it's easiest to construct a ScanTerm via the methods in the companion object.
- exclusive
controls whether this term is inclusive or exclusive - defaults to false.