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

com.rethinkdb.model.MapObject Maven / Gradle / Ivy

There is a newer version: 2.3.2.20160729
Show newest version
package com.rethinkdb.model;

import java.util.HashMap;

public class MapObject extends HashMap {

    public MapObject() {
    }

    public MapObject with(Object key, Object value) {
        put(key, value);
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy