Interface TSet<E>

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

public interface TSet<E> extends TCollection<E>
  • 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)
    • copyOf

      static <E> TSet<E> copyOf(TCollection<E> collection)