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>
@Deprecated(since="2021-05-27")
public final class GridFSFileCodec
extends Object
implements Codec<GridFSFile>
Deprecated.
Usage of this API is not supported in AEM as a Cloud Service.
A codec for GridFS Files
- Since:
- 3.3
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiondecode
(BsonReader reader, DecoderContext decoderContext) Deprecated.Decodes a BSON value from the given reader into an instance of the type parameterT
.void
encode
(BsonWriter writer, GridFSFile value, EncoderContext encoderContext) Deprecated.Encode an instance of the type parameterT
into a BSON value.Deprecated.Returns the Class instance that this encodes.
-
Constructor Details
-
GridFSFileCodec
Deprecated.Create a new instance- Parameters:
registry
- the codec registry
-
-
Method Details
-
decode
Deprecated.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
Deprecated.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
Deprecated.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.
-