Packages

package termvectors

Type Members

  1. case class FieldStatistics(sumDocFreq: Long, docCount: Long, sumTtf: Long) extends Product with Serializable
  2. case class MultiTermVectorsResponse(docs: Seq[TermVectorsResponse]) extends Product with Serializable
  3. trait TermVectorHandlers extends AnyRef
  4. case class TermVectors(fieldStatistics: FieldStatistics, terms: Map[String, Terms]) extends Product with Serializable
  5. case class TermVectorsResponse(index: String, type: String, id: String, version: Long, found: Boolean, took: Int, termVectors: Map[String, TermVectors]) extends Product with Serializable
  6. case class Terms(docFreq: Int, ttf: Int, score: Double, termFreq: Int, tokens: Seq[Token]) extends Product with Serializable
  7. case class Token(position: Int, startOffset: Int, endOffset: Int) extends Product with Serializable

Ungrouped