Class ForwardingSet<T>

java.lang.Object
com.tngtech.archunit.base.ForwardingCollection<T>
com.tngtech.archunit.base.ForwardingSet<T>
All Implemented Interfaces:
java.lang.Iterable<T>, java.util.Collection<T>, java.util.Set<T>
Direct Known Subclasses:
Slice

@PublicAPI(usage=ACCESS)
public abstract class ForwardingSet<T>
extends ForwardingCollection<T>
implements java.util.Set<T>
  • Constructor Summary

    Constructors
    Modifier Constructor Description
    protected ForwardingSet()  
  • Method Summary

    Modifier and Type Method Description
    protected abstract java.util.Set<T> delegate()  

    Methods inherited from class com.tngtech.archunit.base.ForwardingCollection

    add, addAll, clear, contains, containsAll, equals, hashCode, isEmpty, iterator, remove, removeAll, retainAll, size, toArray, toArray, toString

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait

    Methods inherited from interface java.util.Collection

    parallelStream, removeIf, stream, toArray

    Methods inherited from interface java.lang.Iterable

    forEach

    Methods inherited from interface java.util.Set

    add, addAll, clear, contains, containsAll, equals, hashCode, isEmpty, iterator, remove, removeAll, retainAll, size, spliterator, toArray, toArray
  • Constructor Details

    • ForwardingSet

      protected ForwardingSet()
  • Method Details