All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.chengpohi.api.dsl.AnalyzeDSL.scala Maven / Gradle / Ivy

The newest version!
package com.github.chengpohi.api.dsl

import org.elasticsearch.action.admin.indices.analyze.AnalyzeRequestBuilder

/**
  * elasticdsl
  * Created by chengpohi on 6/28/16.
  */
trait AnalyzeDSL extends DSLDefinition {
  case object analysis {
    def text(text: String): AnalyzeRequestDefinition = {
      val analyzeRequestBuilder: AnalyzeRequestBuilder = indicesClient.prepareAnalyze(text)
      AnalyzeRequestDefinition(analyzeRequestBuilder)
    }
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy