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

com.couchbase.client.java.query.dsl.path.DefaultJoinPath Maven / Gradle / Ivy

There is a newer version: 3.7.7
Show newest version
package com.couchbase.client.java.query.dsl.path;

import com.couchbase.client.java.query.dsl.element.AsElement;

/**
 * .
 *
 * @author Michael Nitschinger
 */
public class DefaultJoinPath extends DefaultKeysPath implements JoinPath {

    public DefaultJoinPath(AbstractPath parent) {
        super(parent);
    }

    @Override
    public KeysPath as(String alias) {
        element(new AsElement(alias));
        return new DefaultKeysPath(this);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy