Package org.elasticsearch.common.geo
Enum Class GeometryParserFormat
- All Implemented Interfaces:
Serializable
,Comparable<GeometryParserFormat>
,Constable
Supported formats to read/write JSON geometries.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
-
Method Summary
Modifier and TypeMethodDescriptionabstract org.elasticsearch.geometry.Geometry
fromXContent(org.elasticsearch.geometry.utils.GeometryValidator validator, boolean coerce, boolean rightOrientation, org.elasticsearch.common.xcontent.XContentParser parser)
Parser JSON representation of a geometrystatic GeometryParserFormat
geometryFormat(org.elasticsearch.common.xcontent.XContentParser parser)
Returns a geometry parser format object that can parse and then serialize the object back to the same format.abstract org.elasticsearch.common.xcontent.XContentBuilder
toXContent(org.elasticsearch.geometry.Geometry geometry, org.elasticsearch.common.xcontent.XContentBuilder builder, org.elasticsearch.common.xcontent.ToXContent.Params params)
Serializes the geometry into its JSON representationstatic GeometryParserFormat
Returns the enum constant of this class with the specified name.static GeometryParserFormat[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
WKT
-
GEOJSON
-
-
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
-
toXContent
public abstract org.elasticsearch.common.xcontent.XContentBuilder toXContent(org.elasticsearch.geometry.Geometry geometry, org.elasticsearch.common.xcontent.XContentBuilder builder, org.elasticsearch.common.xcontent.ToXContent.Params params) throws IOExceptionSerializes the geometry into its JSON representation- Throws:
IOException
-
fromXContent
public abstract org.elasticsearch.geometry.Geometry fromXContent(org.elasticsearch.geometry.utils.GeometryValidator validator, boolean coerce, boolean rightOrientation, org.elasticsearch.common.xcontent.XContentParser parser) throws IOException, ParseExceptionParser JSON representation of a geometry- Throws:
IOException
ParseException
-
geometryFormat
public static GeometryParserFormat geometryFormat(org.elasticsearch.common.xcontent.XContentParser parser)Returns a geometry parser format object that can parse and then serialize the object back to the same format. This method automatically recognizes the format by examining the providedXContentParser
.
-