blob: c945a0fa6eeb12eb26c4f3df04afb1c5a5e4febe [file] [log] [blame]
/*
* Copyright 2003,2004 The Apache Software Foundation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.commons.functor.core;
import org.apache.commons.functor.BinaryPredicate;
import org.apache.commons.functor.Predicate;
import org.apache.commons.functor.UnaryPredicate;
/**
* A predicate that returns <code>true</code>
* the first <i>n</i> times it is invoked.
*
* @since 1.0
* @version $Revision$ $Date$
* @author Jason Horman (jason@jhorman.org)
* @author Rodney Waldhoff
*/
public final class Limit implements Predicate, UnaryPredicate, BinaryPredicate {
public Limit(int count) {
if(count < 0) {
throw new IllegalArgumentException("Argument must be a non-negative integer.");
}
this.max = count;
}
public boolean test() {
// stop incremeting when we've hit max, so we don't loop around
if(current < max) {
current++;
return true;
} else {
return false;
}
}
public boolean test(Object obj) {
return test();
}
public boolean test(Object a, Object b) {
return test();
}
public String toString() {
return "Limit<" + max + ">";
}
// instance variables
//---------------------------------------------------------------
private int max;
private int current = 0;
}