org.jboss.seam.solder.util.collections
Class Arrays2
java.lang.Object
org.jboss.seam.solder.util.collections.Arrays2
public class Arrays2
- extends Object
A collection of utilities for working with Arrays that goes beyond that in
the JDK.
- Author:
- Pete Muir
|
Method Summary |
static
|
asSet(T... array)
Create a set from an array. |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
asSet
public static <T> Set<T> asSet(T... array)
- Create a set from an array. If the array contains duplicate objects, the
last object in the array will be placed in resultant set.
- Type Parameters:
T - the type of the objects in the set- Parameters:
array - the array from which to create the set
- Returns:
- the created sets
Copyright © 2008-2011 Seam Framework. All Rights Reserved.