
com.couchbase.client.java.query.dsl.path.DefaultLimitPath 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.LimitElement;
public class DefaultLimitPath extends DefaultOffsetPath implements LimitPath {
public DefaultLimitPath(AbstractPath parent) {
super(parent);
}
@Override
public OffsetPath limit(int limit) {
element(new LimitElement(limit));
return new DefaultOffsetPath(this);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy