-
Notifications
You must be signed in to change notification settings - Fork 15
lowercase
Mahmoud Ben Hassine edited this page Oct 9, 2015
·
4 revisions
Transforms a String to lower case.
N/A
Stream<String> stream = Stream.of("A", "b");
XStream.unixify(stream)
.lowercase()
.to(stdOut()); // prints "a", "b"
// Or
XStream.from(stream)
.pipe(lowercase())
.to(stdOut()); // prints "a", "b"
UnixStream is created with passion by Mahmoud Ben Hassine