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