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

com.couchbase.client.java.query.dsl.path.DefaultHavingPath 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.Expression;
import com.couchbase.client.java.query.dsl.element.HavingElement;

/**
 * .
 *
 * @author Michael Nitschinger
 */
public class DefaultHavingPath extends DefaultSelectResultPath implements HavingPath {

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

    @Override
    public SelectResultPath having(Expression condition) {
        element(new HavingElement(condition));
        return new DefaultSelectResultPath(this);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy