Package org.elasticsearch.common.geo
Enum Class GeoDistance
- All Implemented Interfaces:
Serializable
,Comparable<GeoDistance>
,Constable
,Writeable
Geo distance calculation.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
Nested classes/interfaces inherited from interface org.elasticsearch.common.io.stream.Writeable
Writeable.Reader<V>, Writeable.Writer<V>
-
Enum Constant Summary
-
Method Summary
Modifier and TypeMethodDescriptiondouble
calculate(double srcLat, double srcLon, double dstLat, double dstLon, DistanceUnit unit)
compute the distance between two points using the selected algorithm (PLANE, ARC)static GeoDistance
fromString(String name)
Get aGeoDistance
according to a given name.static GeoDistance
Creates a GeoDistance instance from an input streamstatic GeoDistance
Returns the enum constant of this class with the specified name.static GeoDistance[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.void
writeTo(StreamOutput out)
Writes an instance of a GeoDistance object to an output stream
-
Enum Constant Details
-
PLANE
-
ARC
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-
readFromStream
Creates a GeoDistance instance from an input stream- Throws:
IOException
-
writeTo
Writes an instance of a GeoDistance object to an output stream- Specified by:
writeTo
in interfaceWriteable
- Throws:
IOException
-
fromString
Get aGeoDistance
according to a given name. Valid values are- plane for
GeoDistance.PLANE
- arc for
GeoDistance.ARC
- Parameters:
name
- name of theGeoDistance
- Returns:
- a
GeoDistance
- plane for
-
calculate
public double calculate(double srcLat, double srcLon, double dstLat, double dstLon, DistanceUnit unit)compute the distance between two points using the selected algorithm (PLANE, ARC)
-