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

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


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

commit 1e1b96e3320b2aa7a2e9a012899f04430faacd1d
Author: Gary Gregory <[email protected]>
AuthorDate: Tue Jun 30 13:42:40 2026 +0000

    Javadoc
---
 .../org/apache/commons/beanutils2/BaseDynaBeanMapDecorator.java     | 2 +-
 src/main/java/org/apache/commons/beanutils2/BeanComparator.java     | 6 +++---
 src/main/java/org/apache/commons/beanutils2/BeanPredicate.java      | 2 +-
 .../apache/commons/beanutils2/BeanToPropertyValueTransformer.java   | 4 ++--
 src/main/java/org/apache/commons/beanutils2/BeanUtils.java          | 4 ++--
 src/main/java/org/apache/commons/beanutils2/BeanUtilsBean.java      | 2 +-
 .../java/org/apache/commons/beanutils2/ContextClassLoaderLocal.java | 2 +-
 src/main/java/org/apache/commons/beanutils2/ConvertUtilsBean.java   | 4 ++--
 src/main/java/org/apache/commons/beanutils2/Converter.java          | 2 +-
 .../org/apache/commons/beanutils2/converters/ClassConverter.java    | 2 +-
 10 files changed, 15 insertions(+), 15 deletions(-)

diff --git 
a/src/main/java/org/apache/commons/beanutils2/BaseDynaBeanMapDecorator.java 
b/src/main/java/org/apache/commons/beanutils2/BaseDynaBeanMapDecorator.java
index 5bcc8913..86ba5dbb 100644
--- a/src/main/java/org/apache/commons/beanutils2/BaseDynaBeanMapDecorator.java
+++ b/src/main/java/org/apache/commons/beanutils2/BaseDynaBeanMapDecorator.java
@@ -44,7 +44,7 @@ import java.util.Set;
  * compatible parameters.
  * </p>
  *
