Interface TSet<E>

All Superinterfaces:
TCollection<E>, TIterable<E>
All Known Subinterfaces:
TNavigableSet<E>, TSortedSet<E>
All Known Implementing Classes:
TAbstractSet, THashSet, TLinkedHashSet, TSetFromMap, TTreeSet

public interface TSet<E> extends TCollection<E>
  • Method Summary

    Static Methods
    Modifier and Type
    Method
    Description
    static <E> TSet<E>
    of()
     
    static <E> TSet<E>
    of​(E e)
     
    static <E> TSet<E>
    of​(E... elements)
     
    static <E> TSet<E>
    of​(E e1, E e2)
     
    static <E> TSet<E>
    of​(E e1, E e2, E e3)
     
    static <E> TSet<E>
    of​(E e1, E e2, E e3, E e4)
     
    static <E> TSet<E>
    of​(E e1, E e2, E e3, E e4, E e5)
     
    static <E> TSet<E>
    of​(E e1, E e2, E e3, E e4, E e5, E e6)
     
    static <E> TSet<E>
    of​(E e1, E e2, E e3, E e4, E e5, E e6, E e7)
     
    static <E> TSet<E>
    of​(E e1, E e2, E e3, E e4, E e5, E e6, E e7, E e8)
     
    static <E> TSet<E>
    of​(E e1, E e2, E e3, E e4, E e5, E e6, E e7, E e8, E e9)
     
    static <E> TSet<E>
    of​(E e1, E e2, E e3, E e4, E e5, E e6, E e7, E e8, E e9, E e10)
     

    Methods inherited from interface org.teavm.classlib.java.util.TCollection

    add, addAll, clear, contains, containsAll, isEmpty, remove, removeAll, removeIf, retainAll, size, spliterator, stream, toArray, toArray, toArray

    Methods inherited from interface org.teavm.classlib.java.lang.TIterable

    forEach, iterator
  • Method Details

    • of

      static <E> TSet<E> of()
    • of

      static <E> TSet<E> of(E e)
    • of

      static <E> TSet<E> of(E e1, E e2)
    • of

      static <E> TSet<E> of(E e1, E e2, E e3)
    • of

      static <E> TSet<E> of(E e1, E e2, E e3, E e4)
    • of

      static <E> TSet<E> of(E e1, E e2, E e3, E e4, E e5)
    • of

      static <E> TSet<E> of(E e1, E e2, E e3, E e4, E e5, E e6)
    • of

      static <E> TSet<E> of(E e1, E e2, E e3, E e4, E e5, E e6, E e7)
    • of

      static <E> TSet<E> of(E e1, E e2, E e3, E e4, E e5, E e6, E e7, E e8)
    • of

      static <E> TSet<E> of(E e1, E e2, E e3, E e4, E e5, E e6, E e7, E e8, E e9)
    • of

      static <E> TSet<E> of(E e1, E e2, E e3, E e4, E e5, E e6, E e7, E e8, E e9, E e10)
    • of

      @SafeVarargs static <E> TSet<E> of(E... elements)