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

com.rethinkdb.response.model.IndexStatusResult Maven / Gradle / Ivy

The newest version!
package com.rethinkdb.response.model;

public class IndexStatusResult {
    private String index;
    private boolean ready;

    /**
     * the index name
     */
    public String getIndex() {
        return index;
    }

    /**
     * is index ready
     */
    public boolean isReady() {
        return ready;
    }

    @Override
    public String toString() {
        return "IndexStatusResult{" +
                "index='" + index + '\'' +
                ", ready=" + ready +
                '}';
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy