This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-collections.git


The following commit(s) were added to refs/heads/master by this push:
     new 32a0b7783 Javadoc
32a0b7783 is described below

commit 32a0b7783a62bf1e3bc802e2ea829e9799480dac
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Fri Oct 18 12:13:16 2024 -0400

    Javadoc
---
 .../java/org/apache/commons/collections4/functors/AllPredicate.java   | 4 ++--
 .../java/org/apache/commons/collections4/functors/AndPredicate.java   | 2 +-
 .../java/org/apache/commons/collections4/functors/AnyPredicate.java   | 4 ++--
 .../org/apache/commons/collections4/functors/ComparatorPredicate.java | 4 ++--
 .../java/org/apache/commons/collections4/functors/EqualPredicate.java | 4 ++--
 .../org/apache/commons/collections4/functors/IdentityPredicate.java   | 2 +-
 .../org/apache/commons/collections4/functors/InstanceofPredicate.java | 2 +-
 .../java/org/apache/commons/collections4/functors/MapTransformer.java | 2 +-
 .../java/org/apache/commons/collections4/functors/NonePredicate.java  | 4 ++--
 .../java/org/apache/commons/collections4/functors/NotPredicate.java   | 2 +-
 .../commons/collections4/functors/NullIsExceptionPredicate.java       | 2 +-
 .../apache/commons/collections4/functors/NullIsFalsePredicate.java    | 2 +-
 .../org/apache/commons/collections4/functors/NullIsTruePredicate.java | 2 +-
 .../java/org/apache/commons/collections4/functors/OnePredicate.java   | 4 ++--
 .../java/org/apache/commons/collections4/functors/OrPredicate.java    | 2 +-
 .../apache/commons/collections4/functors/TransformedPredicate.java    | 2 +-
 .../apache/commons/collections4/functors/TransformerPredicate.java    | 2 +-
 .../org/apache/commons/collections4/functors/UniquePredicate.java     | 2 +-
 18 files changed, 24 insertions(+), 24 deletions(-)