- * @param <K> the type of the keys in the decorated map
+ * @param <K> The type of the keys in the decorated map
  * @since 1.9.0
  */
 public abstract class BaseDynaBeanMapDecorator<K> implements Map<K, Object> {
diff --git a/src/main/java/org/apache/commons/beanutils2/BeanComparator.java 
b/src/main/java/org/apache/commons/beanutils2/BeanComparator.java
index 9dfb7168..a6718606 100644
--- a/src/main/java/org/apache/commons/beanutils2/BeanComparator.java
+++ b/src/main/java/org/apache/commons/beanutils2/BeanComparator.java
@@ -33,8 +33,8 @@ import java.util.Comparator;
  * {@code ClassCastException} exceptions can be thrown if unexpected property 
values occur.
  * </p>
  *
- * @param <T> the type of beans to be compared by this {@code Comparator}
- * @param <V> the type of property to compare
+ * @param <T> The type of beans to be compared by this {@code Comparator}
+ * @param <V> The type of property to compare
  */
 public class BeanComparator<T, V> implements Comparator<T> {
 
@@ -45,7 +45,7 @@ public class BeanComparator<T, V> implements Comparator<T> {
      * {@link java.util.SortedMap SortedMap}.
      * </p>
      *
-     * @param <E> the type of objects compared by this comparator
+     * @param <E> The type of objects compared by this comparator
      * @see java.util.Collections#reverseOrder()
      */
     private static final class NaturalOrderComparator<E extends Comparable<? 
super E>> implements Comparator<E> {
diff --git a/src/main/java/org/apache/commons/beanutils2/BeanPredicate.java 
b/src/main/java/org/apache/commons/beanutils2/BeanPredicate.java
index a7227114..325cc102 100644
--- a/src/main/java/org/apache/commons/beanutils2/BeanPredicate.java
+++ b/src/main/java/org/apache/commons/beanutils2/BeanPredicate.java
@@ -28,7 +28,7 @@ import org.apache.commons.logging.LogFactory;
  * Predicate implementation that applies the given {@code Predicate} to the 
result of calling the given property getter.
  * </p>
  *
- * @param <T> the type of the input to the predicate
+ * @param <T> The type of the input to the predicate
  */
 public class BeanPredicate<T> implements Predicate<T> {
 
diff --git 
a/src/main/java/org/apache/commons/beanutils2/BeanToPropertyValueTransformer.java
 
b/src/main/java/org/apache/commons/beanutils2/BeanToPropertyValueTransformer.java
index cdf529c7..290b86d6 100644
--- 
a/src/main/java/org/apache/commons/beanutils2/BeanToPropertyValueTransformer.java
+++ 
b/src/main/java/org/apache/commons/beanutils2/BeanToPropertyValueTransformer.java
@@ -56,8 +56,8 @@ import org.apache.commons.logging.LogFactory;
  * <li>The address object has a {@code getCity()} method which returns an 
object which represents the city in which a person lives.</li>
  * </ul>
  *
- * @param <T> the type of the input to the function
- * @param <R> the type of the result of the function
+ * @param <T> The type of the input to the function
+ * @param <R> The type of the result of the function
  * @see org.apache.commons.beanutils2.PropertyUtils
  * @see java.util.function.Function
  */
diff --git a/src/main/java/org/apache/commons/beanutils2/BeanUtils.java 
b/src/main/java/org/apache/commons/beanutils2/BeanUtils.java
index ac56b438..ca5b71dc 100644
--- a/src/main/java/org/apache/commons/beanutils2/BeanUtils.java
+++ b/src/main/java/org/apache/commons/beanutils2/BeanUtils.java
@@ -107,8 +107,8 @@ public final class BeanUtils {
     /**
      * Creates a cache.
      *
-     * @param <K> the key type of the cache
-     * @param <V> the value type of the cache
+     * @param <K> The key type of the cache
+     * @param <V> The value type of the cache
      * @return a new cache
      * @since 1.8.0
      */
diff --git a/src/main/java/org/apache/commons/beanutils2/BeanUtilsBean.java 
b/src/main/java/org/apache/commons/beanutils2/BeanUtilsBean.java
index ca6d67ca..a30fdd9e 100644
--- a/src/main/java/org/apache/commons/beanutils2/BeanUtilsBean.java
+++ b/src/main/java/org/apache/commons/beanutils2/BeanUtilsBean.java
@@ -203,7 +203,7 @@ public class BeanUtilsBean {
      * Converts the value to an object of the specified class (if possible).
      * </p>
      *
-     * @param <R> the type of the class for the return value.
+     * @param <R> The type of the class for the return value.
      * @param value Value to be converted (may be null)
      * @param type  Class of the value to be converted to
      * @return The converted value
diff --git 
a/src/main/java/org/apache/commons/beanutils2/ContextClassLoaderLocal.java 
b/src/main/java/org/apache/commons/beanutils2/ContextClassLoaderLocal.java
index 43749d48..a758fa23 100644
--- a/src/main/java/org/apache/commons/beanutils2/ContextClassLoaderLocal.java
+++ b/src/main/java/org/apache/commons/beanutils2/ContextClassLoaderLocal.java
@@ -90,7 +90,7 @@ import java.util.WeakHashMap;
  * avoided providing classes loaded via a "shared" classloader.
  * </p>
  *
- * @param <T> the type of data stored in an instance
+ * @param <T> The type of data stored in an instance
  * @see Thread#getContextClassLoader
  */
 public class ContextClassLoaderLocal<T> {
diff --git a/src/main/java/org/apache/commons/beanutils2/ConvertUtilsBean.java 
b/src/main/java/org/apache/commons/beanutils2/ConvertUtilsBean.java
index 67f1dd7b..ac681322 100644
--- a/src/main/java/org/apache/commons/beanutils2/ConvertUtilsBean.java
+++ b/src/main/java/org/apache/commons/beanutils2/ConvertUtilsBean.java
@@ -292,7 +292,7 @@ public class ConvertUtilsBean {
     /**
      * Delegates to the new {@link ConvertUtilsBean#convert(Object, Class)} 
method.
      *
-     * @param <R> the type of the class for the return value.
+     * @param <R> The type of the class for the return value.
      * @param value Value to be converted (may be null)
      * @param clazz Java class to be converted to (must not be null)
      * @return The converted value or null if value is null
@@ -305,7 +305,7 @@ public class ConvertUtilsBean {
     /**
      * Delegates to the new {@link ConvertUtilsBean#convert(Object, Class)} 
method.
      *
-     * @param <T> the type of the class for the return value.
+     * @param <T> The type of the class for the return value.
      * @param value Array of values to be converted
      * @param clazz Java array or element class to be converted to (must not 
be null)
      * @return The converted value
diff --git a/src/main/java/org/apache/commons/beanutils2/Converter.java 
b/src/main/java/org/apache/commons/beanutils2/Converter.java
index 17117e8c..4035b569 100644
--- a/src/main/java/org/apache/commons/beanutils2/Converter.java
+++ b/src/main/java/org/apache/commons/beanutils2/Converter.java
@@ -33,7 +33,7 @@ package org.apache.commons.beanutils2;
  * recommended that they be written in a thread-safe manner anyway.
  * </p>
  *
- * @param <T> the convert type.
+ * @param <T> The convert type.
  * @since 1.3
  */
 @FunctionalInterface
diff --git 
a/src/main/java/org/apache/commons/beanutils2/converters/ClassConverter.java 
b/src/main/java/org/apache/commons/beanutils2/converters/ClassConverter.java
index 1565f6a3..70313c13 100644
--- a/src/main/java/org/apache/commons/beanutils2/converters/ClassConverter.java
+++ b/src/main/java/org/apache/commons/beanutils2/converters/ClassConverter.java
@@ -23,7 +23,7 @@ package org.apache.commons.beanutils2.converters;
  * <p>
  * Can be configured to either return a <em>default value</em> or throw a 
{@code ConversionException} if a conversion error occurs.
  *
- * @param <T> the type of the class.
+ * @param <T> The type of the class.
  * @since 1.4
  */
 public final class ClassConverter<T> extends AbstractConverter<Class<T>> {

Reply via email to