Packages

case class SearchRowLocation 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, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. SearchRowLocation
  2. Serializable
  3. Product
  4. Equals
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. def arrayPositions: Option[Seq[Int]]

    Contains the positions of the term within any elements, if applicable.

  2. def end: Int

    The end offset (in bytes) of the term in the field.

  3. def field: String
  4. def pos: Int

    The position of the term within the field, starting at 1.

  5. def productElementNames: Iterator[String]
    Definition Classes
    Product
  6. def productIterator: Iterator[Any]
    Definition Classes
    Product
  7. def start: Int

    The start offset (in bytes) of the term in the field.

  8. def term: String