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

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

The newest version!
package com.rethinkdb.model;

import java.util.HashMap;

public class MapObject extends HashMap {

    public MapObject() {
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy