Package org.bson.codecs
Class BsonDateTimeCodec
- java.lang.Object
-
- org.bson.codecs.BsonDateTimeCodec
-
- All Implemented Interfaces:
Codec<BsonDateTime>,Decoder<BsonDateTime>,Encoder<BsonDateTime>
public class BsonDateTimeCodec extends Object implements Codec<BsonDateTime>
A Codec for BsonDateTime instances.- Since:
- 3.0
-
-
Constructor Summary
Constructors Constructor Description BsonDateTimeCodec()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description BsonDateTimedecode(BsonReader reader, DecoderContext decoderContext)Decodes a BSON value from the given reader into an instance of the type parameterT.voidencode(BsonWriter writer, BsonDateTime value, EncoderContext encoderContext)Encode an instance of the type parameterTinto a BSON value.Class<BsonDateTime>getEncoderClass()Returns the Class instance that this encodes.
-
-
-
Method Detail
-
decode
public BsonDateTime decode(BsonReader reader, DecoderContext decoderContext)
Description copied from interface:DecoderDecodes a BSON value from the given reader into an instance of the type parameterT.- Specified by:
decodein interfaceDecoder<BsonDateTime>- Parameters:
reader- the BSON readerdecoderContext- the decoder context- Returns:
- an instance of the type parameter
T.
-
encode
public void encode(BsonWriter writer, BsonDateTime value, EncoderContext encoderContext)
Description copied from interface:EncoderEncode an instance of the type parameterTinto a BSON value.- Specified by:
encodein interfaceEncoder<BsonDateTime>- Parameters:
writer- the BSON writer to encode intovalue- the value to encodeencoderContext- the encoder context
-
getEncoderClass
public Class<BsonDateTime> getEncoderClass()
Description copied from interface:EncoderReturns the Class instance that this encodes. This is necessary because Java does not reify generic types.- Specified by:
getEncoderClassin interfaceEncoder<BsonDateTime>- Returns:
- the Class instance that this encodes.
-
-