Spliterator in Java just like iterator, is used for traversing the elements of a source. The source of elements covered by a Spliterator could be, for example, an array, a Collection, an IO channel, or a generator function.
As the name suggests, Spliterator in Java can split the source and partition off some of its elements as another Spliterator, to be used in possibly-parallel operations. That way a huge data source can be divided into small sized units that can be traversed and processed in parallel.
Java Spliterator interface
Spliterator is a generic interface in Java defined as-
Interface Spliterator<T>
Where T is the type of elements returned by this Spliterator.
Java Spliterator methods
Though spliterator will increase performance by traversing the collection in parallel but you can also use spliterator even if you are not using parallel execution.
If you use iterator you have to use two methods hasNext() to ensure that there is next element and then next() method to use that element. Spliterator in Java provides methods that combine these two methods into one and making it more convenient to use.
Some of the frequently used methods of Spliterator in Java are-
- tryAdvance()- If a remaining element exists, performs the given action on it, returning true; else returns false. Its form is-
Here action is an instance of Consumer, which is a functional interface, it specifies the function that has to be applied on the next element while traversing the collection (or any other source).
tryAdvance(Consumer<? super T> action) - forEachRemaining- Performs the given action for each remaining element, sequentially in the current thread, until all elements have been processed or the action throws an exception. Its form is -
default void forEachRemaining(Consumer<? super T> action) - estimateSize()- Returns an estimate of the number of elements that would be encountered by forEachRemaining traversal, or returns Long.MAX_VALUE if infinite, unknown, or too expensive to compute. Its form is-
long estimateSize() - trySplit() - If current spliterator can be partitioned a new spliterator is created, it partitions the elements of the source so that new spliterator traverse one of the partition while original spliterator traverses the other partition.
- characteristics() - Returns a set of characteristics of this Spliterator and its elements.
Spliterator characteristics
A Spliterator also reports a set of characteristics() of its structure, source, and elements from among ORDERED, DISTINCT, SORTED, SIZED, NONNULL, IMMUTABLE, CONCURRENT, and SUBSIZED.
These characteristics are defined as constant fields in the Spliterator interface.
Read more about them here: https://docs.oracle.com/javase/8/docs/api/java/util/Spliterator.html#characteristics--
To see constant values- https://docs.oracle.com/javase/8/docs/api/constant-values.html#java.util.Spliterator
Using characteristics() method will give you a result represented as ORed values of the characterstics relevant for the given source.
Java Spliterator example
If you have a list of names and you want to iterate it and print the names, using iterator it can be done as follows-
public class IteratorDemo {
public static void main(String[] args) {
List<String> nameList = Arrays.asList("Ram", "Sheila", "Mukesh", "Rani",
"Nick", "Amy", "Desi", "Margo");
Iterator<String> itr = nameList.iterator();
while (itr.hasNext()) {
System.out.println("name - " + itr.next());
}
}
}
Same thing can be done using spliterator like this-
public class SpliteratorDemo {
public static void main(String[] args) {
List<String> nameList = Arrays.asList("Ram", "Sheila", "Mukesh", "Rani",
"Nick", "Amy", "Desi", "Margo");
Spliterator<String> splitStr = nameList.spliterator();
while(splitStr.tryAdvance((n) -> System.out.println("name - " + n)));
}
}
You can see, with Spliterator, you need to use only one method tryAdvance() which combines both hasNext() and next() methods of the iterator.
Java Spliterator forEachRemaining method example
If you want to convert all the names to lowercase you can use forEachRemaining method.
import java.util.Arrays;
import java.util.List;
import java.util.Spliterator;
public class SpliteratorDemo {
public static void main(String[] args) {
List<String> nameList = Arrays.asList("Ram", "Sheila", "Mukesh", "Rani",
"Nick", "Amy", "Desi", "Margo");
Spliterator<String> splitStr = nameList.spliterator();
splitStr.forEachRemaining(
(n) -> {
String x = n.toLowerCase();
System.out.println("" + x);
}
);
}
}
Java Spliterator trySplit method example
If you want to split the original spliterator so that you can traverse the element in parallel.
import java.util.Arrays;
import java.util.List;
import java.util.Spliterator;
public class SpliteratorDemo {
public static void main(String[] args) {
List<String> nameList = Arrays.asList("Ram", "Sheila", "Mukesh", "Rani",
"Nick", "Amy", "Desi", "Margo");
Spliterator<String> splitStr = nameList.spliterator();
Spliterator<String> splitStr2 = splitStr.trySplit();
// Check if splitting actually happened, then use it
if(splitStr2 != null){
System.out.println("Spliterator-2");
while(splitStr2.tryAdvance((n) -> System.out.println("name - " + n)));
}
// Original spliterator
System.out.println("Original Spliterator");
while(splitStr.tryAdvance((n) -> System.out.println("name - " + n)));
}
}
Output
Spliterator-2
name - Ram
name - Sheila
name - Mukesh
name - Rani
Original Spliterator
name - Nick
name - Amy
name - Desi
name - Margo
Here you are splitting the spliterator, make sure to check that splitting actually happened by checking for null.
Here note one thing, according to Java docs -
If the original thread hands a spliterator off to another thread for processing, it is best if that handoff occurs before any elements are consumed with tryAdvance(), as certain guarantees (such as the accuracy of estimateSize() for SIZED spliterators) are only valid before traversal has begun.
So make sure you first do the splitting then only start any operation on the elements.
Referrence- https://docs.oracle.com/en/java/javase/12/docs/api/java.base/java/util/Spliterator.html
That's all for this topic Spliterator in Java. If you have any doubt or any suggestions to make please drop a comment. Thanks!
>>>Return to Java Advanced Tutorial Page
Related Topics
You may also like-