Skip to content
Snippets Groups Projects
Commit 1d33ac8d authored by ribeaudc's avatar ribeaudc
Browse files

add: - Two methods with an array as argument (instead of 'Collection' or 'Iterable').

SVN: 5625
parent 869e2faf
No related branches found
No related tags found
No related merge requests found
...@@ -181,6 +181,25 @@ public final class BeanUtils ...@@ -181,6 +181,25 @@ public final class BeanUtils
return createBeanArray(clazz, source, null); return createBeanArray(clazz, source, null);
} }
/**
* Creates a new array of Beans of type <var>clazz</var>. See <code>createBeanList()</code>
* for parameter specification.
*/
public final static <T, S> T[] createBeanArray(final Class<T> clazz, final S[] source)
{
return createBeanArray(clazz, Arrays.asList(source), null);
}
/**
* Creates a new array of Beans of type <var>clazz</var>. See <code>createBeanList()</code>
* for parameter specification.
*/
public final static <T, S> T[] createBeanArray(final Class<T> clazz, final S[] source,
final Converter converter)
{
return createBeanArray(clazz, Arrays.asList(source), converter);
}
/** /**
* Creates a new array of Beans of type <var>clazz</var>. See <code>createBeanList()</code> * Creates a new array of Beans of type <var>clazz</var>. See <code>createBeanList()</code>
* for parameter specification. * for parameter specification.
...@@ -899,7 +918,7 @@ public final class BeanUtils ...@@ -899,7 +918,7 @@ public final class BeanUtils
final List<PropertyDescriptor> descriptors = final List<PropertyDescriptor> descriptors =
new ArrayList<PropertyDescriptor>(Arrays.asList(Introspector.getBeanInfo(clazz) new ArrayList<PropertyDescriptor>(Arrays.asList(Introspector.getBeanInfo(clazz)
.getPropertyDescriptors())); .getPropertyDescriptors()));
for (final Iterator<PropertyDescriptor> iter = descriptors.iterator(); iter.hasNext(); ) for (final Iterator<PropertyDescriptor> iter = descriptors.iterator(); iter.hasNext();)
{ {
final PropertyDescriptor descriptor = iter.next(); final PropertyDescriptor descriptor = iter.next();
// If no write method, remove it. For instance 'class' property does not have any // If no write method, remove it. For instance 'class' property does not have any
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment