Class GeometryCollectionCodec
- java.lang.Object
-
- com.mongodb.client.model.geojson.codecs.GeometryCollectionCodec
-
- All Implemented Interfaces:
Codec<GeometryCollection>,Decoder<GeometryCollection>,Encoder<GeometryCollection>
public class GeometryCollectionCodec extends Object
A Codec for a GeoJSON GeometryCollection.- Since:
- 3.1
-
-
Constructor Summary
Constructors Constructor Description GeometryCollectionCodec(CodecRegistry registry)Constructs an instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Tdecode(BsonReader reader, DecoderContext decoderContext)Decodes a BSON value from the given reader into an instance of the type parameterT.voidencode(BsonWriter writer, T value, EncoderContext encoderContext)Encode an instance of the type parameterTinto a BSON value.Class<T>getEncoderClass()Returns the Class instance that this encodes.
-
-
-
Constructor Detail
-
GeometryCollectionCodec
public GeometryCollectionCodec(CodecRegistry registry)
Constructs an instance.- Parameters:
registry- the registry
-
-
Method Detail
-
encode
public void encode(BsonWriter writer, T value, EncoderContext encoderContext)
Description copied from interface:EncoderEncode an instance of the type parameterTinto a BSON value.
-
decode
public T decode(BsonReader reader, DecoderContext decoderContext)
Description copied from interface:DecoderDecodes a BSON value from the given reader into an instance of the type parameterT.
-
getEncoderClass
public Class<T> getEncoderClass()
Description copied from interface:EncoderReturns the Class instance that this encodes. This is necessary because Java does not reify generic types.- Specified by:
getEncoderClassin interfaceEncoder<T extends Geometry>- Returns:
- the Class instance that this encodes.
-
-