Package org.bson.codecs
Class Decimal128Codec
- java.lang.Object
-
- org.bson.codecs.Decimal128Codec
-
- All Implemented Interfaces:
Codec<Decimal128>,Decoder<Decimal128>,Encoder<Decimal128>
public final class Decimal128Codec extends Object implements Codec<Decimal128>
Encodes and decodesDecimal128objects.- Since:
- 3.4
-
-
Constructor Summary
Constructors Constructor Description Decimal128Codec()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Decimal128decode(BsonReader reader, DecoderContext decoderContext)Decodes a BSON value from the given reader into an instance of the type parameterT.voidencode(BsonWriter writer, Decimal128 value, EncoderContext encoderContext)Encode an instance of the type parameterTinto a BSON value.Class<Decimal128>getEncoderClass()Returns the Class instance that this encodes.
-
-
-
Method Detail
-
decode
public Decimal128 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<Decimal128>- Parameters:
reader- the BSON readerdecoderContext- the decoder context- Returns:
- an instance of the type parameter
T.
-
encode
public void encode(BsonWriter writer, Decimal128 value, EncoderContext encoderContext)
Description copied from interface:EncoderEncode an instance of the type parameterTinto a BSON value.- Specified by:
encodein interfaceEncoder<Decimal128>- Parameters:
writer- the BSON writer to encode intovalue- the value to encodeencoderContext- the encoder context
-
getEncoderClass
public Class<Decimal128> 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<Decimal128>- Returns:
- the Class instance that this encodes.
-
-