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

de.jakobjarosch.rethinkdb.orm.model.IndexModel Maven / Gradle / Ivy

There is a newer version: 2.3.0-5
Show newest version
package de.jakobjarosch.rethinkdb.orm.model;

public class IndexModel {

    private final boolean geo;
    private final String[] fields;

    public IndexModel(boolean geo, String[] fields) {
        this.geo = geo;
        this.fields = fields;
    }

    public boolean isGeo() {
        return geo;
    }

    public String[] getFields() {
        return fields;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy