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

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

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

public class DDLResult {
    private int created;
    private int dropped;

    /**
     * The number of created entities
     */
    public int getCreated() {
        return created;
    }

    /**
     * The number of dropped entities
     */
    public int getDropped() {
        return dropped;
    }

    @Override
    public String toString() {
        return "GenericDBResult{" +
                "created=" + created +
                ", dropped=" + dropped +
                "}";
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy