
de.jakobjarosch.rethinkdb.orm.model.IndexModel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rethinkdb-orm Show documentation
Show all versions of rethinkdb-orm Show documentation
A lightweight OR mapper for RethinkDB, written in Java.
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;
}
}