Examples of CyclicIntArray


Examples of org.apache.niolex.commons.collection.CyclicIntArray

     * @param splitCnt the total interval will be split by this count.
     * @param totalNum the total number.
     */
    public FrequencyCheck(int splitCnt, int totalNum) {
        super();
        this.cyclic = new CyclicIntArray(splitCnt);
        this.totalNum = totalNum;
        this.currentNum = 0;
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.