case class ScanTerm(term: Array[Byte], 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
Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ScanTerm
  2. Serializable
  3. Product
  4. Equals
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new ScanTerm(term: Array[Byte], 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.

Value Members

  1. val exclusive: Boolean
  2. def productElementNames: Iterator[String]
    Definition Classes
    Product
  3. def productIterator: Iterator[Any]
    Definition Classes
    Product
  4. val term: Array[Byte]