public class LineStringCodec extends Object implements Codec<LineString>
Constructor and Description |
---|
LineStringCodec(CodecRegistry registry)
Constructs an instance.
|
Modifier and Type | Method and Description |
---|---|
LineString |
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,
LineString value,
EncoderContext encoderContext)
Encode an instance of the type parameter
T into a BSON value. |
Class<LineString> |
getEncoderClass()
Returns the Class instance that this encodes.
|
public LineStringCodec(CodecRegistry registry)
registry
- the registrypublic void encode(BsonWriter writer, LineString value, EncoderContext encoderContext)
Encoder
T
into a BSON value.encode
in interface Encoder<LineString>
writer
- the BSON writer to encode intovalue
- the value to encodeencoderContext
- the encoder contextpublic Class<LineString> getEncoderClass()
Encoder
getEncoderClass
in interface Encoder<LineString>
public LineString decode(BsonReader reader, DecoderContext decoderContext)
Decoder
T
.decode
in interface Decoder<LineString>
reader
- the BSON readerdecoderContext
- the decoder contextT
.