Package org.bson.codecs
Class BsonJavaScriptWithScopeCodec
java.lang.Object
org.bson.codecs.BsonJavaScriptWithScopeCodec
- All Implemented Interfaces:
- Codec<BsonJavaScriptWithScope>,- Decoder<BsonJavaScriptWithScope>,- Encoder<BsonJavaScriptWithScope>
A Codec for 
BsonJavaScriptWithScope instances.- Since:
- 3.0
- 
Constructor SummaryConstructorsConstructorDescriptionBsonJavaScriptWithScopeCodec(Codec<BsonDocument> documentCodec) Construct a new instance with the given codec to use for the nested document
- 
Method SummaryModifier and TypeMethodDescriptiondecode(BsonReader bsonReader, DecoderContext decoderContext) Decodes a BSON value from the given reader into an instance of the type parameterT.voidencode(BsonWriter writer, BsonJavaScriptWithScope codeWithScope, EncoderContext encoderContext) Encode an instance of the type parameterTinto a BSON value.Returns the Class instance that this encodes.
- 
Constructor Details- 
BsonJavaScriptWithScopeCodecConstruct a new instance with the given codec to use for the nested document- Parameters:
- documentCodec- the non-null codec for the nested document
 
 
- 
- 
Method Details- 
decodeDescription copied from interface:DecoderDecodes a BSON value from the given reader into an instance of the type parameterT.- Specified by:
- decodein interface- Decoder<BsonJavaScriptWithScope>
- Parameters:
- bsonReader- the BSON reader
- decoderContext- the decoder context
- Returns:
- an instance of the type parameter T.
 
- 
encodepublic void encode(BsonWriter writer, BsonJavaScriptWithScope codeWithScope, EncoderContext encoderContext) Description copied from interface:EncoderEncode an instance of the type parameterTinto a BSON value.- Specified by:
- encodein interface- Encoder<BsonJavaScriptWithScope>
- Parameters:
- writer- the BSON writer to encode into
- codeWithScope- the value to encode
- encoderContext- the encoder context
 
- 
getEncoderClassDescription copied from interface:EncoderReturns the Class instance that this encodes. This is necessary because Java does not reify generic types.- Specified by:
- getEncoderClassin interface- Encoder<BsonJavaScriptWithScope>
- Returns:
- the Class instance that this encodes.
 
 
-