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

com.heliorm.impl.LimitPart Maven / Gradle / Ivy

The newest version!
package com.heliorm.impl;

public class LimitPart {

    private final int from;
    private final int number;


    public LimitPart(int from, int number) {
        this.from = from;
        this.number = number;
    }

    public LimitPart(int number) {
        this(0, number);
    }

    public int getFrom() {
        return from;
    }

    public int getNumber() {
        return number;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy