17 lines
416 B
Java
Raw Normal View History

2015-04-20 15:36:01 -07:00
//: enumerated/NonEnum.java
2015-05-29 14:18:51 -07:00
// <20>2015 MindView LLC: see Copyright.txt
2015-04-20 15:36:01 -07:00
public class NonEnum {
public static void main(String[] args) {
Class<Integer> intClass = Integer.class;
try {
for(Object en : intClass.getEnumConstants())
System.out.println(en);
} catch(Exception e) {
System.out.println("Expected: " + e);
2015-04-20 15:36:01 -07:00
}
}
} /* Output:
Expected: java.lang.NullPointerException
2015-05-05 11:20:13 -07:00
*///:~