![JAR search and dependency download from the Maven repository](/logo.png)
com.evotext.clever.util.Paging Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of clever-java Show documentation
Show all versions of clever-java Show documentation
The Clever-Java project is a Java wrapper for the Clever.com API for keeping educational applications rostered and up-to-date.
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