
com.couchbase.client.java.query.dsl.path.DefaultAsPath Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-client Show documentation
Show all versions of java-client Show documentation
The official Couchbase Java SDK
package com.couchbase.client.java.query.dsl.path;
import com.couchbase.client.java.query.dsl.element.AsElement;
/**
* .
*
* @author Michael Nitschinger
*/
public class DefaultAsPath extends DefaultHintPath implements AsPath {
public DefaultAsPath(AbstractPath parent) {
super(parent);
}
@Override
public HintPath as(String alias) {
element(new AsElement(alias));
return new DefaultHintPath(this);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy