Package com.mongodb.client.gridfs.codecs
Class GridFSFileCodec
- java.lang.Object
 - 
- com.mongodb.client.gridfs.codecs.GridFSFileCodec
 
 
- 
- All Implemented Interfaces:
 Codec<GridFSFile>,Decoder<GridFSFile>,Encoder<GridFSFile>
public final class GridFSFileCodec extends Object implements Codec<GridFSFile>
A codec for GridFS Files- Since:
 - 3.3
 
 
- 
- 
Constructor Summary
Constructors Constructor Description GridFSFileCodec(CodecRegistry registry)Create a new instance 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description GridFSFiledecode(BsonReader reader, DecoderContext decoderContext)Decodes a BSON value from the given reader into an instance of the type parameterT.voidencode(BsonWriter writer, GridFSFile value, EncoderContext encoderContext)Encode an instance of the type parameterTinto a BSON value.Class<GridFSFile>getEncoderClass()Returns the Class instance that this encodes. 
 - 
 
- 
- 
Constructor Detail
- 
GridFSFileCodec
public GridFSFileCodec(CodecRegistry registry)
Create a new instance- Parameters:
 registry- the codec registry
 
 - 
 
- 
Method Detail
- 
decode
public GridFSFile 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<GridFSFile>- Parameters:
 reader- the BSON readerdecoderContext- the decoder context- Returns:
 - an instance of the type parameter 
T. 
 
- 
encode
public void encode(BsonWriter writer, GridFSFile value, EncoderContext encoderContext)
Description copied from interface:EncoderEncode an instance of the type parameterTinto a BSON value.- Specified by:
 encodein interfaceEncoder<GridFSFile>- Parameters:
 writer- the BSON writer to encode intovalue- the value to encodeencoderContext- the encoder context
 
- 
getEncoderClass
public Class<GridFSFile> 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<GridFSFile>- Returns:
 - the Class instance that this encodes.
 
 
 - 
 
 -