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 088e3cda Javadoc
088e3cda is described below

commit 088e3cda1aa112f1957bf0f205e1f1b7adfa60c3
Author: Gary Gregory <[email protected]>
AuthorDate: Sat Jul 11 11:21:39 2026 -0400

    Javadoc
---
 .../beanutils2/BaseDynaBeanMapDecorator.java       |  2 +-
 .../beanutils2/BeanAccessLanguageException.java    |  2 +-
 .../apache/commons/beanutils2/BeanComparator.java  |  4 +-
 .../commons/beanutils2/BeanIntrospectionData.java  | 14 +++---
 .../commons/beanutils2/BeanIntrospector.java       |  2 +-
 .../org/apache/commons/beanutils2/BeanMap.java     | 52 +++++++++++-----------
 .../apache/commons/beanutils2/BeanPredicate.java   |  6 +--
 .../apache/commons/beanutils2/BeanUtilsBean.java   |  8 ++--
 .../beanutils2/ContextClassLoaderLocal.java        |  2 +-
 .../beanutils2/DefaultBeanIntrospector.java        |  6 +--
 .../beanutils2/DefaultIntrospectionContext.java    |  2 +-
 .../beanutils2/FluentPropertyBeanIntrospector.java | 10 ++---
 .../commons/beanutils2/IntrospectionContext.java   | 10 ++---
 .../apache/commons/beanutils2/LazyDynaList.java    |  4 +-
 .../org/apache/commons/beanutils2/MethodUtils.java |  6 +--
 .../commons/beanutils2/NestedNullException.java    |  2 +-
 .../apache/commons/beanutils2/PropertyUtils.java   |  4 +-
 .../commons/beanutils2/PropertyUtilsBean.java      | 14 +++---
 .../SuppressPropertiesBeanIntrospector.java        |  2 +-
 .../apache/commons/beanutils2/WrapDynaBean.java    |  2 +-
 .../apache/commons/beanutils2/WrapDynaClass.java   |  8 ++--
 .../beanutils2/converters/AbstractConverter.java   | 12 ++---
 .../beanutils2/converters/NumberConverter.java     |  2 +-
 .../beanutils2/locale/BaseLocaleConverter.java     | 16 +++----
 .../commons/beanutils2/locale/LocaleBeanUtils.java |  2 +-
 .../beanutils2/locale/LocaleBeanUtilsBean.java     |  4 +-
 .../beanutils2/locale/LocaleConvertUtils.java      |  2 +-
 .../beanutils2/locale/LocaleConvertUtilsBean.java  |  2 +-
 .../locale/converters/DateLocaleConverter.java     |  2 +-
 .../beanutils2/BeanIntrospectionDataTest.java      |  2 +-
 .../DefaultIntrospectionContextTest.java           |  2 +-
 .../FluentPropertyBeanIntrospectorTest.java        |  6 +--
 .../commons/beanutils2/PropertyUtilsTest.java      |  2 +-
 .../commons/beanutils2/bugs/Jira339Test.java       |  2 +-
 .../commons/beanutils2/bugs/Jira458Test.java       |  2 +-
 .../commons/beanutils2/bugs/Jira465Test.java       |  2 +-
 .../memoryleaktests/pojotests/CustomInteger.java   |  2 +-
 .../commons/beanutils2/sql/TestResultSet.java      |  2 +-
 .../beanutils2/sql/TestResultSetMetaData.java      |  2 +-
 39 files changed, 114 insertions(+), 114 deletions(-)

diff --git 
a/src/main/java/org/apache/commons/beanutils2/BaseDynaBeanMapDecorator.java 
b/src/main/java/org/apache/commons/beanutils2/BaseDynaBeanMapDecorator.java
index 4d513314..f6edf5ca 100644
--- a/src/main/java/org/apache/commons/beanutils2/BaseDynaBeanMapDecorator.java
+++ b/src/main/java/org/apache/commons/beanutils2/BaseDynaBeanMapDecorator.java
@@ -171,7 +171,7 @@ public abstract class BaseDynaBeanMapDecorator<K> 
implements Map<K, Object> {
     /**
      * Converts the name of a property to the key type of this decorator.
      *
-     * @param propertyName the name of a property
+     * @param propertyName The name of a property
      * @return The converted key to be used in the decorated map
      */
     protected abstract K convertKey(String propertyName);
diff --git 
a/src/main/java/org/apache/commons/beanutils2/BeanAccessLanguageException.java 
b/src/main/java/org/apache/commons/beanutils2/BeanAccessLanguageException.java
index 1aed78a5..df7cdf18 100644
--- 
a/src/main/java/org/apache/commons/beanutils2/BeanAccessLanguageException.java
+++ 
b/src/main/java/org/apache/commons/beanutils2/BeanAccessLanguageException.java
@@ -36,7 +36,7 @@ public class BeanAccessLanguageException extends 
IllegalArgumentException {
     /**
      * Constructs a {@code BeanAccessLanguageException} without a detail 
message.
      *
-     * @param message the detail message explaining this exception
+     * @param message The detail message explaining this exception
      */
     public BeanAccessLanguageException(final String message) {
         super(message);
diff --git a/src/main/java/org/apache/commons/beanutils2/BeanComparator.java 
b/src/main/java/org/apache/commons/beanutils2/BeanComparator.java
index c78e362b..46d2fa46 100644
--- a/src/main/java/org/apache/commons/beanutils2/BeanComparator.java
+++ b/src/main/java/org/apache/commons/beanutils2/BeanComparator.java
@@ -220,8 +220,8 @@ public class BeanComparator<T, V> implements Comparator<T> {
      * Compares the given values using the internal {@code Comparator}. 
<em>Note</em>: This comparison cannot be performed in a type-safe way; so
      * {@code ClassCastException} exceptions may be thrown.
      *
-     * @param val1 the first value to be compared
-     * @param val2 the second value to be compared
+     * @param val1 The first value to be compared
+     * @param val2 The second value to be compared
      * @return The result of the comparison
      */
     @SuppressWarnings({ "unchecked", "rawtypes" })
diff --git 
a/src/main/java/org/apache/commons/beanutils2/BeanIntrospectionData.java 
b/src/main/java/org/apache/commons/beanutils2/BeanIntrospectionData.java
index f7c85aad..7f0cb455 100644
--- a/src/main/java/org/apache/commons/beanutils2/BeanIntrospectionData.java
+++ b/src/main/java/org/apache/commons/beanutils2/BeanIntrospectionData.java
@@ -44,7 +44,7 @@ final class BeanIntrospectionData {
      * Initializes the map with the names of the write methods for the 
supported properties. The method names - if defined - need to be stored 
separately
      * because they may get lost when the GC claims soft references used by 
the {@code PropertyDescriptor} objects.
      *
-     * @param descs the array with the descriptors of the available properties
+     * @param descs The array with the descriptors of the available properties
      * @return The map with the names of write methods for properties
      */
     private static Map<String, String> setUpWriteMethodNames(final 
PropertyDescriptor[] descs) {
@@ -67,7 +67,7 @@ final class BeanIntrospectionData {
     /**
      * Creates a new instance of {@code BeanIntrospectionData} and initializes 
its completely.
      *
-     * @param descs the array with the descriptors of the available properties
+     * @param descs The array with the descriptors of the available properties
      */
     public BeanIntrospectionData(final PropertyDescriptor[] descs) {
         this(descs, setUpWriteMethodNames(descs));
@@ -77,8 +77,8 @@ final class BeanIntrospectionData {
      * Creates a new instance of {@code BeanIntrospectionData} and allows 
setting the map with write method names. This constructor is mainly used for 
testing
      * purposes.
      *
-     * @param descs          the array with the descriptors of the available 
properties
-     * @param writeMethNames the map with the names of write methods
+     * @param descs          The array with the descriptors of the available 
properties
+     * @param writeMethNames The map with the names of write methods
      */
     BeanIntrospectionData(final PropertyDescriptor[] descs, final Map<String, 
String> writeMethNames) {
         descriptors = descs;
@@ -88,7 +88,7 @@ final class BeanIntrospectionData {
     /**
      * Returns the {@code PropertyDescriptor} for the property with the 
specified name. If this property is unknown, result is {@code null}.
      *
-     * @param name the name of the property in question
+     * @param name The name of the property in question
      * @return The {@code PropertyDescriptor} for this property or {@code null}
      */
     public PropertyDescriptor getDescriptor(final String name) {
@@ -115,8 +115,8 @@ final class BeanIntrospectionData {
      * GC, it may be the case that the method cannot be obtained again. Then, 
additional information stored in this object is necessary to obtain the method
      * again.
      *
-     * @param beanCls the class of the affected bean
-     * @param desc    the {@code PropertyDescriptor} of the desired property
+     * @param beanCls The class of the affected bean
+     * @param desc    The {@code PropertyDescriptor} of the desired property
      * @return The write method for this property or {@code null} if there is 
none
      */
     public Method getWriteMethod(final Class<?> beanCls, final 
PropertyDescriptor desc) {
diff --git a/src/main/java/org/apache/commons/beanutils2/BeanIntrospector.java 
b/src/main/java/org/apache/commons/beanutils2/BeanIntrospector.java
index 4b6cc52d..3bfb7762 100644
--- a/src/main/java/org/apache/commons/beanutils2/BeanIntrospector.java
+++ b/src/main/java/org/apache/commons/beanutils2/BeanIntrospector.java
@@ -38,7 +38,7 @@ public interface BeanIntrospector {
      * typical implementation has to obtain this class, determine its 
properties according to the rules it implements, and add them to the passed in 
context
      * object.
      *
-     * @param icontext the context object for interaction with the initiator 
of the introspection request
+     * @param icontext The context object for interaction with the initiator 
of the introspection request
      * @throws IntrospectionException if an error occurs during introspection
      */
     void introspect(IntrospectionContext icontext) throws 
IntrospectionException;
diff --git a/src/main/java/org/apache/commons/beanutils2/BeanMap.java 
b/src/main/java/org/apache/commons/beanutils2/BeanMap.java
index 44cb8ff7..e82c2e51 100644
--- a/src/main/java/org/apache/commons/beanutils2/BeanMap.java
+++ b/src/main/java/org/apache/commons/beanutils2/BeanMap.java
@@ -57,9 +57,9 @@ public class BeanMap extends AbstractMap<String, Object> 
implements Cloneable {
         /**
          * Constructs a new {@code Entry}.
          *
-         * @param owner the BeanMap this entry belongs to
-         * @param key   the key for this entry
-         * @param value the value for this entry
+         * @param owner The BeanMap this entry belongs to
+         * @param key   The key for this entry
+         * @param value The value for this entry
          */
         protected Entry(final BeanMap owner, final String key, final Object 
value) {
             super(key, value);
@@ -69,7 +69,7 @@ public class BeanMap extends AbstractMap<String, Object> 
implements Cloneable {
         /**
          * Sets the value.
          *
-         * @param value the new value for the entry
+         * @param value The new value for the entry
          * @return The old value for the entry
          */
         @Override
@@ -128,7 +128,7 @@ public class BeanMap extends AbstractMap<String, Object> 
implements Cloneable {
     /**
      * Constructs a new {@code BeanMap} that operates on the specified bean. 
If the given bean is {@code null}, then this map will be empty.
      *
-     * @param bean the bean for this map to operate on
+     * @param bean The bean for this map to operate on
      */
     public BeanMap(final Object bean) {
         this.bean = bean;
@@ -222,7 +222,7 @@ public class BeanMap extends AbstractMap<String, Object> 
implements Cloneable {
      * Write-only properties will not be matched as the test operates against 
property read methods.
      * </p>
      *
-     * @param name the name of the property to check
+     * @param name The name of the property to check
      * @return false if the given name is null or is not a {@code String}; 
false if the bean does not define a property with that name; or true if the 
bean does
      *         define a property with that name
      */
@@ -245,8 +245,8 @@ public class BeanMap extends AbstractMap<String, Object> 
implements Cloneable {
      * </p>
      *
      * @param <R>     The return type.
-     * @param newType the type to convert the value to
-     * @param value   the value to convert
+     * @param newType The type to convert the value to
+     * @param value   The value to convert
      * @return The converted value
      * @throws NumberFormatException     if newType is a primitive type, and 
the string representation of the given value cannot be converted to that type
      * @throws InstantiationException    if the constructor found with 
reflection raises it
@@ -275,8 +275,8 @@ public class BeanMap extends AbstractMap<String, Object> 
implements Cloneable {
      * Creates an array of parameters to pass to the given mutator method. If 
the given object is not the right type to pass to the method directly, it will 
be
      * converted using {@link #convertType(Class,Object)}.
      *
-     * @param method the mutator method
-     * @param value  the value to pass to the mutator method
+     * @param method The mutator method
+     * @param value  The value to pass to the mutator method
      * @return An array containing one object that is either the given value 
or a transformed value
      * @throws IllegalAccessException   if {@link #convertType(Class,Object)} 
raises it
      * @throws IllegalArgumentException if any other exception is raised by 
{@link #convertType(Class,Object)}
@@ -356,9 +356,9 @@ public class BeanMap extends AbstractMap<String, Object> 
implements Cloneable {
      * Called during a successful {@link #put(String,Object)} operation. 
Default implementation does nothing. Override to be notified of property 
changes in the
      * bean caused by this map.
      *
-     * @param key      the name of the property that changed
-     * @param oldValue the old value for that property
-     * @param newValue the new value for that property
+     * @param key      The name of the property that changed
+     * @param oldValue The old value for that property
+     * @param newValue The new value for that property
      */
     protected void firePropertyChange(final Object key, final Object oldValue, 
final Object newValue) {
         // noop
@@ -374,7 +374,7 @@ public class BeanMap extends AbstractMap<String, Object> 
implements Cloneable {
      * Write-only properties will not be matched as the test operates against 
property read methods.
      * </p>
      *
-     * @param name the name of the property whose value to return
+     * @param name The name of the property whose value to return
      * @return The value of the property with that name
      */
     @Override
@@ -406,7 +406,7 @@ public class BeanMap extends AbstractMap<String, Object> 
implements Cloneable {
     /**
      * Gets the accessor for the property with the given name.
      *
-     * @param name the name of the property
+     * @param name The name of the property
      * @return null if the name is null; null if the name is not a {@link 
String}; null if no such property exists; or the accessor method for that 
property
      */
     protected Method getReadMethod(final Object name) {
@@ -416,7 +416,7 @@ public class BeanMap extends AbstractMap<String, Object> 
implements Cloneable {
     /**
      * Gets the accessor for the property with the given name.
      *
-     * @param name the name of the property
+     * @param name The name of the property
      * @return The accessor method for the property, or null
      */
     public Method getReadMethod(final String name) {
@@ -426,7 +426,7 @@ public class BeanMap extends AbstractMap<String, Object> 
implements Cloneable {
     /**
      * Gets the type of the property with the given name.
      *
-     * @param name the name of the property
+     * @param name The name of the property
      * @return The type of the property, or {@code null} if no such property 
exists
      */
     public Class<?> getType(final String name) {
@@ -437,7 +437,7 @@ public class BeanMap extends AbstractMap<String, Object> 
implements Cloneable {
      * Gets a transformer for the given primitive type.
      *
      * @param <R>  The transformer result type.
-     * @param type the primitive type whose transformer to return
+     * @param type The primitive type whose transformer to return
      * @return A transformer that will convert strings into that type, or null 
if the given type is not a primitive type
      */
     protected <R> Function<Object, R> getTypeTransformer(final Class<R> type) {
@@ -447,7 +447,7 @@ public class BeanMap extends AbstractMap<String, Object> 
implements Cloneable {
     /**
      * Gets the mutator for the property with the given name.
      *
-     * @param name the name of the
+     * @param name The name of the
      * @return null if the name is null; null if the name is not a {@link 
String}; null if no such property exists; null if the property is read-only; or 
the
      *         mutator method for that property
      */
@@ -458,7 +458,7 @@ public class BeanMap extends AbstractMap<String, Object> 
implements Cloneable {
     /**
      * Gets the mutator for the property with the given name.
      *
-     * @param name the name of the property
+     * @param name The name of the property
      * @return The mutator method for the property, or null
      */
     public Method getWriteMethod(final String name) {
@@ -537,7 +537,7 @@ public class BeanMap extends AbstractMap<String, Object> 
implements Cloneable {
     /**
      * Logs the given exception to {@code System.out}. Used to display 
warnings while accessing/mutating the bean.
      *
-     * @param ex the exception to log
+     * @param ex The exception to log
      */
     protected void logInfo(final Exception ex) {
         // Deliberately do not use LOG4J or Commons Logging to avoid 
dependencies
@@ -547,7 +547,7 @@ public class BeanMap extends AbstractMap<String, Object> 
implements Cloneable {
     /**
      * Logs the given exception to {@code System.err}. Used to display errors 
while accessing/mutating the bean.
      *
-     * @param ex the exception to log
+     * @param ex The exception to log
      */
     protected void logWarn(final Exception ex) {
         // Deliberately do not use LOG4J or Commons Logging to avoid 
dependencies
@@ -558,8 +558,8 @@ public class BeanMap extends AbstractMap<String, Object> 
implements Cloneable {
     /**
      * Sets the bean property with the given name to the given value.
      *
-     * @param name  the name of the property to set
-     * @param value the value to set that property to
+     * @param name  The name of the property to set
+     * @param value The value to set that property to
      * @return The previous value of that property
      * @throws IllegalArgumentException if the given name is null; if the 
given name is not a {@link String}; if the bean doesn't define a property with 
that
      *                                  name; or if the bean property with 
that name is read-only
@@ -590,7 +590,7 @@ public class BeanMap extends AbstractMap<String, Object> 
implements Cloneable {
     /**
      * Puts all of the writable properties from the given BeanMap into this 
BeanMap. Read-only and Write-only properties will be ignored.
      *
-     * @param map the BeanMap whose properties to put
+     * @param map The BeanMap whose properties to put
      */
     public void putAllWriteable(final BeanMap map) {
         map.readMethods.keySet().forEach(key -> {
@@ -615,7 +615,7 @@ public class BeanMap extends AbstractMap<String, Object> 
implements Cloneable {
     /**
      * Sets the bean to be operated on by this map. The given value may be 
null, in which case this map will be empty.
      *
-     * @param newBean the new bean to operate on
+     * @param newBean The new bean to operate on
      */
     public void setBean(final Object newBean) {
         bean = newBean;
diff --git a/src/main/java/org/apache/commons/beanutils2/BeanPredicate.java 
b/src/main/java/org/apache/commons/beanutils2/BeanPredicate.java
index 72ed7510..f93ac218 100644
--- a/src/main/java/org/apache/commons/beanutils2/BeanPredicate.java
+++ b/src/main/java/org/apache/commons/beanutils2/BeanPredicate.java
@@ -43,8 +43,8 @@ public class BeanPredicate<T> implements Predicate<T> {
     /**
      * Constructs a {@code BeanPredicate} that applies the given {@code 
Predicate} to the named property value.
      *
-     * @param propertyName the name of the property whose value is to be 
predicated, not null
-     * @param predicate    the {@code Predicate} to be applied, not null
+     * @param propertyName The name of the property whose value is to be 
predicated, not null
+     * @param predicate    The {@code Predicate} to be applied, not null
      */
     public BeanPredicate(final String propertyName, final Predicate<T> 
predicate) {
         this.propertyName = propertyName;
@@ -81,7 +81,7 @@ public class BeanPredicate<T> implements Predicate<T> {
     /**
      * Sets the name of the property whose value is to be predicated.
      *
-     * @param propertyName the name of the property whose value is to be 
predicated, not null
+     * @param propertyName The name of the property whose value is to be 
predicated, not null
      */
     public void setPropertyName(final String propertyName) {
         this.propertyName = propertyName;
diff --git a/src/main/java/org/apache/commons/beanutils2/BeanUtilsBean.java 
b/src/main/java/org/apache/commons/beanutils2/BeanUtilsBean.java
index 847d2a81..8b720417 100644
--- a/src/main/java/org/apache/commons/beanutils2/BeanUtilsBean.java
+++ b/src/main/java/org/apache/commons/beanutils2/BeanUtilsBean.java
@@ -96,8 +96,8 @@ public class BeanUtilsBean {
     /**
      * Determines the type of a {@code DynaProperty}. Here a special treatment 
is needed for mapped properties.
      *
-     * @param dynaProperty the property descriptor
-     * @param value        the value object to be set for this property
+     * @param dynaProperty The property descriptor
+     * @param value        The value object to be set for this property
      * @return The type of this property
      */
     private static Class<?> dynaPropertyType(final DynaProperty dynaProperty, 
final Object value) {
@@ -216,8 +216,8 @@ public class BeanUtilsBean {
      * Performs a type conversion of a property value before it is copied to a 
target bean. This method delegates to {@link #convert(Object, Class)}, but
      * {@code null} values are not converted. This causes {@code null} values 
to be copied verbatim.
      *
-     * @param value the value to be converted and copied
-     * @param type  the target type of the conversion
+     * @param value The value to be converted and copied
+     * @param type  The target type of the conversion
      * @return The converted value
      */
     private Object convertForCopy(final Object value, final Class<?> type) {
diff --git 
a/src/main/java/org/apache/commons/beanutils2/ContextClassLoaderLocal.java 
b/src/main/java/org/apache/commons/beanutils2/ContextClassLoaderLocal.java
index 3164710c..04694c3e 100644
--- a/src/main/java/org/apache/commons/beanutils2/ContextClassLoaderLocal.java
+++ b/src/main/java/org/apache/commons/beanutils2/ContextClassLoaderLocal.java
@@ -157,7 +157,7 @@ public class ContextClassLoaderLocal<T> {
     /**
      * Sets the value - a value is provided per (thread) context classloader. 
This mechanism provides isolation for web apps deployed in the same container.
      *
-     * @param value the object to be associated with the entrant thread's 
context classloader
+     * @param value The object to be associated with the entrant thread's 
context classloader
      */
     public synchronized void set(final T value) {
         // synchronizing the whole method is a bit slower
diff --git 
a/src/main/java/org/apache/commons/beanutils2/DefaultBeanIntrospector.java 
b/src/main/java/org/apache/commons/beanutils2/DefaultBeanIntrospector.java
index 240c3de2..9d652caa 100644
--- a/src/main/java/org/apache/commons/beanutils2/DefaultBeanIntrospector.java
+++ b/src/main/java/org/apache/commons/beanutils2/DefaultBeanIntrospector.java
@@ -77,8 +77,8 @@ public class DefaultBeanIntrospector implements 
BeanIntrospector {
      * <li>JDK 1.4.2_05: returns null from these methods.</li>
      * </ul>
      *
-     * @param beanClass   the current class to be inspected
-     * @param descriptors the array with property descriptors
+     * @param beanClass   The current class to be inspected
+     * @param descriptors The array with property descriptors
      */
     private void handleIndexedPropertyDescriptors(final Class<?> beanClass, 
final PropertyDescriptor[] descriptors) {
         for (final PropertyDescriptor pd : descriptors) {
@@ -127,7 +127,7 @@ public class DefaultBeanIntrospector implements 
BeanIntrospector {
      * Performs introspection of a specific Java class. This implementation 
uses the {@code java.beans.Introspector.getBeanInfo()} method to obtain all 
property
      * descriptors for the current class and adds them to the passed in 
introspection context.
      *
-     * @param icontext the introspection context
+     * @param icontext The introspection context
      */
     @Override
     public void introspect(final IntrospectionContext icontext) {
diff --git 
a/src/main/java/org/apache/commons/beanutils2/DefaultIntrospectionContext.java 
b/src/main/java/org/apache/commons/beanutils2/DefaultIntrospectionContext.java
index 797c2ea7..181fdca3 100644
--- 
a/src/main/java/org/apache/commons/beanutils2/DefaultIntrospectionContext.java
+++ 
b/src/main/java/org/apache/commons/beanutils2/DefaultIntrospectionContext.java
@@ -45,7 +45,7 @@ final class DefaultIntrospectionContext implements 
IntrospectionContext {
      *
      * Creates a new instance of {@code DefaultIntrospectionContext} and sets 
the current class for introspection.
      *
-     * @param cls the current class
+     * @param cls The current class
      */
     public DefaultIntrospectionContext(final Class<?> cls) {
         currentClass = cls;
diff --git 
a/src/main/java/org/apache/commons/beanutils2/FluentPropertyBeanIntrospector.java
 
b/src/main/java/org/apache/commons/beanutils2/FluentPropertyBeanIntrospector.java
index c4a7635f..e40f09ef 100644
--- 
a/src/main/java/org/apache/commons/beanutils2/FluentPropertyBeanIntrospector.java
+++ 
b/src/main/java/org/apache/commons/beanutils2/FluentPropertyBeanIntrospector.java
@@ -91,7 +91,7 @@ public class FluentPropertyBeanIntrospector implements 
BeanIntrospector {
      * Creates a new instance of {@code FluentPropertyBeanIntrospector} and 
initializes it with the prefix for write methods used by the classes to be
      * inspected.
      *
-     * @param writePrefix the prefix for write methods (must not be {@code 
null})
+     * @param writePrefix The prefix for write methods (must not be {@code 
null})
      * @throws IllegalArgumentException if the prefix is {@code null}
      */
     public FluentPropertyBeanIntrospector(final String writePrefix) {
@@ -101,8 +101,8 @@ public class FluentPropertyBeanIntrospector implements 
BeanIntrospector {
     /**
      * Creates a property descriptor for a fluent API property.
      *
-     * @param m            the set method for the fluent API property
-     * @param propertyName the name of the corresponding property
+     * @param m            The set method for the fluent API property
+     * @param propertyName The name of the corresponding property
      * @return The descriptor
      * @throws IntrospectionException if an error occurs
      */
@@ -122,7 +122,7 @@ public class FluentPropertyBeanIntrospector implements 
BeanIntrospector {
     /**
      * Performs introspection. This method scans the current class's methods 
for property write methods which have not been discovered by default 
introspection.
      *
-     * @param icontext the introspection context
+     * @param icontext The introspection context
      * @throws IntrospectionException if an error occurs
      */
     @Override
@@ -154,7 +154,7 @@ public class FluentPropertyBeanIntrospector implements 
BeanIntrospector {
     /**
      * Derives the name of a property from the given set method.
      *
-     * @param m the method
+     * @param m The method
      * @return The corresponding property name
      */
     private String propertyName(final Method m) {
diff --git 
a/src/main/java/org/apache/commons/beanutils2/IntrospectionContext.java 
b/src/main/java/org/apache/commons/beanutils2/IntrospectionContext.java
index a6ad1e7b..602e1751 100644
--- a/src/main/java/org/apache/commons/beanutils2/IntrospectionContext.java
+++ b/src/main/java/org/apache/commons/beanutils2/IntrospectionContext.java
@@ -37,21 +37,21 @@ public interface IntrospectionContext {
      * Adds the given property descriptor to this context. This method is 
called by a {@code BeanIntrospector} during introspection for each detected 
property.
      * If this context already contains a descriptor for the affected 
property, it is overridden.
      *
-     * @param desc the property descriptor
+     * @param desc The property descriptor
      */
     void addPropertyDescriptor(PropertyDescriptor desc);
 
     /**
      * Adds an array of property descriptors to this context. Using this 
method multiple descriptors can be added at once.
      *
-     * @param descriptors the array of descriptors to be added
+     * @param descriptors The array of descriptors to be added
      */
     void addPropertyDescriptors(PropertyDescriptor[] descriptors);
 
     /**
      * Returns the descriptor for the property with the given name or {@code 
null} if this property is unknown.
      *
-     * @param name the name of the property in question
+     * @param name The name of the property in question
      * @return The descriptor for this property or {@code null} if this 
property is unknown
      */
     PropertyDescriptor getPropertyDescriptor(String name);
@@ -67,7 +67,7 @@ public interface IntrospectionContext {
      * Tests whether a descriptor for the property with the given name is 
already contained in this context. This method can be used for instance to 
prevent
      * that an already existing property descriptor is overridden.
      *
-     * @param name the name of the property in question
+     * @param name The name of the property in question
      * @return <strong>true</strong> if a descriptor for this property has 
already been added, <strong>false</strong> otherwise
      */
     boolean hasProperty(String name);
@@ -82,7 +82,7 @@ public interface IntrospectionContext {
     /**
      * Removes the descriptor for the property with the given name.
      *
-     * @param name the name of the affected property
+     * @param name The name of the affected property
      */
     void removePropertyDescriptor(String name);
 }
diff --git a/src/main/java/org/apache/commons/beanutils2/LazyDynaList.java 
b/src/main/java/org/apache/commons/beanutils2/LazyDynaList.java
index 78e7a720..28eb53db 100644
--- a/src/main/java/org/apache/commons/beanutils2/LazyDynaList.java
+++ b/src/main/java/org/apache/commons/beanutils2/LazyDynaList.java
@@ -333,7 +333,7 @@ public class LazyDynaList extends ArrayList<Object> {
     /**
      * Creates a new {@code LazyDynaMap} object for the given property value.
      *
-     * @param value the property value
+     * @param value The property value
      * @return The newly created {@code LazyDynaMap}
      */
     private LazyDynaMap createDynaBeanForMapProperty(final Object value) {
@@ -376,7 +376,7 @@ public class LazyDynaList extends ArrayList<Object> {
      * Automatically <em>grown</em> the List to the appropriate size, 
populating with DynaBeans.
      * </p>
      *
-     * @param requiredSize the required size of the List.
+     * @param requiredSize The required size of the List.
      */
     private void growList(final int requiredSize) {
         if (requiredSize < size()) {
diff --git a/src/main/java/org/apache/commons/beanutils2/MethodUtils.java 
b/src/main/java/org/apache/commons/beanutils2/MethodUtils.java
index a3dd768d..b2b0fecf 100644
--- a/src/main/java/org/apache/commons/beanutils2/MethodUtils.java
+++ b/src/main/java/org/apache/commons/beanutils2/MethodUtils.java
@@ -64,9 +64,9 @@ public final class MethodUtils {
         /**
          * The sole constructor.
          *
-         * @param cls        the class to reflect, must not be null.
-         * @param methodName the method name to obtain.
-         * @param paramTypes the array of classes representing the parameter 
types.
+         * @param cls        The class to reflect, must not be null.
+         * @param methodName The method name to obtain.
+         * @param paramTypes The array of classes representing the parameter 
types.
          * @param exact      whether the match has to be exact.
          */
         public MethodKey(final Class<?> cls, final String methodName, final 
Class<?>[] paramTypes, final boolean exact) {
diff --git 
a/src/main/java/org/apache/commons/beanutils2/NestedNullException.java 
b/src/main/java/org/apache/commons/beanutils2/NestedNullException.java
index 7e9229bb..523d8551 100644
--- a/src/main/java/org/apache/commons/beanutils2/NestedNullException.java
+++ b/src/main/java/org/apache/commons/beanutils2/NestedNullException.java
@@ -35,7 +35,7 @@ public class NestedNullException extends 
BeanAccessLanguageException {
     /**
      * Constructs a {@code NestedNullException} without a detail message.
      *
-     * @param message the detail message explaining this exception
+     * @param message The detail message explaining this exception
      */
     public NestedNullException(final String message) {
         super(message);
diff --git a/src/main/java/org/apache/commons/beanutils2/PropertyUtils.java 
b/src/main/java/org/apache/commons/beanutils2/PropertyUtils.java
index 32d22db1..3536f7f3 100644
--- a/src/main/java/org/apache/commons/beanutils2/PropertyUtils.java
+++ b/src/main/java/org/apache/commons/beanutils2/PropertyUtils.java
@@ -40,7 +40,7 @@ public final class PropertyUtils {
     /**
      * Adds a {@code BeanIntrospector}. This object is invoked when the 
property descriptors of a class need to be obtained.
      *
-     * @param introspector the {@code BeanIntrospector} to be added (must not 
be {@code null}
+     * @param introspector The {@code BeanIntrospector} to be added (must not 
be {@code null}
      * @throws IllegalArgumentException if the argument is {@code null}
      * @since 1.9
      */
@@ -471,7 +471,7 @@ public final class PropertyUtils {
     /**
      * Removes the specified {@code BeanIntrospector}.
      *
-     * @param introspector the {@code BeanIntrospector} to be removed
+     * @param introspector The {@code BeanIntrospector} to be removed
      * @return <strong>true</strong> if the {@code BeanIntrospector} existed 
and could be removed, <strong>false</strong> otherwise
      * @since 1.9
      */
diff --git a/src/main/java/org/apache/commons/beanutils2/PropertyUtilsBean.java 
b/src/main/java/org/apache/commons/beanutils2/PropertyUtilsBean.java
index a67e2f92..2e4d6ced 100644
--- a/src/main/java/org/apache/commons/beanutils2/PropertyUtilsBean.java
+++ b/src/main/java/org/apache/commons/beanutils2/PropertyUtilsBean.java
@@ -85,7 +85,7 @@ public class PropertyUtilsBean {
      * Converts an object to a list of objects. This method is used when 
dealing with indexed properties. It assumes that indexed properties are stored 
as lists
      * of objects.
      *
-     * @param obj the object to be converted
+     * @param obj The object to be converted
      * @return The resulting list of objects
      */
     @SuppressWarnings("unchecked")
@@ -98,7 +98,7 @@ public class PropertyUtilsBean {
      * Converts an object to a map with property values. This method is used 
when dealing with mapped properties. It assumes that mapped properties are 
stored
      * in a Map&lt;String, Object&gt;.
      *
-     * @param obj the object to be converted
+     * @param obj The object to be converted
      * @return The resulting properties map
      */
     @SuppressWarnings("unchecked")
@@ -130,7 +130,7 @@ public class PropertyUtilsBean {
     /**
      * Adds a {@code BeanIntrospector}. This object is invoked when the 
property descriptors of a class need to be obtained.
      *
-     * @param introspector the {@code BeanIntrospector} to be added (must not 
be {@code null}
+     * @param introspector The {@code BeanIntrospector} to be added (must not 
be {@code null}
      * @throws IllegalArgumentException if the argument is {@code null}
      * @since 1.9
      */
@@ -278,7 +278,7 @@ public class PropertyUtilsBean {
     /**
      * Performs introspection on the specified class. This method invokes all 
{@code BeanIntrospector} objects that were added to this instance.
      *
-     * @param beanClass the class to be inspected
+     * @param beanClass The class to be inspected
      * @return A data object with the results of introspection
      */
     private BeanIntrospectionData fetchIntrospectionData(final Class<?> 
beanClass) {
@@ -418,7 +418,7 @@ public class PropertyUtilsBean {
      * Obtains the {@code BeanIntrospectionData} object describing the 
specified bean class. This object is looked up in the internal cache. If 
necessary,
      * introspection is performed now on the affected bean class, and the 
results object is created.
      *
-     * @param beanClass the bean class in question
+     * @param beanClass The bean class in question
      * @return The {@code BeanIntrospectionData} object for this class
      * @throws IllegalArgumentException if the bean class is {@code null}
      */
@@ -1187,7 +1187,7 @@ public class PropertyUtilsBean {
     /**
      * Removes the specified {@code BeanIntrospector}.
      *
-     * @param introspector the {@code BeanIntrospector} to be removed
+     * @param introspector The {@code BeanIntrospector} to be removed
      * @return <strong>true</strong> if the {@code BeanIntrospector} existed 
and could be removed, <strong>false</strong> otherwise
      * @since 1.9
      */
@@ -1521,7 +1521,7 @@ public class PropertyUtilsBean {
      *
      * @param bean         Map bean
      * @param propertyName The property name
-     * @param value        the property value
+     * @param value        The property value
      * @throws IllegalArgumentException  when the propertyName is regarded as 
being invalid.
      * @throws IllegalAccessException    just in case subclasses override this 
method to try to access real setter methods and find permission is denied.
      * @throws InvocationTargetException just in case subclasses override this 
method to try to access real setter methods, and find it throws an exception 
when
diff --git 
a/src/main/java/org/apache/commons/beanutils2/SuppressPropertiesBeanIntrospector.java
 
b/src/main/java/org/apache/commons/beanutils2/SuppressPropertiesBeanIntrospector.java
index e8e88933..10a085a0 100644
--- 
a/src/main/java/org/apache/commons/beanutils2/SuppressPropertiesBeanIntrospector.java
+++ 
b/src/main/java/org/apache/commons/beanutils2/SuppressPropertiesBeanIntrospector.java
@@ -60,7 +60,7 @@ public class SuppressPropertiesBeanIntrospector implements 
BeanIntrospector {
     /**
      * Creates a new instance of {@code SuppressPropertiesBeanIntrospector} 
and sets the names of the properties to be suppressed.
      *
-     * @param propertiesToSuppress the names of the properties to be 
suppressed (must not be {@code null})
+     * @param propertiesToSuppress The names of the properties to be 
suppressed (must not be {@code null})
      * @throws IllegalArgumentException if the collection with property names 
is {@code null}
      */
     public SuppressPropertiesBeanIntrospector(final Collection<String> 
propertiesToSuppress) {
diff --git a/src/main/java/org/apache/commons/beanutils2/WrapDynaBean.java 
b/src/main/java/org/apache/commons/beanutils2/WrapDynaBean.java
index 237a1694..5ea59e4c 100644
--- a/src/main/java/org/apache/commons/beanutils2/WrapDynaBean.java
+++ b/src/main/java/org/apache/commons/beanutils2/WrapDynaBean.java
@@ -70,7 +70,7 @@ public class WrapDynaBean implements DynaBean {
      * provided, a new one is created using a standard mechanism.
      *
      * @param instance JavaBean instance to be wrapped
-     * @param cls      the optional {@code WrapDynaClass} to be used for this 
bean
+     * @param cls      The optional {@code WrapDynaClass} to be used for this 
bean
      * @since 1.9
      */
     public WrapDynaBean(final Object instance, final WrapDynaClass cls) {
diff --git a/src/main/java/org/apache/commons/beanutils2/WrapDynaClass.java 
b/src/main/java/org/apache/commons/beanutils2/WrapDynaClass.java
index d5672371..7f22443e 100644
--- a/src/main/java/org/apache/commons/beanutils2/WrapDynaClass.java
+++ b/src/main/java/org/apache/commons/beanutils2/WrapDynaClass.java
@@ -54,8 +54,8 @@ public class WrapDynaClass implements DynaClass {
         /**
          * Creates a new instance of {@code CacheKey}.
          *
-         * @param beanCls the bean class
-         * @param pu      the instance of {@code PropertyUtilsBean}
+         * @param beanCls The bean class
+         * @param pu      The instance of {@code PropertyUtilsBean}
          */
         public CacheKey(final Class<?> beanCls, final PropertyUtilsBean pu) {
             beanClass = beanCls;
@@ -115,7 +115,7 @@ public class WrapDynaClass implements DynaClass {
      * bean. The argument is optional; if no {@code PropertyUtilsBean} object 
is provided, the default instance is used.
      *
      * @param beanClass Bean class for which a WrapDynaClass is requested
-     * @param pu        the optional {@code PropertyUtilsBean} to be used for 
introspection
+     * @param pu        The optional {@code PropertyUtilsBean} to be used for 
introspection
      * @return A new <em>Wrap</em> {@link DynaClass}
      * @since 1.9
      */
@@ -170,7 +170,7 @@ public class WrapDynaClass implements DynaClass {
      * to the {@code createDynaClass(Class)} method.
      *
      * @param beanClass JavaBean class to be introspected around
-     * @param propUtils the {@code PropertyUtilsBean} associated with this 
class
+     * @param propUtils The {@code PropertyUtilsBean} associated with this 
class
      */
     private WrapDynaClass(final Class<?> beanClass, final PropertyUtilsBean 
propUtils) {
         this.beanClassRef = new SoftReference<>(beanClass);
diff --git 
a/src/main/java/org/apache/commons/beanutils2/converters/AbstractConverter.java 
b/src/main/java/org/apache/commons/beanutils2/converters/AbstractConverter.java
index c47a0307..dc09cf5b 100644
--- 
a/src/main/java/org/apache/commons/beanutils2/converters/AbstractConverter.java
+++ 
b/src/main/java/org/apache/commons/beanutils2/converters/AbstractConverter.java
@@ -62,7 +62,7 @@ public abstract class AbstractConverter<D> implements 
Converter<D> {
     /**
      * Converts the given object to a lower-case string.
      *
-     * @param value the input string.
+     * @param value The input string.
      * @return The given string trimmed and converter to lower-case.
      */
     protected static String toLowerCase(final Object value) {
@@ -72,7 +72,7 @@ public abstract class AbstractConverter<D> implements 
Converter<D> {
     /**
      * Converts the given object to a lower-case string.
      *
-     * @param value the input string.
+     * @param value The input string.
      * @return The given string trimmed and converter to lower-case.
      */
     protected static String toString(final Object value) {
@@ -82,7 +82,7 @@ public abstract class AbstractConverter<D> implements 
Converter<D> {
     /**
      * Converts the given object to a lower-case string.
      *
-     * @param value the input string.
+     * @param value The input string.
      * @return The given string trimmed and converter to lower-case.
      */
     protected static String toTrim(final Object value) {
@@ -122,8 +122,8 @@ public abstract class AbstractConverter<D> implements 
Converter<D> {
     /**
      * Creates a {@link ConversionException} with a message indicating that 
the passed in value cannot be converted to the desired target type.
      *
-     * @param type  the target type.
-     * @param value the value to be converted.
+     * @param type  The target type.
+     * @param value The value to be converted.
      * @return A {@code ConversionException} with a standard message.
      * @since 1.9
      */
@@ -211,7 +211,7 @@ public abstract class AbstractConverter<D> implements 
Converter<D> {
      * Converts to the default type. This method is called if we do not have a 
target class. In this case, the T parameter is not set. Therefore, we can cast 
to
      * it (which is required to fulfill the contract of the method signature).
      *
-     * @param value the value to be converted.
+     * @param value The value to be converted.
      * @param <T>   the type of the result object.
      * @return The converted value.
      */
diff --git 
a/src/main/java/org/apache/commons/beanutils2/converters/NumberConverter.java 
b/src/main/java/org/apache/commons/beanutils2/converters/NumberConverter.java
index c6568003..7928cb0d 100644
--- 
a/src/main/java/org/apache/commons/beanutils2/converters/NumberConverter.java
+++ 
b/src/main/java/org/apache/commons/beanutils2/converters/NumberConverter.java
@@ -260,7 +260,7 @@ public abstract class NumberConverter<N extends Number> 
extends AbstractConverte
     /**
      * Convert a String into a {@code Number} object.
      *
-     * @param sourceType the source type of the conversion
+     * @param sourceType The source type of the conversion
      * @param targetType The type to convert the value to
      * @param value      The String date value.
      * @param format     The NumberFormat to parse the String value.
diff --git 
a/src/main/java/org/apache/commons/beanutils2/locale/BaseLocaleConverter.java 
b/src/main/java/org/apache/commons/beanutils2/locale/BaseLocaleConverter.java
index cf1a84e3..cf18c509 100644
--- 
a/src/main/java/org/apache/commons/beanutils2/locale/BaseLocaleConverter.java
+++ 
b/src/main/java/org/apache/commons/beanutils2/locale/BaseLocaleConverter.java
@@ -84,7 +84,7 @@ public abstract class BaseLocaleConverter<T> implements 
LocaleConverter<T> {
         /**
          * Sets the default value.
          *
-         * @param defaultValue the default value.
+         * @param defaultValue The default value.
          * @return {@code this} instance.
          */
         public B setDefault(final T defaultValue) {
@@ -95,7 +95,7 @@ public abstract class BaseLocaleConverter<T> implements 
LocaleConverter<T> {
         /**
          * Sets the locale.
          *
-         * @param locale the locale.
+         * @param locale The locale.
          * @return {@code this} instance.
          */
         public B setLocale(final Locale locale) {
@@ -106,7 +106,7 @@ public abstract class BaseLocaleConverter<T> implements 
LocaleConverter<T> {
         /**
          * Sets the localized pattern.
          *
-         * @param localizedPattern the localized pattern.
+         * @param localizedPattern The localized pattern.
          * @return {@code this} instance.
          */
         public B setLocalizedPattern(final boolean localizedPattern) {
@@ -117,7 +117,7 @@ public abstract class BaseLocaleConverter<T> implements 
LocaleConverter<T> {
         /**
          * Sets the pattern.
          *
-         * @param pattern the pattern.
+         * @param pattern The pattern.
          * @return {@code this} instance.
          */
         public B setPattern(final String pattern) {
@@ -128,7 +128,7 @@ public abstract class BaseLocaleConverter<T> implements 
LocaleConverter<T> {
         /**
          * Sets the use of default.
          *
-         * @param useDefault the use of default.
+         * @param useDefault The use of default.
          * @return {@code this} instance.
          */
         public B setUseDefault(final boolean useDefault) {
@@ -146,8 +146,8 @@ public abstract class BaseLocaleConverter<T> implements 
LocaleConverter<T> {
      * correct target type. Otherwise, an exception is thrown.
      *
      * @param <T>    the desired result type.
-     * @param type   the target class of the conversion.
-     * @param result the conversion result object.
+     * @param type   The target class of the conversion.
+     * @param result The conversion result object.
      * @return The result cast to the target class.
      * @throws ConversionException if the result object is not compatible with 
the target type.
      */
@@ -276,7 +276,7 @@ public abstract class BaseLocaleConverter<T> implements 
LocaleConverter<T> {
      * Gets the default object specified for this converter cast for the given 
target type. If the default value is not conform to the given type,
      * a ConversionException is thrown.
      *
-     * @param type the target class of the conversion.
+     * @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 the target type.
      */
diff --git 
a/src/main/java/org/apache/commons/beanutils2/locale/LocaleBeanUtils.java 
b/src/main/java/org/apache/commons/beanutils2/locale/LocaleBeanUtils.java
index 2e1e127a..2a55b393 100644
--- a/src/main/java/org/apache/commons/beanutils2/locale/LocaleBeanUtils.java
+++ b/src/main/java/org/apache/commons/beanutils2/locale/LocaleBeanUtils.java
@@ -494,7 +494,7 @@ public final class LocaleBeanUtils {
      * For more details see {@code LocaleBeanUtilsBean}
      * </p>
      *
-     * @param locale the default locale
+     * @param locale The default locale
      * @see LocaleBeanUtilsBean#setDefaultLocale(Locale)
      */
     public static void setDefaultLocale(final Locale locale) {
diff --git 
a/src/main/java/org/apache/commons/beanutils2/locale/LocaleBeanUtilsBean.java 
b/src/main/java/org/apache/commons/beanutils2/locale/LocaleBeanUtilsBean.java
index 5cd84fd7..2d48b5c1 100644
--- 
a/src/main/java/org/apache/commons/beanutils2/locale/LocaleBeanUtilsBean.java
+++ 
b/src/main/java/org/apache/commons/beanutils2/locale/LocaleBeanUtilsBean.java
@@ -71,7 +71,7 @@ public class LocaleBeanUtilsBean extends BeanUtilsBean {
      * Sets the instance which provides the functionality for {@link 
LocaleBeanUtils}. This is a pseudo-singleton - an single instance is provided 
per (thread)
      * context classloader. This mechanism provides isolation for web apps 
deployed in the same container.
      *
-     * @param newInstance a new singleton instance
+     * @param newInstance A new singleton instance
      */
     public static void setInstance(final LocaleBeanUtilsBean newInstance) {
         LOCALE_BEANS_BY_CLASSLOADER.set(newInstance);
@@ -543,7 +543,7 @@ public class LocaleBeanUtilsBean extends BeanUtilsBean {
     /**
      * Sets the default Locale.
      *
-     * @param locale the default locale
+     * @param locale The default locale
      */
     public void setDefaultLocale(final Locale locale) {
         getLocaleConvertUtils().setDefaultLocale(locale);
diff --git 
a/src/main/java/org/apache/commons/beanutils2/locale/LocaleConvertUtils.java 
b/src/main/java/org/apache/commons/beanutils2/locale/LocaleConvertUtils.java
index 82149375..88b9c1a5 100644
--- a/src/main/java/org/apache/commons/beanutils2/locale/LocaleConvertUtils.java
+++ b/src/main/java/org/apache/commons/beanutils2/locale/LocaleConvertUtils.java
@@ -346,7 +346,7 @@ public final class LocaleConvertUtils {
      * For more details see {@code LocaleConvertUtilsBean}
      * </p>
      *
-     * @param locale the default locale
+     * @param locale The default locale
      * @see LocaleConvertUtilsBean#setDefaultLocale(Locale)
      */
     public static void setDefaultLocale(final Locale locale) {
diff --git 
a/src/main/java/org/apache/commons/beanutils2/locale/LocaleConvertUtilsBean.java
 
b/src/main/java/org/apache/commons/beanutils2/locale/LocaleConvertUtilsBean.java
index b4537aab..789a8bfc 100644
--- 
a/src/main/java/org/apache/commons/beanutils2/locale/LocaleConvertUtilsBean.java
+++ 
b/src/main/java/org/apache/commons/beanutils2/locale/LocaleConvertUtilsBean.java
@@ -402,7 +402,7 @@ public class LocaleConvertUtilsBean {
     /**
      * setter for defaultLocale.
      *
-     * @param locale the default locale
+     * @param locale The default locale
      */
     public void setDefaultLocale(final Locale locale) {
         if (locale == null) {
diff --git 
a/src/main/java/org/apache/commons/beanutils2/locale/converters/DateLocaleConverter.java
 
b/src/main/java/org/apache/commons/beanutils2/locale/converters/DateLocaleConverter.java
index a837abe1..ae7c72ac 100644
--- 
a/src/main/java/org/apache/commons/beanutils2/locale/converters/DateLocaleConverter.java
+++ 
b/src/main/java/org/apache/commons/beanutils2/locale/converters/DateLocaleConverter.java
@@ -86,7 +86,7 @@ public class DateLocaleConverter<D extends Date> extends 
BaseLocaleConverter<D>
         /**
          * Sets the leniency policy.
          *
-         * @param lenient the leniency policy.
+         * @param lenient The leniency policy.
          * @return {@code this} instance.
          */
         public B setLenient(final boolean lenient) {
diff --git 
a/src/test/java/org/apache/commons/beanutils2/BeanIntrospectionDataTest.java 
b/src/test/java/org/apache/commons/beanutils2/BeanIntrospectionDataTest.java
index 90be4bcd..f542d9c6 100644
--- a/src/test/java/org/apache/commons/beanutils2/BeanIntrospectionDataTest.java
+++ b/src/test/java/org/apache/commons/beanutils2/BeanIntrospectionDataTest.java
@@ -53,7 +53,7 @@ class BeanIntrospectionDataTest {
     /**
      * Returns the property descriptor for the test property.
      *
-     * @param bid the data object
+     * @param bid The data object
      * @return The test property descriptor
      */
     private static PropertyDescriptor fetchTestDescriptor(final 
BeanIntrospectionData bid) {
diff --git 
a/src/test/java/org/apache/commons/beanutils2/DefaultIntrospectionContextTest.java
 
b/src/test/java/org/apache/commons/beanutils2/DefaultIntrospectionContextTest.java
index e97cb56a..fcccbd63 100644
--- 
a/src/test/java/org/apache/commons/beanutils2/DefaultIntrospectionContextTest.java
+++ 
b/src/test/java/org/apache/commons/beanutils2/DefaultIntrospectionContextTest.java
@@ -42,7 +42,7 @@ class DefaultIntrospectionContextTest {
     /**
      * Creates a property descriptor object for a property with the given name.
      *
-     * @param propName the property name
+     * @param propName The property name
      * @return The descriptor for this property
      */
     private static PropertyDescriptor createDescriptor(final String propName) {
diff --git 
a/src/test/java/org/apache/commons/beanutils2/FluentPropertyBeanIntrospectorTest.java
 
b/src/test/java/org/apache/commons/beanutils2/FluentPropertyBeanIntrospectorTest.java
index 8f40514d..c89a86e4 100644
--- 
a/src/test/java/org/apache/commons/beanutils2/FluentPropertyBeanIntrospectorTest.java
+++ 
b/src/test/java/org/apache/commons/beanutils2/FluentPropertyBeanIntrospectorTest.java
@@ -48,7 +48,7 @@ class FluentPropertyBeanIntrospectorTest {
     /**
      * Puts all property descriptors into a map so that they can be accessed 
by property name.
      *
-     * @param descs the array with descriptors
+     * @param descs The array with descriptors
      * @return A map with property names as keys
      */
     private static Map<String, PropertyDescriptor> createDescriptorMap(final 
PropertyDescriptor[] descs) {
@@ -62,8 +62,8 @@ class FluentPropertyBeanIntrospectorTest {
     /**
      * Convenience method for obtaining a specific property descriptor and 
checking whether it exists.
      *
-     * @param props the map with property descriptors
-     * @param name  the name of the desired descriptor
+     * @param props The map with property descriptors
+     * @param name  The name of the desired descriptor
      * @return The descriptor from the map
      */
     private static PropertyDescriptor fetchDescriptor(final Map<String, 
PropertyDescriptor> props, final String name) {
diff --git a/src/test/java/org/apache/commons/beanutils2/PropertyUtilsTest.java 
b/src/test/java/org/apache/commons/beanutils2/PropertyUtilsTest.java
index 5d03c1ee..b3b5d1bd 100644
--- a/src/test/java/org/apache/commons/beanutils2/PropertyUtilsTest.java
+++ b/src/test/java/org/apache/commons/beanutils2/PropertyUtilsTest.java
@@ -101,7 +101,7 @@ class PropertyUtilsTest {
     /**
      * Finds the descriptor of the name property.
      *
-     * @param desc the array with descriptors
+     * @param desc The array with descriptors
      * @return The found descriptor or null
      */
     private static PropertyDescriptor findNameDescriptor(final 
PropertyDescriptor[] desc) {
diff --git a/src/test/java/org/apache/commons/beanutils2/bugs/Jira339Test.java 
b/src/test/java/org/apache/commons/beanutils2/bugs/Jira339Test.java
index 9ac19144..5dd5d395 100644
--- a/src/test/java/org/apache/commons/beanutils2/bugs/Jira339Test.java
+++ b/src/test/java/org/apache/commons/beanutils2/bugs/Jira339Test.java
@@ -53,7 +53,7 @@ class Jira339Test {
         /**
          * Sets the comparator.
          *
-         * @param comparator the comparator
+         * @param comparator The comparator
          */
         public void setComparator(final Comparator<?> comparator) {
             this.comparator = comparator;
diff --git a/src/test/java/org/apache/commons/beanutils2/bugs/Jira458Test.java 
b/src/test/java/org/apache/commons/beanutils2/bugs/Jira458Test.java
index 1934ef5c..51f8f494 100644
--- a/src/test/java/org/apache/commons/beanutils2/bugs/Jira458Test.java
+++ b/src/test/java/org/apache/commons/beanutils2/bugs/Jira458Test.java
@@ -34,7 +34,7 @@ class Jira458Test {
     /**
      * Helper method for testing a conversion with null as default.
      *
-     * @param input the input string
+     * @param input The input string
      */
     private void checkConversionWithNullDefault(final String input) {
         // final Converter<Integer> converter = new 
IntegerLocaleConverter(null, Locale.US);
diff --git a/src/test/java/org/apache/commons/beanutils2/bugs/Jira465Test.java 
b/src/test/java/org/apache/commons/beanutils2/bugs/Jira465Test.java
index cdaeb880..baa2ff86 100644
--- a/src/test/java/org/apache/commons/beanutils2/bugs/Jira465Test.java
+++ b/src/test/java/org/apache/commons/beanutils2/bugs/Jira465Test.java
@@ -92,7 +92,7 @@ class Jira465Test {
     /**
      * Changes the value of the test property.
      *
-     * @param bean the bean to be updated
+     * @param bean The bean to be updated
      * @throws InvocationTargetException
      * @throws IllegalAccessException
      */
diff --git 
a/src/test/java/org/apache/commons/beanutils2/memoryleaktests/pojotests/CustomInteger.java
 
b/src/test/java/org/apache/commons/beanutils2/memoryleaktests/pojotests/CustomInteger.java
index e77f45ae..eccabce0 100644
--- 
a/src/test/java/org/apache/commons/beanutils2/memoryleaktests/pojotests/CustomInteger.java
+++ 
b/src/test/java/org/apache/commons/beanutils2/memoryleaktests/pojotests/CustomInteger.java
@@ -35,7 +35,7 @@ public class CustomInteger extends Number {
     /**
      * Constructs a new instance.
      *
-     * @param i the integer value
+     * @param i The integer value
      */
     public CustomInteger(final int i) {
         this.i = i;
diff --git a/src/test/java/org/apache/commons/beanutils2/sql/TestResultSet.java 
b/src/test/java/org/apache/commons/beanutils2/sql/TestResultSet.java
index 74ae7d34..a1b2b4de 100644
--- a/src/test/java/org/apache/commons/beanutils2/sql/TestResultSet.java
+++ b/src/test/java/org/apache/commons/beanutils2/sql/TestResultSet.java
@@ -454,7 +454,7 @@ public class TestResultSet implements InvocationHandler {
      * Handles method invocation on the ResultSet proxy.
      *
      * @param proxy  The proxy ResultSet object
-     * @param method the method being invoked
+     * @param method The method being invoked
      * @param args   The method arguments
      * @return The result of invoking the method.
      * @throws Throwable if an error occurs.
diff --git 
a/src/test/java/org/apache/commons/beanutils2/sql/TestResultSetMetaData.java 
b/src/test/java/org/apache/commons/beanutils2/sql/TestResultSetMetaData.java
index 720d5720..0c99c0bc 100644
--- a/src/test/java/org/apache/commons/beanutils2/sql/TestResultSetMetaData.java
+++ b/src/test/java/org/apache/commons/beanutils2/sql/TestResultSetMetaData.java
@@ -162,7 +162,7 @@ public class TestResultSetMetaData implements 
InvocationHandler {
      * Handles method invocation on the {@link ResultSetMetaData} proxy.
      *
      * @param proxy  The proxy ResultSet object
-     * @param method the method being invoked
+     * @param method The method being invoked
      * @param args   The method arguments
      * @return The result of invoking the method.
      * @throws Throwable if an error occurs.

Reply via email to