2015-09-07 11:44:36 -06:00
|
|
|
// generics/ByteSet.java
|
2015-06-15 17:47:35 -07:00
|
|
|
import java.util.*;
|
|
|
|
|
|
|
|
public class ByteSet {
|
|
|
|
Byte[] possibles = { 1,2,3,4,5,6,7,8,9 };
|
|
|
|
Set<Byte> mySet =
|
|
|
|
new HashSet<>(Arrays.asList(possibles));
|
|
|
|
// But you can't do this:
|
|
|
|
// Set<Byte> mySet2 = new HashSet<>(
|
|
|
|
// Arrays.<Byte>asList(1,2,3,4,5,6,7,8,9));
|
2015-09-07 11:44:36 -06:00
|
|
|
}
|