Methoden |
public static int | binarySearch(List list, Object key) |
public static int | binarySearch(List list, Object key, Comparator c) |
public static void | copy(List dest, List src) |
public static Enumeration | enumeration(Collection c) |
public static void | fill(List list, Object o) |
public static int | indexOfSubList(List source, List target) |
public static int | lastIndexOfSubList(List source, List target) |
public static ArrayList | list(Enumeration e) |
public static Object | max(Collection coll) |
public static Object | max(Collection coll, Comparator comp) |
public static Object | min(Collection coll) |
public static Object | min(Collection coll, Comparator comp) |
public static List | nCopies(final int n, final Object o) |
public static boolean | replaceAll(List list, Object oldVal, Object newVal) |
public static void | reverse(List list) |
public static Comparator | reverseOrder() |
public static void | rotate(List list, int distance) |
public static void | shuffle(List list) |
public static void | shuffle(List list, Random r) |
public static Set | singleton(Object o) |
public static List | singletonList(Object o) |
public static Map | singletonMap(Object key, Object value) |
public static void | sort(List list) |
public static void | sort(List list, Comparator c) |
public static void | swap(List list, int i, int j) |
public static Collection | synchronizedCollection(Collection c) |
public static List | synchronizedList(List list) |
public static Map | synchronizedMap(Map m) |
public static Set | synchronizedSet(Set s) |
public static SortedMap | synchronizedSortedMap(SortedMap m) |
public static SortedSet | synchronizedSortedSet(SortedSet s) |
public static Collection | unmodifiableCollection(Collection c) |
public static List | unmodifiableList(List list) |
public static Map | unmodifiableMap(Map m) |
public static Set | unmodifiableSet(Set s) |
public static SortedMap | unmodifiableSortedMap(SortedMap m) |
public static Set | unmodifiableSortedSet(SortedSet s) |