Class GeoBounds
java.lang.Object
co.elastic.clients.elasticsearch._types.GeoBounds
- All Implemented Interfaces:
JsonpSerializable,TaggedUnion<GeoBounds.Kind,java.lang.Object>
@JsonpDeserializable public class GeoBounds extends java.lang.Object implements TaggedUnion<GeoBounds.Kind,java.lang.Object>, JsonpSerializable
A geo bounding box. It can be represented in various ways:
- as 4 top/bottom/left/right coordinates
- as 2 top_left / bottom_right points
- as 2 top_right / bottom_left points
- as a WKT bounding box
- See Also:
- API specification
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classGeoBounds.Builderstatic classGeoBounds.Kind -
Field Summary
Fields Modifier and Type Field Description static JsonpDeserializer<GeoBounds>_DESERIALIZER -
Method Summary
Modifier and Type Method Description java.lang.Object_get()GeoBounds.Kind_kind()Get the of the kind of variant held by this object.CoordsGeoBoundscoords()Get thecoordsvariant value.booleanisCoords()Is this variant instance of kindcoords?booleanisTlbr()Is this variant instance of kindtlbr?booleanisTrbl()Is this variant instance of kindtrbl?booleanisWkt()Is this variant instance of kindwkt?static GeoBoundsof(java.util.function.Function<GeoBounds.Builder,ObjectBuilder<GeoBounds>> fn)voidserialize(jakarta.json.stream.JsonGenerator generator, JsonpMapper mapper)TopLeftBottomRightGeoBoundstlbr()Get thetlbrvariant value.TopRightBottomLeftGeoBoundstrbl()Get thetrblvariant value.WktGeoBoundswkt()Get thewktvariant value.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Field Details
-
_DESERIALIZER
-
-
Method Details
-
_kind
Description copied from interface:TaggedUnionGet the of the kind of variant held by this object.- Specified by:
_kindin interfaceTaggedUnion<GeoBounds.Kind,java.lang.Object>- Returns:
- the variant kind
-
_get
public final java.lang.Object _get()- Specified by:
_getin interfaceTaggedUnion<GeoBounds.Kind,java.lang.Object>
-
of
public static GeoBounds of(java.util.function.Function<GeoBounds.Builder,ObjectBuilder<GeoBounds>> fn) -
isCoords
public boolean isCoords()Is this variant instance of kindcoords? -
coords
Get thecoordsvariant value.- Throws:
java.lang.IllegalStateException- if the current variant is not of thecoordskind.
-
isTlbr
public boolean isTlbr()Is this variant instance of kindtlbr? -
tlbr
Get thetlbrvariant value.- Throws:
java.lang.IllegalStateException- if the current variant is not of thetlbrkind.
-
isTrbl
public boolean isTrbl()Is this variant instance of kindtrbl? -
trbl
Get thetrblvariant value.- Throws:
java.lang.IllegalStateException- if the current variant is not of thetrblkind.
-
isWkt
public boolean isWkt()Is this variant instance of kindwkt? -
wkt
Get thewktvariant value.- Throws:
java.lang.IllegalStateException- if the current variant is not of thewktkind.
-
serialize
- Specified by:
serializein interfaceJsonpSerializable
-