Class CompositeTestSource

  • All Implemented Interfaces:
    java.io.Serializable, TestSource

    @API(status=STABLE,
         since="1.0")
    public class CompositeTestSource
    extends java.lang.Object
    implements TestSource
    A CompositeTestSource contains one or more TestSources.

    CompositeTestSource and its sources are immutable.

    Since:
    1.0
    See Also:
    Serialized Form
    • Constructor Detail

      • CompositeTestSource

        private CompositeTestSource​(java.util.Collection<? extends TestSource> sources)
    • Method Detail

      • from

        public static CompositeTestSource from​(java.util.Collection<? extends TestSource> sources)
        Create a new CompositeTestSource based on the supplied collection of sources.

        This constructor makes a defensive copy of the supplied collection and stores the sources as a list in the order in which they are returned by the collection's iterator.

        Parameters:
        sources - the collection of sources to store in this CompositeTestSource; never null or empty
      • getSources

        public final java.util.List<TestSource> getSources()
        Get an immutable list of the sources stored in this CompositeTestSource.
        Returns:
        the sources stored in this CompositeTestSource; never null
      • equals

        public boolean equals​(java.lang.Object obj)
        Overrides:
        equals in class java.lang.Object
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class java.lang.Object
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object