Skip to content

Commit

Permalink
Javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Oct 18, 2024
1 parent 01f5fdd commit 32a0b77
Show file tree
Hide file tree
Showing 18 changed files with 24 additions and 24 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -66,7 +66,7 @@ public static <T> Predicate<T> allPredicate(final Collection<? extends Predicate
}

/**
* 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.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -63,7 +63,7 @@ public static <T> Predicate<T> anyPredicate(final Collection<? extends Predicate
}

/**
* 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.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ public enum Criterion {
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
Expand All @@ -126,7 +126,7 @@ public static <T> Predicate<T> comparatorPredicate(final T object, final Compara
}

/**
* 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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -48,7 +48,7 @@ public static <T> Predicate<T> equalPredicate(final T object) {
}

/**
* 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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand All @@ -58,7 +58,7 @@ public static <T> Predicate<T> nonePredicate(final Collection<? extends Predicat
}

/**
* Factory to create the predicate.
* Creates the predicate.
* <p>
* If the array is size zero, the predicate always returns true.
* </p>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -52,7 +52,7 @@ public static <T> Predicate<T> onePredicate(final Collection<? extends Predicate
}

/**
* 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.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 32a0b77

Please sign in to comment.