![JAR search and dependency download from the Maven repository](/logo.png)
de.tsl2.nano.util.operation.IRange Maven / Gradle / Ivy
package de.tsl2.nano.util.operation;
/**
* @param the object type for the range definition.
* @author Thomas Schneider
* @version $Revision$
*/
public interface IRange {
/**
* @return the range minimum value
*/
public abstract T getFrom();
/**
* @return Returns the range maximum value
*/
public abstract T getTo();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy