@@ -52,7 +52,6 @@ public class BeanUtils {
5252 *
5353 * @param bean Bean to be cloned
5454 * @return the cloned bean
55- *
5655 * @throws IllegalAccessException if the caller does not have access to the property accessor method
5756 * @throws InstantiationException if a new instance of the bean's class cannot be instantiated
5857 * @throws InvocationTargetException if the property accessor method throws an exception
@@ -76,7 +75,6 @@ public static Object cloneBean(final Object bean) throws IllegalAccessException,
7675 *
7776 * @param dest Destination bean whose properties are modified
7877 * @param orig Origin bean whose properties are retrieved
79- *
8078 * @throws IllegalAccessException if the caller does not have access to the property accessor method
8179 * @throws IllegalArgumentException if the {@code dest} or {@code orig</code> argument is null or if the <code>dest} property type is different from the
8280 * source type and the relevant converter has not been registered.
@@ -100,7 +98,6 @@ public static void copyProperties(final Object dest, final Object orig) throws I
10098 * @param bean Bean on which setting is to be performed
10199 * @param name Property name (can be nested/indexed/mapped/combo)
102100 * @param value Value to be set
103- *
104101 * @throws IllegalAccessException if the caller does not have access to the property accessor method
105102 * @throws InvocationTargetException if the property accessor method throws an exception
106103 * @see BeanUtilsBean#copyProperty
@@ -133,7 +130,6 @@ public static <K, V> Map<K, V> createCache() {
133130 *
134131 * @param bean Bean whose properties are to be extracted
135132 * @return Map of property descriptors
136- *
137133 * @throws IllegalAccessException if the caller does not have access to the property accessor method
138134 * @throws InvocationTargetException if the property accessor method throws an exception
139135 * @throws NoSuchMethodException if an accessor method for this property cannot be found
@@ -156,7 +152,6 @@ public static Map<String, String> describe(final Object bean) throws IllegalAcce
156152 * @param bean Bean whose property is to be extracted
157153 * @param name Name of the property to be extracted
158154 * @return The array property value
159- *
160155 * @throws IllegalAccessException if the caller does not have access to the property accessor method
161156 * @throws InvocationTargetException if the property accessor method throws an exception
162157 * @throws NoSuchMethodException if an accessor method for this property cannot be found
@@ -180,7 +175,6 @@ public static String[] getArrayProperty(final Object bean, final String name)
180175 * @param bean Bean whose property is to be extracted
181176 * @param name {@code propertyname[index]} of the property value to be extracted
182177 * @return The indexed property's value, converted to a String
183- *
184178 * @throws IllegalAccessException if the caller does not have access to the property accessor method
185179 * @throws InvocationTargetException if the property accessor method throws an exception
186180 * @throws NoSuchMethodException if an accessor method for this property cannot be found
@@ -205,7 +199,6 @@ public static String getIndexedProperty(final Object bean, final String name)
205199 * @param name Simple property name of the property value to be extracted
206200 * @param index Index of the property value to be extracted
207201 * @return The indexed property's value, converted to a String
208- *
209202 * @throws IllegalAccessException if the caller does not have access to the property accessor method
210203 * @throws InvocationTargetException if the property accessor method throws an exception
211204 * @throws NoSuchMethodException if an accessor method for this property cannot be found
@@ -230,7 +223,6 @@ public static String getIndexedProperty(final Object bean, final String name, fi
230223 * @param bean Bean whose property is to be extracted
231224 * @param name {@code propertyname(index)} of the property value to be extracted
232225 * @return The mapped property's value, converted to a String
233- *
234226 * @throws IllegalAccessException if the caller does not have access to the property accessor method
235227 * @throws InvocationTargetException if the property accessor method throws an exception
236228 * @throws NoSuchMethodException if an accessor method for this property cannot be found
@@ -256,7 +248,6 @@ public static String getMappedProperty(final Object bean, final String name)
256248 * @param name Simple property name of the property value to be extracted
257249 * @param key Lookup key of the property value to be extracted
258250 * @return The mapped property's value, converted to a String
259- *
260251 * @throws IllegalAccessException if the caller does not have access to the property accessor method
261252 * @throws InvocationTargetException if the property accessor method throws an exception
262253 * @throws NoSuchMethodException if an accessor method for this property cannot be found
@@ -281,7 +272,6 @@ public static String getMappedProperty(final Object bean, final String name, fin
281272 * @param bean Bean whose property is to be extracted
282273 * @param name Possibly nested name of the property to be extracted
283274 * @return The nested property's value, converted to a String
284- *
285275 * @throws IllegalAccessException if the caller does not have access to the property accessor method
286276 * @throws IllegalArgumentException if a nested reference to a property returns null
287277 * @throws InvocationTargetException if the property accessor method throws an exception
@@ -307,7 +297,6 @@ public static String getNestedProperty(final Object bean, final String name)
307297 * @param bean Bean whose property is to be extracted
308298 * @param name Possibly indexed and/or nested name of the property to be extracted
309299 * @return The property's value, converted to a String
310- *
311300 * @throws IllegalAccessException if the caller does not have access to the property accessor method
312301 * @throws InvocationTargetException if the property accessor method throws an exception
313302 * @throws NoSuchMethodException if an accessor method for this property cannot be found
@@ -331,7 +320,6 @@ public static String getProperty(final Object bean, final String name) throws Il
331320 * @param bean Bean whose property is to be extracted
332321 * @param name Name of the property to be extracted
333322 * @return The property's value, converted to a String
334- *
335323 * @throws IllegalAccessException if the caller does not have access to the property accessor method
336324 * @throws InvocationTargetException if the property accessor method throws an exception
337325 * @throws NoSuchMethodException if an accessor method for this property cannot be found
@@ -355,7 +343,6 @@ public static String getSimpleProperty(final Object bean, final String name)
355343 *
356344 * @param bean JavaBean whose properties are being populated
357345 * @param properties Map keyed by property name, with the corresponding (String or String[]) value(s) to be set
358- *
359346 * @throws IllegalAccessException if the caller does not have access to the property accessor method
360347 * @throws InvocationTargetException if the property accessor method throws an exception
361348 * @see BeanUtilsBean#populate
@@ -377,7 +364,6 @@ public static void populate(final Object bean, final Map<String, ? extends Objec
377364 * @param bean Bean on which setting is to be performed
378365 * @param name Property name (can be nested/indexed/mapped/combo)
379366 * @param value Value to be set
380- *
381367 * @throws IllegalAccessException if the caller does not have access to the property accessor method
382368 * @throws InvocationTargetException if the property accessor method throws an exception
383369 * @see BeanUtilsBean#setProperty
0 commit comments