Uses of Class
com.mongodb.gridfs.GridFS

Packages that use GridFS
com.mongodb.gridfs GridFS tools. 
 

Uses of GridFS in com.mongodb.gridfs
 

Fields in com.mongodb.gridfs declared as GridFS
protected  GridFS GridFSFile._fs
           
 

Methods in com.mongodb.gridfs with parameters of type GridFS
protected  void GridFSFile.setGridFS(GridFS fs)
          Sets the GridFS associated with this file
 

Constructors in com.mongodb.gridfs with parameters of type GridFS
GridFSInputFile(GridFS fs)
          Minimal constructor that does not rely on the presence of an InputStream.
GridFSInputFile(GridFS fs, InputStream in, String filename)
          Default constructor setting the GridFS file name and providing an input stream containing data to be written to the file.
GridFSInputFile(GridFS fs, InputStream in, String filename, boolean closeStreamOnPersist)
          Default constructor setting the GridFS file name and providing an input stream containing data to be written to the file.
GridFSInputFile(GridFS fs, String filename)
          Constructor that only provides a file name, but does not rely on the presence of an InputStream.