class ArrayUtils extends Object
| Modifier and Type | Method and Description |
|---|---|
static <T> T[] | newUnpaddedArray(Class<T> _clazz,
int minLen)Return a new typed array of the specified minimum length. |
static char[] | newUnpaddedCharArray(int minLen)Return a new char array of the specified minimum length. |
static Object[] | newUnpaddedObjectArray(int minLen)Return a new Object array of the specified minimum length. |
public static <T> T[] newUnpaddedArray(Class<T> _clazz, int minLen)
T - the component type_clazz - the class of the component typeminLen - the minimum lengthpublic static char[] newUnpaddedCharArray(int minLen)
minLen - the minimum lengthpublic static Object[] newUnpaddedObjectArray(int minLen)
minLen - the minimum length