Java Stuff
STREAMS
- StreamSupport - creates a new form of stream from SplitIterator
- Iterable - Implementing this interface allows an object to be the target of the “for-each loop”
- SplitIterator - An object for traversing and partitioning 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.
- TsvParser (univocity)