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

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