Packages

case class SearchRowLocation(field: String, term: String, pos: Int, start: Int, end: Int, arrayPositions: Option[Seq[Int]]) extends Product with Serializable

An FTS result row location indicates at which position a given term occurs inside a given field. In case the field is an array, arrayPositions will indicate which index/indices in the array contain the term.

Since

1.0.0

Linear Supertypes
Serializable, Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. SearchRowLocation
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new SearchRowLocation(field: String, term: String, pos: Int, start: Int, end: Int, arrayPositions: Option[Seq[Int]])

Value Members

  1. val arrayPositions: Option[Seq[Int]]
  2. val end: Int
  3. val field: String
  4. val pos: Int
  5. val start: Int
  6. val term: String