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

com.labstack.Document Maven / Gradle / Ivy

The newest version!
package com.labstack;

import javax.print.Doc;
import java.util.HashMap;
import java.util.Map;

public class Document {
    protected Map data = new HashMap<>();

    public Document add(String key, Object value) {
        data.put(key, value);
        return this;
    }

    public Object get(String key) {
        return data.get(key);
    }

    // TODO: More public access methods http://mongodb.github.io/mongo-java-driver/3.4/javadoc/org/bson/Document.html
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy