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

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

There is a newer version: 2.2
Show newest version
package com.rethinkdb.response.model;

import java.util.Map;

public class JoinResult {
    private Map left;
    private Map right;

    /**
     * The left object in the join
     * @return left object
     */
    public Map getLeft() {
        return left;
    }

    /**
     * The right object in the join
     * @return right object
     */
    public Map getRight() {
        return right;
    }

    @Override
    public String toString() {
        return "JoinResult{" +
                "left=" + left +
                ", right=" + right +
                '}';
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy