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

com.evotext.clever.util.Paging Maven / Gradle / Ivy

Go to download

The Clever-Java project is a Java wrapper for the Clever.com API for keeping educational applications rostered and up-to-date.

There is a newer version: 2.0.0
Show newest version

package com.evotext.clever.util;

import org.apache.commons.lang3.builder.ToStringBuilder;

public class Paging {

    private Integer current;
    private Integer total;
    private Integer count;

    /**
     *
     * @return
     *     The current
     */
    public Integer getCurrent() {
        return current;
    }

    /**
     *
     * @param current
     *     The current
     */
    public void setCurrent(Integer current) {
        this.current = current;
    }

    /**
     *
     * @return
     *     The total
     */
    public Integer getTotal() {
        return total;
    }

    /**
     *
     * @param total
     *     The total
     */
    public void setTotal(Integer total) {
        this.total = total;
    }

    /**
     *
     * @return
     *     The count
     */
    public Integer getCount() {
        return count;
    }

    /**
     *
     * @param count
     *     The count
     */
    public void setCount(Integer count) {
        this.count = count;
    }

    @Override
    public String toString() {
        return ToStringBuilder.reflectionToString(this);
    }


}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy