
de.tsl2.nano.util.operation.IRange Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tsl2.nano.operation Show documentation
Show all versions of tsl2.nano.operation Show documentation
TSL2 Framework Operation (abstract parser, conditioned functional or boolean operations - abstract structure for rule-engines)
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