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

com.sksamuel.elastic4s.requests.searches.queries.geo.GeoDistance.scala Maven / Gradle / Ivy

There is a newer version: 8.15.4
Show newest version
package com.sksamuel.elastic4s.requests.searches.queries.geo

object GeoDistance {

  def valueOf(str: String): GeoDistance = str.toUpperCase match {
    case "PLANE" => Plane
    case "ARC"   => Arc
  }

  case object Arc   extends GeoDistance
  case object Plane extends GeoDistance
}

sealed trait GeoDistance




© 2015 - 2024 Weber Informatics LLC | Privacy Policy