2015-04-20 15:36:01 -07:00
|
|
|
|
//: generics/ByteSet.java
|
2015-05-29 14:18:51 -07:00
|
|
|
|
// <20>2015 MindView LLC: see Copyright.txt
|
2015-04-20 15:36:01 -07:00
|
|
|
|
import java.util.*;
|
|
|
|
|
|
|
|
|
|
public class ByteSet {
|
|
|
|
|
Byte[] possibles = { 1,2,3,4,5,6,7,8,9 };
|
|
|
|
|
Set<Byte> mySet =
|
2015-05-05 11:20:13 -07:00
|
|
|
|
new HashSet<>(Arrays.asList(possibles));
|
2015-04-20 15:36:01 -07:00
|
|
|
|
// But you can't do this:
|
2015-05-05 11:20:13 -07:00
|
|
|
|
// Set<Byte> mySet2 = new HashSet<>(
|
2015-04-20 15:36:01 -07:00
|
|
|
|
// Arrays.<Byte>asList(1,2,3,4,5,6,7,8,9));
|
|
|
|
|
} ///:~
|