public class GeometryCollectionCodec extends java.lang.Object implements Codec<GeometryCollection>
Modifier and Type | Field and Description |
---|---|
private CodecRegistry |
registry |
Constructor and Description |
---|
GeometryCollectionCodec(CodecRegistry registry)
Constructs an instance.
|
Modifier and Type | Method and Description |
---|---|
GeometryCollection |
decode(BsonReader reader,
DecoderContext decoderContext)
Decodes a BSON value from the given reader into an instance of the type parameter
T . |
void |
encode(BsonWriter writer,
GeometryCollection value,
EncoderContext encoderContext)
Encode an instance of the type parameter
T into a BSON value. |
private void |
encodeGeometry(BsonWriter writer,
Geometry geometry,
EncoderContext encoderContext) |
java.lang.Class<GeometryCollection> |
getEncoderClass()
Returns the Class instance that this encodes.
|
private final CodecRegistry registry
public GeometryCollectionCodec(CodecRegistry registry)
registry
- the registrypublic void encode(BsonWriter writer, GeometryCollection value, EncoderContext encoderContext)
Encoder
T
into a BSON value.encode
in interface Encoder<GeometryCollection>
writer
- the BSON writer to encode intovalue
- the value to encodeencoderContext
- the encoder contextprivate void encodeGeometry(BsonWriter writer, Geometry geometry, EncoderContext encoderContext)
public java.lang.Class<GeometryCollection> getEncoderClass()
Encoder
getEncoderClass
in interface Encoder<GeometryCollection>
public GeometryCollection decode(BsonReader reader, DecoderContext decoderContext)
Decoder
T
.decode
in interface Decoder<GeometryCollection>
reader
- the BSON readerdecoderContext
- the decoder contextT
.