public final class GridFSFileCodec extends java.lang.Object implements Codec<GridFSFile>
Modifier and Type | Field and Description |
---|---|
private Codec<BsonDocument> |
bsonDocumentCodec |
private Codec<Document> |
documentCodec |
private static java.util.List<java.lang.String> |
VALID_FIELDS |
Constructor and Description |
---|
GridFSFileCodec(CodecRegistry registry)
Create a new instance
|
Modifier and Type | Method and Description |
---|---|
private Document |
asDocumentOrNull(BsonDocument bsonDocument) |
GridFSFile |
decode(BsonReader reader,
DecoderContext decoderContext)
Decodes a BSON value from the given reader into an instance of the type parameter
T . |
void |
encode(BsonWriter writer,
GridFSFile value,
EncoderContext encoderContext)
Encode an instance of the type parameter
T into a BSON value. |
java.lang.Class<GridFSFile> |
getEncoderClass()
Returns the Class instance that this encodes.
|
private static final java.util.List<java.lang.String> VALID_FIELDS
private final Codec<BsonDocument> bsonDocumentCodec
public GridFSFileCodec(CodecRegistry registry)
registry
- the codec registrypublic GridFSFile decode(BsonReader reader, DecoderContext decoderContext)
Decoder
T
.decode
in interface Decoder<GridFSFile>
reader
- the BSON readerdecoderContext
- the decoder contextT
.public void encode(BsonWriter writer, GridFSFile value, EncoderContext encoderContext)
Encoder
T
into a BSON value.encode
in interface Encoder<GridFSFile>
writer
- the BSON writer to encode intovalue
- the value to encodeencoderContext
- the encoder contextpublic java.lang.Class<GridFSFile> getEncoderClass()
Encoder
getEncoderClass
in interface Encoder<GridFSFile>
private Document asDocumentOrNull(BsonDocument bsonDocument)