public class BSONTimestampCodec extends java.lang.Object implements Codec<BSONTimestamp>
| 构造器和说明 |
|---|
BSONTimestampCodec() |
| 限定符和类型 | 方法和说明 |
|---|---|
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. |
java.lang.Class<BSONTimestamp> |
getEncoderClass()
Returns the Class instance that this encodes.
|
public void encode(BsonWriter writer, BSONTimestamp value, EncoderContext encoderContext)
EncoderT into a BSON value.encode 在接口中 Encoder<BSONTimestamp>writer - the BSON writer to encode intovalue - the value to encodeencoderContext - the encoder contextpublic BSONTimestamp decode(BsonReader reader, DecoderContext decoderContext)
DecoderT.decode 在接口中 Decoder<BSONTimestamp>reader - the BSON readerdecoderContext - the decoder contextT.public java.lang.Class<BSONTimestamp> getEncoderClass()
EncodergetEncoderClass 在接口中 Encoder<BSONTimestamp>