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

org.openl.domain.IIntDomain Maven / Gradle / Ivy

The newest version!
/*
 * Created on Apr 28, 2004
 *
 * Developed by OpenRules Inc 2003-2004
 */
package org.openl.domain;

/**
 * @author snshor
 */
public interface IIntDomain {
    boolean contains(int value);

    int getMax();

    int getMin();

    IIntIterator intIterator();

    int size();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy