Package org.bson.codecs
Class CodeWithScopeCodec
- java.lang.Object
-
- org.bson.codecs.CodeWithScopeCodec
-
- All Implemented Interfaces:
Codec<CodeWithScope>,Decoder<CodeWithScope>,Encoder<CodeWithScope>
public class CodeWithScopeCodec extends Object implements Codec<CodeWithScope>
Encodes and decodesCodeWithScopeinstances.- Since:
- 3.0
-
-
Constructor Summary
Constructors Constructor Description CodeWithScopeCodec(Codec<Document> documentCodec)Creates a new CodeWithScopeCodec.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CodeWithScopedecode(BsonReader bsonReader, DecoderContext decoderContext)Decodes a BSON value from the given reader into an instance of the type parameterT.voidencode(BsonWriter writer, CodeWithScope codeWithScope, EncoderContext encoderContext)Encode an instance of the type parameterTinto a BSON value.Class<CodeWithScope>getEncoderClass()Returns the Class instance that this encodes.
-
-
-
Constructor Detail
-
CodeWithScopeCodec
public CodeWithScopeCodec(Codec<Document> documentCodec)
Creates a new CodeWithScopeCodec.- Parameters:
documentCodec- a Codec for encoding and decoding theCodeWithScope.getScope().
-
-
Method Detail
-
decode
public CodeWithScope decode(BsonReader bsonReader, 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<CodeWithScope>- Parameters:
bsonReader- the BSON readerdecoderContext- the decoder context- Returns:
- an instance of the type parameter
T.
-
encode
public void encode(BsonWriter writer, CodeWithScope codeWithScope, EncoderContext encoderContext)
Description copied from interface:EncoderEncode an instance of the type parameterTinto a BSON value.- Specified by:
encodein interfaceEncoder<CodeWithScope>- Parameters:
writer- the BSON writer to encode intocodeWithScope- the value to encodeencoderContext- the encoder context
-
getEncoderClass
public Class<CodeWithScope> 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<CodeWithScope>- Returns:
- the Class instance that this encodes.
-
-