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

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


The following commit(s) were added to refs/heads/1.X by this push:
     new 5e8b87a8 Javadoc
5e8b87a8 is described below

commit 5e8b87a83226a719df24ebfedac4dedf8d442fdd
Author: Gary Gregory <[email protected]>
AuthorDate: Tue Jun 30 13:42:06 2026 +0000

    Javadoc
---
 .../commons/beanutils/BaseDynaBeanMapDecorator.java  |  2 +-
 .../org/apache/commons/beanutils/BeanComparator.java |  2 +-
 .../java/org/apache/commons/beanutils/BeanUtils.java |  4 ++--
 .../apache/commons/beanutils/ConstructorUtils.java   | 20 ++++++++++----------
 .../commons/beanutils/ContextClassLoaderLocal.java   |  2 +-
 .../java/org/apache/commons/beanutils/Converter.java |  2 +-
 .../apache/commons/beanutils/WeakFastHashMap.java    |  6 +++---
 .../beanutils/converters/AbstractConverter.java      |  6 +++---
 .../beanutils/locale/BaseLocaleConverter.java        |  4 ++--
 9 files changed, 24 insertions(+), 24 deletions(-)

diff --git 
a/src/main/java/org/apache/commons/beanutils/BaseDynaBeanMapDecorator.java 
b/src/main/java/org/apache/commons/beanutils/BaseDynaBeanMapDecorator.java
index a738b130..fb00c0c0 100644
--- a/src/main/java/org/apache/commons/beanutils/BaseDynaBeanMapDecorator.java
+++ b/src/main/java/org/apache/commons/beanutils/BaseDynaBeanMapDecorator.java
@@ -45,7 +45,7 @@ import java.util.Set;
  *    {@code DynaBeanMapDecorator} could still remain with 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 BeanUtils 1.9.0
  */
 public abstract class BaseDynaBeanMapDecorator<K> implements Map<K, Object> {
diff --git a/src/main/java/org/apache/commons/beanutils/BeanComparator.java 
b/src/main/java/org/apache/commons/beanutils/BeanComparator.java
index 371e34fa..09154cfb 100644
--- a/src/main/java/org/apache/commons/beanutils/BeanComparator.java
+++ b/src/main/java/org/apache/commons/beanutils/BeanComparator.java
@@ -42,7 +42,7 @@ import 
org.apache.commons.collections.comparators.ComparableComparator;
  * property values occur.
  * </p>
  *
- * @param <T> the type of beans to be compared by this {@code Comparator}
+ * @param <T> The type of beans to be compared by this {@code Comparator}
  */
 public class BeanComparator<T> implements Comparator<T>, Serializable {
 
diff --git a/src/main/java/org/apache/commons/beanutils/BeanUtils.java 
b/src/main/java/org/apache/commons/beanutils/BeanUtils.java
index ae4974f7..75435e21 100644
--- a/src/main/java/org/apache/commons/beanutils/BeanUtils.java
+++ b/src/main/java/org/apache/commons/beanutils/BeanUtils.java
@@ -116,8 +116,8 @@ public class BeanUtils {
     /**
      * Create 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/beanutils/ConstructorUtils.java 
b/src/main/java/org/apache/commons/beanutils/ConstructorUtils.java
index 932f79a3..f4d9a5bd 100644
--- a/src/main/java/org/apache/commons/beanutils/ConstructorUtils.java
+++ b/src/main/java/org/apache/commons/beanutils/ConstructorUtils.java
@@ -52,7 +52,7 @@ public class ConstructorUtils {
     /**
      * Returns a constructor with single argument.
      *
-     * @param <T> the type of the constructor
+     * @param <T> The type of the constructor
      * @param klass the class to be constructed
      * @param parameterType The constructor parameter type
      * @return null if matching accessible constructor cannot be found.
@@ -70,7 +70,7 @@ public class ConstructorUtils {
     /**
      * Returns a constructor given a class and signature.
      *
-     * @param <T> the type to be constructed
+     * @param <T> The type to be constructed
      * @param klass the class to be constructed
      * @param parameterTypes the parameter array
      * @return null if matching accessible constructor cannot be found
@@ -92,7 +92,7 @@ public class ConstructorUtils {
     /**
      * Returns accessible version of the given constructor.
      *
-     * @param <T> the type of the constructor
+     * @param <T> The type of the constructor
      * @param ctor prototype constructor object.
      * @return {@code null} if accessible constructor cannot be found.
      * @see SecurityManager
@@ -126,7 +126,7 @@ public class ConstructorUtils {
      * are assignment compatible with the parameter types.
      * The first matching constructor is returned.</p>
      *
-     * @param <T> the type of the class to be inspected
+     * @param <T> The type of the class to be inspected
      * @param clazz find constructor for this class
      * @param parameterTypes find method with compatible parameters
      * @return a valid Constructor object. If there's no matching constructor, 
returns {@code null}.
@@ -215,7 +215,7 @@ public class ConstructorUtils {
      *
      * <p>The signatures should be assignment compatible.</p>
      *
-     * @param <T> the type of the object to be constructed
+     * @param <T> The type of the object to be constructed
      * @param klass the class to be constructed.
      * @param arg the actual argument. May be null (this will result in 
calling the default constructor).
      * @return new instance of {@code klazz}
@@ -243,7 +243,7 @@ public class ConstructorUtils {
      *
      * <p>The signatures should be assignment compatible.</p>
      *
-     * @param <T> the type of the object to be constructed
+     * @param <T> The type of the object to be constructed
      * @param klass the class to be constructed.
      * @param args actual argument array. May be null (this will result in 
calling the default constructor).
      * @return new instance of {@code klazz}
@@ -277,7 +277,7 @@ public class ConstructorUtils {
      *
      * <p>The signatures should be assignment compatible.</p>
      *
-     * @param <T> the type of the object to be constructed
+     * @param <T> The type of the object to be constructed
      * @param klass the class to be constructed.
      * @param args actual argument array. May be null (this will result in 
calling the default constructor).
      * @param parameterTypes parameter types array
@@ -321,7 +321,7 @@ public class ConstructorUtils {
      *
      * <p>The signatures should match exactly.</p>
      *
-     * @param <T> the type of the object to be constructed
+     * @param <T> The type of the object to be constructed
      * @param klass the class to be constructed.
      * @param arg the actual argument. May be null (this will result in 
calling the default constructor).
      * @return new instance of {@code klazz}
@@ -349,7 +349,7 @@ public class ConstructorUtils {
      *
      * <p>The signatures should match exactly.</p>
      *
-     * @param <T> the type of the object to be constructed
+     * @param <T> The type of the object to be constructed
      * @param klass the class to be constructed.
      * @param args actual argument array. May be null (this will result in 
calling the default constructor).
      * @return new instance of {@code klazz}
@@ -384,7 +384,7 @@ public class ConstructorUtils {
      *
      * <p>The signatures should match exactly.</p>
      *
-     * @param <T> the type of the object to be constructed
+     * @param <T> The type of the object to be constructed
      * @param klass the class to be constructed.
      * @param args actual argument array. May be null (this will result in 
calling the default constructor).
      * @param parameterTypes parameter types array
diff --git 
a/src/main/java/org/apache/commons/beanutils/ContextClassLoaderLocal.java 
b/src/main/java/org/apache/commons/beanutils/ContextClassLoaderLocal.java
index 52753db5..83ce9ad9 100644
--- a/src/main/java/org/apache/commons/beanutils/ContextClassLoaderLocal.java
+++ b/src/main/java/org/apache/commons/beanutils/ContextClassLoaderLocal.java
@@ -99,7 +99,7 @@ import java.util.WeakHashMap;
  * containers required each component to load the full set of classes it
  * needs, ie 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/beanutils/Converter.java 
b/src/main/java/org/apache/commons/beanutils/Converter.java
index d51051ba..0ce441c8 100644
--- a/src/main/java/org/apache/commons/beanutils/Converter.java
+++ b/src/main/java/org/apache/commons/beanutils/Converter.java
@@ -39,7 +39,7 @@ public interface Converter {
      * Convert the specified input object into an output object of the
      * specified type.
      *
-     * @param <T> the desired result type
+     * @param <T> The desired result type
      * @param type Data type to which this value should be converted
      * @param value The input value to be converted
      * @return The converted value
diff --git a/src/main/java/org/apache/commons/beanutils/WeakFastHashMap.java 
b/src/main/java/org/apache/commons/beanutils/WeakFastHashMap.java
index cc94beed..0471fe15 100644
--- a/src/main/java/org/apache/commons/beanutils/WeakFastHashMap.java
+++ b/src/main/java/org/apache/commons/beanutils/WeakFastHashMap.java
@@ -58,8 +58,8 @@ import java.util.WeakHashMap;
  * <a 
href="https://www.cs.umd.edu/~pugh/java/memoryModel/DoubleCheckedLocking.html";>
  * Double-Checked Locking Idiom Is Broken Declaration</a>.</p>
  *
- * @param <K> the type of keys maintained by this map
- * @param <V> the type of mapped values
+ * @param <K> The type of keys maintained by this map
+ * @param <V> The type of mapped values
  * @since Commons Collections 1.0
  */
 class WeakFastHashMap<K, V> extends HashMap<K, V> {
@@ -67,7 +67,7 @@ class WeakFastHashMap<K, V> extends HashMap<K, V> {
     /**
      * Abstract collection implementation shared by keySet(), values() and 
entrySet().
      *
-     * @param <E> the element type
+     * @param <E> The element type
      */
     private abstract class CollectionView<E> implements Collection<E> {
 
diff --git 
a/src/main/java/org/apache/commons/beanutils/converters/AbstractConverter.java 
b/src/main/java/org/apache/commons/beanutils/converters/AbstractConverter.java
index fe2031a5..215c0a01 100644
--- 
a/src/main/java/org/apache/commons/beanutils/converters/AbstractConverter.java
+++ 
b/src/main/java/org/apache/commons/beanutils/converters/AbstractConverter.java
@@ -116,7 +116,7 @@ public abstract class AbstractConverter implements 
Converter {
      * Convert the input object into an output object of the
      * specified type.
      *
-     * @param <T> the target type of the conversion
+     * @param <T> The target type of the conversion
      * @param type Data type to which this value should be converted
      * @param value The input value to be converted
      * @return The converted value.
@@ -212,7 +212,7 @@ public abstract class AbstractConverter implements 
Converter {
      * Therefore, we can cast to it (which is required to fulfill the contract
      * of the method signature).
      *
-     * @param <T> the type of the result object
+     * @param <T> The type of the result object
      * @param targetClass the target class of the conversion
      * @param value the value to be converted
      * @return the converted value
@@ -327,7 +327,7 @@ public abstract class AbstractConverter implements 
Converter {
      * If a default value has been specified, then it is returned (after a cast
      * to the desired target class); otherwise a ConversionException is thrown.
      *
-     * @param <T> the desired target type
+     * @param <T> The desired target type
      * @param type Data type to which this value should be converted.
      * @return The default value.
      * @throws ConversionException if no default value has been
diff --git 
a/src/main/java/org/apache/commons/beanutils/locale/BaseLocaleConverter.java 
b/src/main/java/org/apache/commons/beanutils/locale/BaseLocaleConverter.java
index 2ad049c7..190d1259 100644
--- a/src/main/java/org/apache/commons/beanutils/locale/BaseLocaleConverter.java
+++ b/src/main/java/org/apache/commons/beanutils/locale/BaseLocaleConverter.java
@@ -41,7 +41,7 @@ public abstract class BaseLocaleConverter implements 
LocaleConverter {
      * target type. If this is the case, the passed in result object is cast to
      * the correct target type. Otherwise, an exception is thrown.
      *
-     * @param <T> the desired result type
+     * @param <T> The desired result type
      * @param type the target class of the conversion
      * @param result the conversion result object
      * @return the result cast to the target class
@@ -254,7 +254,7 @@ public abstract class BaseLocaleConverter implements 
LocaleConverter {
      * given target type. If the default value is not conform to the given 
type,
      * an exception is thrown.
      *
-     * @param <T> the desired target type
+     * @param <T> The desired target type
      * @param type the target class of the conversion
      * @return the default value in the given target type
      * @throws ConversionException if the default object is not compatible with

Reply via email to