@@ -121,7 +121,7 @@ public static Predicate<MonetaryAmount> isCurrency(
121121 /**
122122 * Create predicate that filters by CurrencyUnit.
123123 *
124- * @param currencyUnit the target {@link javax.money.CurrencyUnit}
124+ * @param currencies the target {@link javax.money.CurrencyUnit} instances to be filtered.
125125 * @return the predicate from CurrencyUnit
126126 */
127127 public static Predicate <MonetaryAmount > fiterByExcludingCurrency (
@@ -136,7 +136,7 @@ public static Predicate<MonetaryAmount> fiterByExcludingCurrency(
136136 /**
137137 * Creates filter using isGreaterThan in MonetaryAmount.
138138 *
139- * @param amount
139+ * @param amount the amount to be compared, not null.
140140 * @return the filter with isGreaterThan conditions
141141 */
142142 public static Predicate <MonetaryAmount > isGreaterThan (MonetaryAmount amount ){
@@ -146,7 +146,7 @@ public static Predicate<MonetaryAmount> isGreaterThan(MonetaryAmount amount){
146146 /**
147147 * Creates filter using isGreaterThanOrEqualTo in MonetaryAmount
148148 *
149- * @param amount
149+ * @param amount the amount to be compared, not null.
150150 * @return the filter with isGreaterThanOrEqualTo conditions
151151 */
152152 public static Predicate <MonetaryAmount > isGreaterThanOrEqualTo (MonetaryAmount amount ){
@@ -156,7 +156,7 @@ public static Predicate<MonetaryAmount> isGreaterThanOrEqualTo(MonetaryAmount am
156156 /**
157157 * Creates filter using isLessThan in MonetaryAmount
158158 *
159- * @param amount
159+ * @param amount the amount to be compared, not null.
160160 * @return the filter with isLessThan conditions
161161 */
162162 public static Predicate <MonetaryAmount > isLessThan (MonetaryAmount amount ){
@@ -166,7 +166,7 @@ public static Predicate<MonetaryAmount> isLessThan(MonetaryAmount amount){
166166 /**
167167 * Creates filter using isLessThanOrEqualTo in MonetaryAmount
168168 *
169- * @param amount
169+ * @param amount the amount to be compared, not null.
170170 * @return the filter with isLessThanOrEqualTo conditions
171171 */
172172 public static Predicate <MonetaryAmount > isLessThanOrEqualTo (MonetaryAmount amount ){
0 commit comments