Replace references to getInstance with the corresponding factory method name.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/collections/trunk@1476582 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
fad4f969df
commit
cca574ea06
|
@ -36,7 +36,6 @@ public abstract class AbstractQuantifierPredicate<T> implements Predicate<T>, Pr
|
|||
|
||||
/**
|
||||
* Constructor that performs no validation.
|
||||
* Use <code>getInstance</code> if you want that.
|
||||
*
|
||||
* @param predicates the predicates to check, not cloned, not null
|
||||
*/
|
||||
|
|
|
@ -90,7 +90,7 @@ public final class AllPredicate<T> extends AbstractQuantifierPredicate<T> implem
|
|||
|
||||
/**
|
||||
* Constructor that performs no validation.
|
||||
* Use <code>getInstance</code> if you want that.
|
||||
* Use <code>allPredicate</code> if you want that.
|
||||
*
|
||||
* @param predicates the predicates to check, not cloned, not null
|
||||
*/
|
||||
|
|
|
@ -55,7 +55,7 @@ public final class AndPredicate<T> implements Predicate<T>, PredicateDecorator<T
|
|||
|
||||
/**
|
||||
* Constructor that performs no validation.
|
||||
* Use <code>getInstance</code> if you want that.
|
||||
* Use <code>andPredicate</code> if you want that.
|
||||
*
|
||||
* @param predicate1 the first predicate to check, not null
|
||||
* @param predicate2 the second predicate to check, not null
|
||||
|
|
|
@ -87,7 +87,7 @@ public final class AnyPredicate<T> extends AbstractQuantifierPredicate<T> implem
|
|||
|
||||
/**
|
||||
* Constructor that performs no validation.
|
||||
* Use <code>getInstance</code> if you want that.
|
||||
* Use <code>anyPredicate</code> if you want that.
|
||||
*
|
||||
* @param predicates the predicates to check, not cloned, not null
|
||||
*/
|
||||
|
|
|
@ -83,7 +83,7 @@ public class ChainedClosure<E> implements Closure<E>, Serializable {
|
|||
|
||||
/**
|
||||
* Constructor that performs no validation.
|
||||
* Use <code>getInstance</code> if you want that.
|
||||
* Use <code>chainedClosure</code> if you want that.
|
||||
*
|
||||
* @param closures the closures to chain, not copied, no nulls
|
||||
*/
|
||||
|
|
|
@ -82,7 +82,7 @@ public class ChainedTransformer<T> implements Transformer<T, T>, Serializable {
|
|||
|
||||
/**
|
||||
* Constructor that performs no validation.
|
||||
* Use <code>getInstance</code> if you want that.
|
||||
* Use <code>chainedTransformer</code> if you want that.
|
||||
*
|
||||
* @param transformers the transformers to chain, not copied, no nulls
|
||||
*/
|
||||
|
|
|
@ -23,7 +23,7 @@ import org.apache.commons.collections4.Transformer;
|
|||
/**
|
||||
* Transformer implementation that returns a clone of the input object.
|
||||
* <p>
|
||||
* Clone is performed using <code>PrototypeFactory.getInstance(input).create()</code>.
|
||||
* Clone is performed using <code>PrototypeFactory.prototypeFactory(input).create()</code>.
|
||||
*
|
||||
* @since 3.0
|
||||
* @version $Id$
|
||||
|
@ -49,7 +49,7 @@ public class CloneTransformer<T> implements Transformer<T, T>, Serializable {
|
|||
}
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
* Constructor.
|
||||
*/
|
||||
private CloneTransformer() {
|
||||
super();
|
||||
|
|
|
@ -53,7 +53,7 @@ public class ClosureTransformer<T> implements Transformer<T, T>, Serializable {
|
|||
|
||||
/**
|
||||
* Constructor that performs no validation.
|
||||
* Use <code>getInstance</code> if you want that.
|
||||
* Use <code>closureTransformer</code> if you want that.
|
||||
*
|
||||
* @param closure the closure to call, not null
|
||||
*/
|
||||
|
|
|
@ -44,7 +44,7 @@ import org.apache.commons.collections4.Predicate;
|
|||
* following way:
|
||||
*
|
||||
* <pre>
|
||||
* ComparatorPredicate.getInstance(ONE, comparator).evaluate(TWO);
|
||||
* ComparatorPredicate.comparatorPredicate(ONE, comparator).evaluate(TWO);
|
||||
* </pre>
|
||||
*
|
||||
* The input variable <code>TWO</code> in compared to the stored variable <code>ONE</code> using
|
||||
|
@ -66,7 +66,7 @@ import org.apache.commons.collections4.Predicate;
|
|||
* evaluation of a comparator result.
|
||||
*
|
||||
* <pre>
|
||||
* ComparatorPredicate.getInstance(ONE, comparator, <b>ComparatorPredicate.Criterion.GREATER</b>).evaluate(TWO);
|
||||
* ComparatorPredicate.comparatorPredicate(ONE, comparator,<b>ComparatorPredicate.Criterion.GREATER</b>).evaluate(TWO);
|
||||
* </pre>
|
||||
*
|
||||
* The input variable TWO is compared to the stored variable ONE using the supplied <code>comparator</code>
|
||||
|
@ -131,7 +131,7 @@ public class ComparatorPredicate<T> implements Predicate<T>, Serializable {
|
|||
|
||||
/**
|
||||
* Constructor that performs no validation.
|
||||
* Use <code>getInstance</code> if you want.
|
||||
* Use <code>comparatorPredicate</code> if you want that.
|
||||
*
|
||||
* @param object the object to compare to
|
||||
* @param comparator the comparator to use for comparison
|
||||
|
|
|
@ -58,7 +58,7 @@ public class ConstantFactory<T> implements Factory<T>, Serializable {
|
|||
|
||||
/**
|
||||
* Constructor that performs no validation.
|
||||
* Use <code>getInstance</code> if you want that.
|
||||
* Use <code>constantFactory</code> if you want that.
|
||||
*
|
||||
* @param constantToReturn the constant to return each time
|
||||
*/
|
||||
|
|
|
@ -70,7 +70,7 @@ public class ConstantTransformer<I, O> implements Transformer<I, O>, Serializabl
|
|||
|
||||
/**
|
||||
* Constructor that performs no validation.
|
||||
* Use <code>getInstance</code> if you want that.
|
||||
* Use <code>constantTransformer</code> if you want that.
|
||||
*
|
||||
* @param constantToReturn the constant to return each time
|
||||
*/
|
||||
|
|
|
@ -74,7 +74,7 @@ public final class EqualPredicate<T> implements Predicate<T>, Serializable {
|
|||
|
||||
/**
|
||||
* Constructor that performs no validation.
|
||||
* Use <code>getInstance</code> if you want that.
|
||||
* Use <code>equalPredicate</code> if you want that.
|
||||
*
|
||||
* @param object the object to compare to
|
||||
*/
|
||||
|
@ -86,7 +86,7 @@ public final class EqualPredicate<T> implements Predicate<T>, Serializable {
|
|||
|
||||
/**
|
||||
* Constructor that performs no validation.
|
||||
* Use <code>getInstance</code> if you want that.
|
||||
* Use <code>equalPredicate</code> if you want that.
|
||||
*
|
||||
* @param object the object to compare to
|
||||
* @param equator the equator to use for comparison
|
||||
|
|
|
@ -53,7 +53,7 @@ public class FactoryTransformer<I, O> implements Transformer<I, O>, Serializable
|
|||
|
||||
/**
|
||||
* Constructor that performs no validation.
|
||||
* Use <code>getInstance</code> if you want that.
|
||||
* Use <code>factoryTransformer</code> if you want that.
|
||||
*
|
||||
* @param factory the factory to call, not null
|
||||
*/
|
||||
|
|
|
@ -60,7 +60,7 @@ public class ForClosure<E> implements Closure<E>, Serializable {
|
|||
|
||||
/**
|
||||
* Constructor that performs no validation.
|
||||
* Use <code>getInstance</code> if you want that.
|
||||
* Use <code>forClosure</code> if you want that.
|
||||
*
|
||||
* @param count the number of times to execute the closure
|
||||
* @param closure the closure to execute, not null
|
||||
|
|
|
@ -52,7 +52,7 @@ public final class IdentityPredicate<T> implements Predicate<T>, Serializable {
|
|||
|
||||
/**
|
||||
* Constructor that performs no validation.
|
||||
* Use <code>getInstance</code> if you want that.
|
||||
* Use <code>identityPredicate</code> if you want that.
|
||||
*
|
||||
* @param object the object to compare to
|
||||
*/
|
||||
|
|
|
@ -81,7 +81,7 @@ public class IfClosure<E> implements Closure<E>, Serializable {
|
|||
|
||||
/**
|
||||
* Constructor that performs no validation.
|
||||
* Use <code>getInstance</code> if you want that.
|
||||
* Use <code>ifClosure</code> if you want that.
|
||||
* <p>
|
||||
* This constructor creates a closure that performs no action when
|
||||
* the predicate is false.
|
||||
|
@ -96,7 +96,7 @@ public class IfClosure<E> implements Closure<E>, Serializable {
|
|||
|
||||
/**
|
||||
* Constructor that performs no validation.
|
||||
* Use <code>getInstance</code> if you want that.
|
||||
* Use <code>ifClosure</code> if you want that.
|
||||
*
|
||||
* @param predicate predicate to switch on, not null
|
||||
* @param trueClosure closure used if true, not null
|
||||
|
|
|
@ -51,7 +51,7 @@ public final class InstanceofPredicate implements Predicate<Object>, Serializabl
|
|||
|
||||
/**
|
||||
* Constructor that performs no validation.
|
||||
* Use <code>getInstance</code> if you want that.
|
||||
* Use <code>instanceOfPredicate</code> if you want that.
|
||||
*
|
||||
* @param type the type to check for
|
||||
*/
|
||||
|
|
|
@ -72,7 +72,7 @@ public class InstantiateFactory<T> implements Factory<T>, Serializable {
|
|||
|
||||
/**
|
||||
* Constructor that performs no validation.
|
||||
* Use <code>getInstance</code> if you want that.
|
||||
* Use <code>instantiateFactory</code> if you want that.
|
||||
*
|
||||
* @param classToInstantiate the class to instantiate
|
||||
*/
|
||||
|
@ -86,7 +86,7 @@ public class InstantiateFactory<T> implements Factory<T>, Serializable {
|
|||
|
||||
/**
|
||||
* Constructor that performs no validation.
|
||||
* Use <code>getInstance</code> if you want that.
|
||||
* Use <code>instantiateFactory</code> if you want that.
|
||||
*
|
||||
* @param classToInstantiate the class to instantiate
|
||||
* @param paramTypes the constructor parameter types, cloned
|
||||
|
|
|
@ -86,7 +86,7 @@ public class InstantiateTransformer<T> implements Transformer<Class<? extends T>
|
|||
|
||||
/**
|
||||
* Constructor that performs no validation.
|
||||
* Use <code>getInstance</code> if you want that.
|
||||
* Use <code>instantiateTransformer</code> if you want that.
|
||||
*
|
||||
* @param paramTypes the constructor parameter types, not cloned
|
||||
* @param args the constructor arguments, not cloned
|
||||
|
|
|
@ -100,7 +100,7 @@ public class InvokerTransformer<I, O> implements Transformer<I, O>, Serializable
|
|||
|
||||
/**
|
||||
* Constructor that performs no validation.
|
||||
* Use <code>getInstance</code> if you want that.
|
||||
* Use <code>invokerTransformer</code> if you want that.
|
||||
*
|
||||
* @param methodName the method to call
|
||||
* @param paramTypes the constructor parameter types, not cloned
|
||||
|
|
|
@ -55,7 +55,7 @@ public final class MapTransformer<I, O> implements Transformer<I, O>, Serializab
|
|||
|
||||
/**
|
||||
* Constructor that performs no validation.
|
||||
* Use <code>getInstance</code> if you want that.
|
||||
* Use <code>mapTransformer</code> if you want that.
|
||||
*
|
||||
* @param map the map to use for lookup, not cloned
|
||||
*/
|
||||
|
|
|
@ -47,7 +47,7 @@ public final class NOPClosure<E> implements Closure<E>, Serializable {
|
|||
}
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
* Constructor.
|
||||
*/
|
||||
private NOPClosure() {
|
||||
super();
|
||||
|
|
|
@ -47,7 +47,7 @@ public class NOPTransformer<T> implements Transformer<T, T>, Serializable {
|
|||
}
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
* Constructor.
|
||||
*/
|
||||
private NOPTransformer() {
|
||||
super();
|
||||
|
|
|
@ -77,7 +77,7 @@ public final class NonePredicate<T> extends AbstractQuantifierPredicate<T> imple
|
|||
|
||||
/**
|
||||
* Constructor that performs no validation.
|
||||
* Use <code>getInstance</code> if you want that.
|
||||
* Use <code>nonePredicate</code> if you want that.
|
||||
*
|
||||
* @param predicates the predicates to check, not cloned, not null
|
||||
*/
|
||||
|
|
|
@ -51,7 +51,7 @@ public final class NotPredicate<T> implements Predicate<T>, PredicateDecorator<T
|
|||
|
||||
/**
|
||||
* Constructor that performs no validation.
|
||||
* Use <code>getInstance</code> if you want that.
|
||||
* Use <code>notPredicate</code> if you want that.
|
||||
*
|
||||
* @param predicate the predicate to call after the null check
|
||||
*/
|
||||
|
|
|
@ -52,7 +52,7 @@ public final class NullIsExceptionPredicate<T> implements Predicate<T>, Predicat
|
|||
|
||||
/**
|
||||
* Constructor that performs no validation.
|
||||
* Use <code>getInstance</code> if you want that.
|
||||
* Use <code>nullIsExceptionPredicate</code> if you want that.
|
||||
*
|
||||
* @param predicate the predicate to call after the null check
|
||||
*/
|
||||
|
|
|
@ -51,7 +51,7 @@ public final class NullIsFalsePredicate<T> implements Predicate<T>, PredicateDec
|
|||
|
||||
/**
|
||||
* Constructor that performs no validation.
|
||||
* Use <code>getInstance</code> if you want that.
|
||||
* Use <code>nullIsFalsePredicate</code> if you want that.
|
||||
*
|
||||
* @param predicate the predicate to call after the null check
|
||||
*/
|
||||
|
|
|
@ -51,7 +51,7 @@ public final class NullIsTruePredicate<T> implements Predicate<T>, PredicateDeco
|
|||
|
||||
/**
|
||||
* Constructor that performs no validation.
|
||||
* Use <code>getInstance</code> if you want that.
|
||||
* Use <code>nullIsTruePredicate</code> if you want that.
|
||||
*
|
||||
* @param predicate the predicate to call after the null check
|
||||
*/
|
||||
|
|
|
@ -77,7 +77,7 @@ public final class OnePredicate<T> extends AbstractQuantifierPredicate<T> implem
|
|||
|
||||
/**
|
||||
* Constructor that performs no validation.
|
||||
* Use <code>getInstance</code> if you want that.
|
||||
* Use <code>onePredicate</code> if you want that.
|
||||
*
|
||||
* @param predicates the predicates to check, not cloned, not null
|
||||
*/
|
||||
|
|
|
@ -55,7 +55,7 @@ public final class OrPredicate<T> implements Predicate<T>, PredicateDecorator<T>
|
|||
|
||||
/**
|
||||
* Constructor that performs no validation.
|
||||
* Use <code>getInstance</code> if you want that.
|
||||
* Use <code>orPredicate</code> if you want that.
|
||||
*
|
||||
* @param predicate1 the first predicate to check, not null
|
||||
* @param predicate2 the second predicate to check, not null
|
||||
|
|
|
@ -53,7 +53,7 @@ public class PredicateTransformer<T> implements Transformer<T, Boolean>, Seriali
|
|||
|
||||
/**
|
||||
* Constructor that performs no validation.
|
||||
* Use <code>getInstance</code> if you want that.
|
||||
* Use <code>predicateTransformer</code> if you want that.
|
||||
*
|
||||
* @param predicate the predicate to call, not null
|
||||
*/
|
||||
|
|
|
@ -80,8 +80,7 @@ public class PrototypeFactory {
|
|||
}
|
||||
|
||||
/**
|
||||
* Constructor that performs no validation.
|
||||
* Use <code>getInstance</code> if you want that.
|
||||
* Restricted constructor.
|
||||
*/
|
||||
private PrototypeFactory() {
|
||||
super();
|
||||
|
|
|
@ -109,7 +109,7 @@ public class SwitchClosure<E> implements Closure<E>, Serializable {
|
|||
|
||||
/**
|
||||
* Constructor that performs no validation.
|
||||
* Use <code>getInstance</code> if you want that.
|
||||
* Use <code>switchClosure</code> if you want that.
|
||||
*
|
||||
* @param predicates array of predicates, not cloned, no nulls
|
||||
* @param closures matching array of closures, not cloned, no nulls
|
||||
|
|
|
@ -121,7 +121,7 @@ public class SwitchTransformer<I, O> implements Transformer<I, O>, Serializable
|
|||
|
||||
/**
|
||||
* Constructor that performs no validation.
|
||||
* Use <code>getInstance</code> if you want that.
|
||||
* Use <code>switchTransformer</code> if you want that.
|
||||
*
|
||||
* @param predicates array of predicates, not cloned, no nulls
|
||||
* @param transformers matching array of transformers, not cloned, no nulls
|
||||
|
|
|
@ -61,7 +61,7 @@ public final class TransformedPredicate<T> implements Predicate<T>, PredicateDec
|
|||
|
||||
/**
|
||||
* Constructor that performs no validation.
|
||||
* Use <code>getInstance</code> if you want that.
|
||||
* Use <code>transformedPredicate</code> if you want that.
|
||||
*
|
||||
* @param transformer the transformer to use
|
||||
* @param predicate the predicate to decorate
|
||||
|
|
|
@ -54,7 +54,7 @@ public class TransformerClosure<E> implements Closure<E>, Serializable {
|
|||
|
||||
/**
|
||||
* Constructor that performs no validation.
|
||||
* Use <code>getInstance</code> if you want that.
|
||||
* Use <code>transformerClosure</code> if you want that.
|
||||
*
|
||||
* @param transformer the transformer to call, not null
|
||||
*/
|
||||
|
|
|
@ -53,7 +53,7 @@ public final class TransformerPredicate<T> implements Predicate<T>, Serializable
|
|||
|
||||
/**
|
||||
* Constructor that performs no validation.
|
||||
* Use <code>getInstance</code> if you want that.
|
||||
* Use <code>transformerPredicate</code> if you want that.
|
||||
*
|
||||
* @param transformer the transformer to decorate
|
||||
*/
|
||||
|
|
|
@ -50,7 +50,7 @@ public final class UniquePredicate<T> implements Predicate<T>, Serializable {
|
|||
|
||||
/**
|
||||
* Constructor that performs no validation.
|
||||
* Use <code>getInstance</code> if you want that.
|
||||
* Use <code>uniquePredicate</code> if you want that.
|
||||
*/
|
||||
public UniquePredicate() {
|
||||
super();
|
||||
|
|
|
@ -63,7 +63,7 @@ public class WhileClosure<E> implements Closure<E>, Serializable {
|
|||
|
||||
/**
|
||||
* Constructor that performs no validation.
|
||||
* Use <code>getInstance</code> if you want that.
|
||||
* Use <code>whileClosure</code> if you want that.
|
||||
*
|
||||
* @param predicate the predicate used to evaluate when the loop terminates, not null
|
||||
* @param closure the closure the execute, not null
|
||||
|
|
Loading…
Reference in New Issue