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

com.sksamuel.elastic4s.handlers.fields.BinaryFieldBuilderFn.scala Maven / Gradle / Ivy

package com.sksamuel.elastic4s.handlers.fields

import com.sksamuel.elastic4s.fields.BinaryField
import com.sksamuel.elastic4s.json.{XContentBuilder, XContentFactory}

object BinaryFieldBuilderFn {
  def toField(name: String, values: Map[String, Any]): BinaryField =
    BinaryField(
      name,
      values.get("doc_values").map(_.asInstanceOf[Boolean]),
      values.get("store").map(_.asInstanceOf[Boolean])
    )

  def build(field: BinaryField): XContentBuilder = {
    val builder = XContentFactory.jsonBuilder()
    builder.field("type", field.`type`)
    field.docValues.foreach(builder.field("doc_values", _))
    field.store.foreach(builder.field("store", _))
    builder.endObject()
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy