All Downloads are FREE. Search and download functionalities are using the official Maven repository.

me.lightspeed7.mongofs.InputFile Maven / Gradle / Ivy

Go to download

An extension to the MongoDB Java Driver library that goes beyond what the GridFS feature supports. Compressed file storage, zip files, temporary files

There is a newer version: 0.10.0
Show newest version
package me.lightspeed7.mongofs;

public interface InputFile {

    /**
     * Associates a key with a value in the current map object.
     * 
     * @param key
     * @param value
     * 
     * @return the previous value for the key if any
     */
    Object put(final String key, final Object value);

    /**
     * Returns the value of a field on the object
     * 
     * @param string
     * @return the value object from the given key
     */
    Object get(final String string);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy