|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectde.jstacs.io.ArrayHandler
public final class ArrayHandler
This class handles arrays with elements of generic type and enables the user to cast, clone, and create arrays easily.
Constructor Summary | |
---|---|
ArrayHandler()
|
Method Summary | ||
---|---|---|
static
|
cast(Class<? extends S> c,
Object[] o)
This method returns an array of a user-specified class with all elements in the given array o . |
|
static Object[] |
cast(Object[] o)
This method creates a new array of the superclass of all elements of the given array and copies the elements. |
|
static
|
clone(T... t)
This method returns a deep copy of a (multi-dimensional) array of Cloneable s or primitives. |
|
static
|
createArrayOf(T t,
int l)
This method returns an array of length l that has at each position a clone of t . |
|
static
|
getSuperClassOf(T... o)
This method returns the deepest class in the class hierarchy that is the class or a superclass of all instances in the array. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public ArrayHandler()
Method Detail |
---|
public static <T> Class getSuperClassOf(T... o)
T
- the type of the array elementso
- the array
public static Object[] cast(Object[] o)
Object[] o = { new UniformTrainSM( alphabetContainer ), new UniformTrainSM( alphabetContainer ) };
AbstractTrainableStatisticalModel[] a = (AbstractTrainableStatisticalModel[]) ArrayHandler.cast( o );
AbstractTrainableStatisticalModel[] a = (AbstractTrainableStatisticalModel[]) o;
o
- the array
getSuperClassOf(Object[])
,
cast(Class, Object[])
public static <S> S[] cast(Class<? extends S> c, Object[] o)
o
.
If the given array is already from the correct class it is directly returned, otherwise a new array is created
and filled with the elements of o
. In both cases, the order of the elements is not changed.
Object[] o = { new UniformTrainSM( alphabetContainer ), new UniformTrainSM( alphabetContainer ) };
AbstractTrainableStatisticalModel[] a = ArrayHandler.cast( AbstractTrainableStatisticalModel.class, o );
AbstractTrainableStatisticalModel[] a = (AbstractTrainableStatisticalModel[]) o;
S
- the type of the array elementsc
- the class of the array itemso
- the array
getSuperClassOf(Object[])
public static <T extends Cloneable> T[] clone(T... t) throws CloneNotSupportedException
Cloneable
s or primitives. For arrays of Cloneable
s, each element of the
array is cloned using its clone()
-method.
T
- the type of the array elementst
- the array
CloneNotSupportedException
- if an element could not be clonedCloneable
public static <T extends Cloneable> T[] createArrayOf(T t, int l) throws CloneNotSupportedException
l
that has at each position a clone of t
.
T
- the type of the array elements that implements
Cloneable
t
- the original elementl
- the dimension of the new array
l
that has at each position a clone of t
CloneNotSupportedException
- if t
could not be clonedCloneable
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |