OnJava8-Examples/holding/MultiIterableClass.java

44 lines
1.3 KiB
Java
Raw Normal View History

2015-04-20 15:36:01 -07:00
//: holding/MultiIterableClass.java
2015-05-29 14:18:51 -07:00
// <20>2015 MindView LLC: see Copyright.txt
2015-04-20 15:36:01 -07:00
// Adding several Adapter Methods.
import java.util.*;
public class MultiIterableClass extends IterableClass {
public Iterable<String> reversed() {
2015-05-05 14:05:39 -07:00
return () -> new Iterator<String>() {
int current = words.length - 1;
2015-05-05 11:20:13 -07:00
@Override
2015-05-05 14:05:39 -07:00
public boolean hasNext() { return current > -1; }
@Override
public String next() { return words[current--]; }
@Override
public void remove() { // Not implemented
throw new UnsupportedOperationException();
2015-04-20 15:36:01 -07:00
}
};
2015-05-18 23:05:20 -07:00
}
2015-04-20 15:36:01 -07:00
public Iterable<String> randomized() {
2015-05-05 14:05:39 -07:00
return () -> {
List<String> shuffled =
new ArrayList<>(Arrays.asList(words));
Collections.shuffle(shuffled, new Random(47));
return shuffled.iterator();
2015-04-20 15:36:01 -07:00
};
2015-05-18 23:05:20 -07:00
}
2015-04-20 15:36:01 -07:00
public static void main(String[] args) {
MultiIterableClass mic = new MultiIterableClass();
for(String s : mic.reversed())
System.out.print(s + " ");
System.out.println();
for(String s : mic.randomized())
System.out.print(s + " ");
System.out.println();
for(String s : mic)
System.out.print(s + " ");
}
} /* Output:
banana-shaped. be to Earth the know we how is that And
is banana-shaped. Earth that how the be And we know to
And that is how we know the Earth to be banana-shaped.
*///:~