diff --git 
a/src/main/java/org/apache/commons/collections4/functors/AllPredicate.java 
b/src/main/java/org/apache/commons/collections4/functors/AllPredicate.java
index d16f1a73f..1722e452d 100644
--- a/src/main/java/org/apache/commons/collections4/functors/AllPredicate.java
+++ b/src/main/java/org/apache/commons/collections4/functors/AllPredicate.java
@@ -42,7 +42,7 @@ public final class AllPredicate<T> extends 
AbstractQuantifierPredicate<T> {
     private static final long serialVersionUID = -3094696765038308799L;
 
     /**
-     * Factory to create the predicate.
+     * Creates the predicate.
      * <p>
      * If the collection is size zero, the predicate always returns true.
      * If the collection is size one, then that predicate is returned.
@@ -66,7 +66,7 @@ public final class AllPredicate<T> extends 
AbstractQuantifierPredicate<T> {
     }
 
     /**
-     * Factory to create the predicate.
+     * Creates the predicate.
      * <p>
      * If the array is size zero, the predicate always returns true.
      * If the array is size one, then that predicate is returned.
diff --git 
a/src/main/java/org/apache/commons/collections4/functors/AndPredicate.java 
b/src/main/java/org/apache/commons/collections4/functors/AndPredicate.java
index b23d9109a..d1bffe8d9 100644
--- a/src/main/java/org/apache/commons/collections4/functors/AndPredicate.java
+++ b/src/main/java/org/apache/commons/collections4/functors/AndPredicate.java
@@ -33,7 +33,7 @@ public final class AndPredicate<T> extends 
AbstractPredicate<T> implements Predi
     private static final long serialVersionUID = 4189014213763186912L;
 
     /**
-     * Factory to create the predicate.
+     * Creates the predicate.
      *
      * @param <T> the type that the predicate queries
      * @param predicate1  the first predicate to check, not null
diff --git 
a/src/main/java/org/apache/commons/collections4/functors/AnyPredicate.java 
b/src/main/java/org/apache/commons/collections4/functors/AnyPredicate.java
index bd421c093..9484b8598 100644
--- a/src/main/java/org/apache/commons/collections4/functors/AnyPredicate.java
+++ b/src/main/java/org/apache/commons/collections4/functors/AnyPredicate.java
@@ -38,7 +38,7 @@ public final class AnyPredicate<T> extends 
AbstractQuantifierPredicate<T> {
     private static final long serialVersionUID = 7429999530934647542L;
 
     /**
-     * Factory to create the predicate.
+     * Creates the predicate.
      * <p>
      * If the collection is size zero, the predicate always returns false.
      * If the collection is size one, then that predicate is returned.
@@ -63,7 +63,7 @@ public final class AnyPredicate<T> extends 
AbstractQuantifierPredicate<T> {
     }
 
     /**
-     * Factory to create the predicate.
+     * Creates the predicate.
      * <p>
      * If the array is size zero, the predicate always returns false.
      * If the array is size one, then that predicate is returned.
diff --git 
a/src/main/java/org/apache/commons/collections4/functors/ComparatorPredicate.java
 
b/src/main/java/org/apache/commons/collections4/functors/ComparatorPredicate.java
index 8c8aca39e..092b09d19 100644
--- 
a/src/main/java/org/apache/commons/collections4/functors/ComparatorPredicate.java
+++ 
b/src/main/java/org/apache/commons/collections4/functors/ComparatorPredicate.java
@@ -113,7 +113,7 @@ public class ComparatorPredicate<T> extends 
AbstractPredicate<T> implements Seri
     private static final long serialVersionUID = -1863209236504077399L;
 
     /**
-     * Factory to create the comparator predicate
+     * Creates the comparator predicate
      *
      * @param <T> the type that the predicate queries
      * @param object  the object to compare to
@@ -126,7 +126,7 @@ public class ComparatorPredicate<T> extends 
AbstractPredicate<T> implements Seri
     }
 
     /**
-     * Factory to create the comparator predicate
+     * Creates the comparator predicate
      *
      * @param <T> the type that the predicate queries
      * @param object  the object to compare to
diff --git 
a/src/main/java/org/apache/commons/collections4/functors/EqualPredicate.java 
b/src/main/java/org/apache/commons/collections4/functors/EqualPredicate.java
index 2d1a835bd..6143d1758 100644
--- a/src/main/java/org/apache/commons/collections4/functors/EqualPredicate.java
+++ b/src/main/java/org/apache/commons/collections4/functors/EqualPredicate.java
@@ -34,7 +34,7 @@ public final class EqualPredicate<T> extends 
AbstractPredicate<T> implements Ser
     private static final long serialVersionUID = 5633766978029907089L;
 
     /**
-     * Factory to create the predicate.
+     * Creates the predicate.
      *
      * @param <T> the type that the predicate queries
      * @param object  the object to compare to
@@ -48,7 +48,7 @@ public final class EqualPredicate<T> extends 
AbstractPredicate<T> implements Ser
     }
 
     /**
-     * Factory to create the identity predicate.
+     * Creates the identity predicate.
      *
      * @param <T> the type that the predicate queries
      * @param object  the object to compare to
diff --git 
a/src/main/java/org/apache/commons/collections4/functors/IdentityPredicate.java 
b/src/main/java/org/apache/commons/collections4/functors/IdentityPredicate.java
index 79ffc35bc..21522a4ae 100644
--- 
a/src/main/java/org/apache/commons/collections4/functors/IdentityPredicate.java
+++ 
b/src/main/java/org/apache/commons/collections4/functors/IdentityPredicate.java
@@ -33,7 +33,7 @@ public final class IdentityPredicate<T> extends 
AbstractPredicate<T> implements
     private static final long serialVersionUID = -89901658494523293L;
 
     /**
-     * Factory to create the identity predicate.
+     * Creates the identity predicate.
      *
      * @param <T> the type that the predicate queries
      * @param object  the object to compare to
diff --git 
a/src/main/java/org/apache/commons/collections4/functors/InstanceofPredicate.java
 
b/src/main/java/org/apache/commons/collections4/functors/InstanceofPredicate.java
index 3692ff900..06b74fde5 100644
--- 
a/src/main/java/org/apache/commons/collections4/functors/InstanceofPredicate.java
+++ 
b/src/main/java/org/apache/commons/collections4/functors/InstanceofPredicate.java
@@ -33,7 +33,7 @@ public final class InstanceofPredicate extends 
AbstractPredicate<Object> impleme
     private static final long serialVersionUID = -6682656911025165584L;
 
     /**
-     * Factory to create the identity predicate.
+     * Creates the identity predicate.
      *
      * @param type  the type to check for, may not be null
      * @return the predicate
diff --git 
a/src/main/java/org/apache/commons/collections4/functors/MapTransformer.java 
b/src/main/java/org/apache/commons/collections4/functors/MapTransformer.java
index 47e545e2d..af94dac1f 100644
--- a/src/main/java/org/apache/commons/collections4/functors/MapTransformer.java
+++ b/src/main/java/org/apache/commons/collections4/functors/MapTransformer.java
@@ -35,7 +35,7 @@ public final class MapTransformer<T, R> implements 
Transformer<T, R>, Serializab
     private static final long serialVersionUID = 862391807045468939L;
 
     /**
-     * Factory to create the transformer.
+     * Creates the transformer.
      * <p>
      * If the map is null, a transformer that always returns null is returned.
      *
diff --git 
a/src/main/java/org/apache/commons/collections4/functors/NonePredicate.java 
b/src/main/java/org/apache/commons/collections4/functors/NonePredicate.java
index a8b15b3af..9788c0e23 100644
--- a/src/main/java/org/apache/commons/collections4/functors/NonePredicate.java
+++ b/src/main/java/org/apache/commons/collections4/functors/NonePredicate.java
@@ -38,7 +38,7 @@ public final class NonePredicate<T> extends 
AbstractQuantifierPredicate<T> {
     private static final long serialVersionUID = 2007613066565892961L;
 
     /**
-     * Factory to create the predicate.
+     * Creates the predicate.
      * <p>
      * If the collection is size zero, the predicate always returns true.
      * </p>
@@ -58,7 +58,7 @@ public final class NonePredicate<T> extends 
AbstractQuantifierPredicate<T> {
     }
 
     /**
-     * Factory to create the predicate.
+     * Creates the predicate.
      * <p>
      * If the array is size zero, the predicate always returns true.
      * </p>
diff --git 
a/src/main/java/org/apache/commons/collections4/functors/NotPredicate.java 
b/src/main/java/org/apache/commons/collections4/functors/NotPredicate.java
index 344c4162b..228b5a545 100644
--- a/src/main/java/org/apache/commons/collections4/functors/NotPredicate.java
+++ b/src/main/java/org/apache/commons/collections4/functors/NotPredicate.java
@@ -33,7 +33,7 @@ public final class NotPredicate<T> extends 
AbstractPredicate<T> implements Predi
     private static final long serialVersionUID = -2654603322338049674L;
 
     /**
-     * Factory to create the not predicate.
+     * Creates the not predicate.
      *
      * @param <T> the type that the predicate queries
      * @param predicate  the predicate to decorate, not null
diff --git 
a/src/main/java/org/apache/commons/collections4/functors/NullIsExceptionPredicate.java
 
b/src/main/java/org/apache/commons/collections4/functors/NullIsExceptionPredicate.java
index 84a20ab0c..dae91a2f9 100644
--- 
a/src/main/java/org/apache/commons/collections4/functors/NullIsExceptionPredicate.java
+++ 
b/src/main/java/org/apache/commons/collections4/functors/NullIsExceptionPredicate.java
@@ -34,7 +34,7 @@ public final class NullIsExceptionPredicate<T> extends 
AbstractPredicate<T> impl
     private static final long serialVersionUID = 3243449850504576071L;
 
     /**
-     * Factory to create the null exception predicate.
+     * Creates the null exception predicate.
      *
      * @param <T> the type that the predicate queries
      * @param predicate  the predicate to decorate, not null
diff --git 
a/src/main/java/org/apache/commons/collections4/functors/NullIsFalsePredicate.java
 
b/src/main/java/org/apache/commons/collections4/functors/NullIsFalsePredicate.java
index f4b6bf037..5ad285975 100644
--- 
a/src/main/java/org/apache/commons/collections4/functors/NullIsFalsePredicate.java
+++ 
b/src/main/java/org/apache/commons/collections4/functors/NullIsFalsePredicate.java
@@ -33,7 +33,7 @@ public final class NullIsFalsePredicate<T> extends 
AbstractPredicate<T> implemen
     private static final long serialVersionUID = -2997501534564735525L;
 
     /**
-     * Factory to create the null false predicate.
+     * Creates the null false predicate.
      *
      * @param <T> the type that the predicate queries
      * @param predicate  the predicate to decorate, not null
diff --git 
a/src/main/java/org/apache/commons/collections4/functors/NullIsTruePredicate.java
 
b/src/main/java/org/apache/commons/collections4/functors/NullIsTruePredicate.java
index 556d0d6fb..19d695f4b 100644
--- 
a/src/main/java/org/apache/commons/collections4/functors/NullIsTruePredicate.java
+++ 
b/src/main/java/org/apache/commons/collections4/functors/NullIsTruePredicate.java
@@ -33,7 +33,7 @@ public final class NullIsTruePredicate<T> extends 
AbstractPredicate<T> implement
     private static final long serialVersionUID = -7625133768987126273L;
 
     /**
-     * Factory to create the null true predicate.
+     * Creates the null true predicate.
      *
      * @param <T> the type that the predicate queries
      * @param predicate  the predicate to decorate, not null
diff --git 
a/src/main/java/org/apache/commons/collections4/functors/OnePredicate.java 
b/src/main/java/org/apache/commons/collections4/functors/OnePredicate.java
index 370e66c5d..021379389 100644
--- a/src/main/java/org/apache/commons/collections4/functors/OnePredicate.java
+++ b/src/main/java/org/apache/commons/collections4/functors/OnePredicate.java
@@ -38,7 +38,7 @@ public final class OnePredicate<T> extends 
AbstractQuantifierPredicate<T> {
     private static final long serialVersionUID = -8125389089924745785L;
 
     /**
-     * Factory to create the predicate.
+     * Creates the predicate.
      *
      * @param <T> the type that the predicate queries
      * @param predicates  the predicates to check, cloned, not null
@@ -52,7 +52,7 @@ public final class OnePredicate<T> extends 
AbstractQuantifierPredicate<T> {
     }
 
     /**
-     * Factory to create the predicate.
+     * Creates the predicate.
      * <p>
      * If the array is size zero, the predicate always returns false.
      * If the array is size one, then that predicate is returned.
diff --git 
a/src/main/java/org/apache/commons/collections4/functors/OrPredicate.java 
b/src/main/java/org/apache/commons/collections4/functors/OrPredicate.java
index a6f69c2ce..b547cd229 100644
--- a/src/main/java/org/apache/commons/collections4/functors/OrPredicate.java
+++ b/src/main/java/org/apache/commons/collections4/functors/OrPredicate.java
@@ -33,7 +33,7 @@ public final class OrPredicate<T> extends 
AbstractPredicate<T> implements Predic
     private static final long serialVersionUID = -8791518325735182855L;
 
     /**
-     * Factory to create the predicate.
+     * Creates the predicate.
      *
      * @param <T> the type that the predicate queries
      * @param predicate1  the first predicate to check, not null
diff --git 
a/src/main/java/org/apache/commons/collections4/functors/TransformedPredicate.java
 
b/src/main/java/org/apache/commons/collections4/functors/TransformedPredicate.java
index 8269da30f..6aa2b8601 100644
--- 
a/src/main/java/org/apache/commons/collections4/functors/TransformedPredicate.java
+++ 
b/src/main/java/org/apache/commons/collections4/functors/TransformedPredicate.java
@@ -35,7 +35,7 @@ public final class TransformedPredicate<T> extends 
AbstractPredicate<T> implemen
     private static final long serialVersionUID = -5596090919668315834L;
 
     /**
-     * Factory to create the predicate.
+     * Creates the predicate.
      *
      * @param <T> the type that the predicate queries
      * @param transformer  the transformer to call
diff --git 
a/src/main/java/org/apache/commons/collections4/functors/TransformerPredicate.java
 
b/src/main/java/org/apache/commons/collections4/functors/TransformerPredicate.java
index b34fada5c..4e7c91efb 100644
--- 
a/src/main/java/org/apache/commons/collections4/functors/TransformerPredicate.java
+++ 
b/src/main/java/org/apache/commons/collections4/functors/TransformerPredicate.java
@@ -35,7 +35,7 @@ public final class TransformerPredicate<T> extends 
AbstractPredicate<T> implemen
     private static final long serialVersionUID = -2407966402920578741L;
 
     /**
-     * Factory to create the predicate.
+     * Creates the predicate.
      *
      * @param <T> the type that the predicate queries
      * @param transformer  the transformer to decorate
diff --git 
a/src/main/java/org/apache/commons/collections4/functors/UniquePredicate.java 
b/src/main/java/org/apache/commons/collections4/functors/UniquePredicate.java
index a91f4537e..72906f1d0 100644
--- 
a/src/main/java/org/apache/commons/collections4/functors/UniquePredicate.java
+++ 
b/src/main/java/org/apache/commons/collections4/functors/UniquePredicate.java
@@ -35,7 +35,7 @@ public final class UniquePredicate<T>  extends 
AbstractPredicate<T> implements S
     private static final long serialVersionUID = -3319417438027438040L;
 
     /**
-     * Factory to create the predicate.
+     * Creates the predicate.
      *
      * @param <T> the type that the predicate queries
      * @return the predicate

Reply via email to