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