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

sf.dsl.example.OffsetLimit Maven / Gradle / Ivy

The newest version!
package sf.dsl.example;

public class OffsetLimit {
    private long offset;
    private int limit;

    public OffsetLimit(long offset, int limit) {
        this.offset = offset;
        this.limit = limit;
    }

    public long getOffset() {
        return offset;
    }

    public int getLimit() {
        return limit;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy