| java.lang.Object uk.org.ponder.arrayutil.ListUtil
ListUtil | public class ListUtil (Code) | | Contains useful utility methods for operating on java.util.List instances.
author: Bosmon author: The class |
EMPTY_LIST | final public static List EMPTY_LIST(Code) | | |
append | public static void append(List list, Object[] toappend)(Code) | | Append the elements in the supplied array to the end of the supplied list *
|
expandSize | public static void expandSize(List list, int newsize)(Code) | | |
instance | public static List instance(Object entry)(Code) | | Construct a new List instance comprised of the single supplied entry *
|
instance | public static List instance(Object[] init)(Code) | | Construct a new List instance filled with the supplied array of objects *
|
restrictSize | public static void restrictSize(List list, int newsize)(Code) | | |
setSize | public static void setSize(List list, int newsize)(Code) | | |
|
|