Class StreamMethods


  • public final class StreamMethods
    extends Object
    Provides methods for mapping Stream-based operations, so the Java Streams API can be utilized in Gloop.
    • Constructor Detail

      • StreamMethods

        StreamMethods()
    • Method Detail

      • toStream

        @GloopObjectParameter("output:object::::::java.util.stream.Stream")
        public static <T> Stream<T> toStream​(Collection<T> collection)
        Return a sequential Stream with this collection as its source.
        Parameters:
        collection - collection data source collection data source
        Returns:
        a stream of elements from an array
        Since:
        1.0
      • filter

        @GloopObjectParameter("output:object:::::java.util.stream.Stream")
        public static Stream filter​(Stream stream,
                                    Collection collection,
                                    Closure<Boolean> predicate)
        Filter items in the provided stream based on a given condition.
        Parameters:
        stream - stream data source stream data source
        collection - collection data source collection data source
        predicate - the condition for filtering
        Returns:
        filtered stream of elements
        Throws:
        IllegalArgumentException - if both stream and collection are non-null and non-empty
        Since:
        1.0
      • sorted

        @GloopObjectParameter("output:object:::::java.util.stream.Stream")
        public static <T> Stream<T> sorted​(Stream<T> stream,
                                           Collection<T> collection)
        Sort items by their natural order.
        Parameters:
        stream - stream data source the stream data source
        collection - collection data source the collection data source
        Returns:
        a stream of elements sorted by natural order
        Throws:
        IllegalArgumentException - if both stream and collection are non-null and non-empty
        Since:
        1.0
      • sorted

        public static Stream sorted​(Stream stream,
                                    Collection collection,
                                    Closure<Integer> comparator)
        Sort items based on a provided comparator.
        Parameters:
        stream - stream data source stream data source
        collection - collection data source collection data source
        comparator - the closure to use to determine order
        Returns:
        a stream of elements sorted by a comparator
        Throws:
        IllegalArgumentException - if both stream and collection are non-null and non-empty
        Since:
        1.0
      • sorted

        @GloopObjectParameter("output:object:::::java.util.stream.Stream")
        public static Stream<GloopModel> sorted​(Stream<GloopModel> stream,
                                                Collection<GloopModel> collection,
                                                String sortBy)
        Sort models by a certain property.
        Parameters:
        stream - stream data source stream data source
        collection - collection data source collection data source
        sortBy - property to use as basis for sorting
        Returns:
        a stream of models sorted by a property
        Throws:
        IllegalArgumentException - if both stream and collection are non-null and non-empty
        Since:
        1.0
      • limit

        @GloopObjectParameter("output:object:::::java.util.stream.Stream")
        public static Stream limit​(Stream stream,
                                   Collection collection,
                                   long limit)
        Limit the items to process.
        Parameters:
        stream - stream data source
        collection - collection data source
        limit - a limited stream of items
        Returns:
        a limited stream of items
        Throws:
        IllegalArgumentException - if both stream and collection are non-null and non-empty
        Since:
        1.0
      • skip

        @GloopObjectParameter("output:object:::::java.util.stream.Stream")
        public static Stream skip​(Stream stream,
                                  Collection collection,
                                  long skip)
        Skip the first n number of elements.
        Parameters:
        stream - stream data source
        collection - collection data source
        skip - the number of leading elements to skip
        Returns:
        stream whose first n elements were skipped
        Throws:
        IllegalArgumentException - if both stream and collection are non-null and non-empty
        Since:
        1.0
      • distinct

        @GloopObjectParameter("output:object:::::java.util.stream.Stream")
        public static <T> Stream<T> distinct​(Stream<T> stream,
                                             Collection<T> collection)
        Filter out duplicate elements.
        Parameters:
        stream - stream data source
        collection - collection data source
        Returns:
        a stream of distinct items
        Throws:
        IllegalArgumentException - if both stream and collection are non-null and non-empty
        Since:
        1.0
      • count

        @GloopObjectParameter("output:long")
        public static Long count​(Stream<?> stream)
        Count the number of elements in the stream.
        Parameters:
        stream - stream data source
        Returns:
        the number of elements
        Since:
        1.0
      • toList

        @GloopObjectParameter("output[]:object")
        public static <T> List<T> toList​(Stream<T> stream)
        Collect all elements in the stream, then return them as a List.
        Parameters:
        stream - stream data source
        Returns:
        a List of elements in the provided stream
        Since:
        1.0
      • forEach

        public static <T> void forEach​(Stream<T> stream,
                                       Closure<T> consumer)
        Consume each element of the stream to do a provided operation.
        Parameters:
        stream - stream data source
        consumer - the closure to apply to each item
        Since:
        1.0
      • groupBy

        @GloopObjectParameter("output:a grouping of items from a stream{\ngroups[]{\nkey\nelements[]{\n}\n}\n}")
        public static GloopModel groupBy​(Stream<GloopModel> stream,
                                         Collection<GloopModel> collection,
                                         String groupBy)
        Group together elements based on a Gloop model property.
        Parameters:
        stream - stream data source
        collection - array data source
        groupBy - the property that will be used to group items
        Returns:
        a grouping of items from a stream
        Throws:
        IllegalArgumentException - if both stream and collection are non-null and non-empty
        Since:
        1.0