Package org.bson.codecs
Class CodeWithScopeCodec
java.lang.Object
org.bson.codecs.CodeWithScopeCodec
- All Implemented Interfaces:
Codec<CodeWithScope>,Decoder<CodeWithScope>,Encoder<CodeWithScope>
Encodes and decodes
CodeWithScope instances.- Since:
- 3.0
-
Constructor Summary
ConstructorsConstructorDescriptionCodeWithScopeCodec(Codec<Document> documentCodec) Creates a new CodeWithScopeCodec. -
Method Summary
Modifier and TypeMethodDescriptiondecode(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.Returns the Class instance that this encodes.
-
Constructor Details
-
CodeWithScopeCodec
Creates a new CodeWithScopeCodec.- Parameters:
documentCodec- a Codec for encoding and decoding theCodeWithScope.getScope().
-
-
Method Details
-
decode
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
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
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.
-