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

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

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

import com.couchbase.client.java.query.dsl.Alias;
import com.couchbase.client.java.query.dsl.element.LettingElement;

/**
 * .
 *
 * @author Michael Nitschinger
 */
public class DefaultLettingPath extends DefaultHavingPath implements LettingPath {

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

    @Override
    public HavingPath letting(Alias... aliases) {
        element(new LettingElement(aliases));
        return new DefaultHavingPath(this);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy