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

com.couchbase.client.java.query.dsl.path.SelectPath 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.Expression;

/**
 * .
 *
 * @author Michael Nitschinger
 */
public interface SelectPath extends Path {

    FromPath select(Expression... expressions);

    FromPath select(String... expressions);

    FromPath selectAll(Expression... expressions);

    FromPath selectAll(String... expressions);

    FromPath selectDistinct(Expression... expressions);

    FromPath selectDistinct(String... expressions);

    FromPath selectRaw(Expression expression);

    FromPath selectRaw(String expression);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy