Uses of Interface
org.teavm.classlib.java.util.TList
Packages that use TList
-
Uses of TList in org.teavm.classlib.java.util
Classes in org.teavm.classlib.java.util that implement TListModifier and TypeClassDescriptionclass
class
class
TArrayList<E>
class
TLinkedList<E>
class
TStack<E>
class
TVector<E>
Fields in org.teavm.classlib.java.util declared as TListMethods in org.teavm.classlib.java.util that return TListModifier and TypeMethodDescriptionstatic <T> TList<T>
TArrays.asList(T... a)
static <E> TList<E>
TCollections.checkedList(TList<E> list, Class<E> type)
static <T> TList<T>
TCollections.emptyList()
static <T> TList<T>
TCollections.nCopies(int n, T o)
static <E> TList<E>
TList.of()
static <E> TList<E>
TList.of(E e)
static <E> TList<E>
TList.of(E... elements)
static <E> TList<E>
TList.of(E e1, E e2)
static <E> TList<E>
TList.of(E e1, E e2, E e3)
static <E> TList<E>
TList.of(E e1, E e2, E e3, E e4)
static <E> TList<E>
TList.of(E e1, E e2, E e3, E e4, E e5)
static <E> TList<E>
TList.of(E e1, E e2, E e3, E e4, E e5, E e6)
static <E> TList<E>
TList.of(E e1, E e2, E e3, E e4, E e5, E e6, E e7)
static <E> TList<E>
TList.of(E e1, E e2, E e3, E e4, E e5, E e6, E e7, E e8)
static <E> TList<E>
TList.of(E e1, E e2, E e3, E e4, E e5, E e6, E e7, E e8, E e9)
static <E> TList<E>
TList.of(E e1, E e2, E e3, E e4, E e5, E e6, E e7, E e8, E e9, E e10)
static <T> TList<T>
TCollections.singletonList(T o)
TAbstractList.subList(int fromIndex, int toIndex)
TList.subList(int fromIndex, int toIndex)
static <T> TList<T>
TCollections.synchronizedList(TList<T> list)
static <T> TList<T>
TCollections.unmodifiableList(TList<? extends T> list)
Methods in org.teavm.classlib.java.util with parameters of type TListModifier and TypeMethodDescriptionstatic <T> int
TCollections.binarySearch(TList<? extends TComparable<? super T>> list, T key)
static <T> int
TCollections.binarySearch(TList<? extends T> list, T key, TComparator<? super T> c)
static <E> TList<E>
TCollections.checkedList(TList<E> list, Class<E> type)
static <T> void
static <T> void
static int
TCollections.indexOfSubList(TList<?> source, TList<?> target)
static int
TCollections.lastIndexOfSubList(TList<?> source, TList<?> target)
static <T> boolean
TCollections.replaceAll(TList<T> list, T oldVal, T newVal)
static void
static void
static void
static void
static <T extends TComparable<? super T>>
voidstatic <T> void
TCollections.sort(TList<T> list, TComparator<? super T> c)
static void
static <T> TList<T>
TCollections.synchronizedList(TList<T> list)
static <T> TList<T>
TCollections.unmodifiableList(TList<? extends T> list)
-
Uses of TList in org.teavm.classlib.java.util.concurrent
Classes in org.teavm.classlib.java.util.concurrent that implement TList