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 GridFSFile
decode(BsonReader reader, DecoderContext decoderContext)
Decodes a BSON value from the given reader into an instance of the type parameterT
.void
encode(BsonWriter writer, GridFSFile value, EncoderContext encoderContext)
Encode an instance of the type parameterT
into 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:Decoder
Decodes a BSON value from the given reader into an instance of the type parameterT
.- Specified by:
decode
in 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:Encoder
Encode an instance of the type parameterT
into a BSON value.- Specified by:
encode
in 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:Encoder
Returns the Class instance that this encodes. This is necessary because Java does not reify generic types.- Specified by:
getEncoderClass
in interfaceEncoder<GridFSFile>
- Returns:
- the Class instance that this encodes.
-
-