Package ejava.examples.javase5
Class GenericsTest
- java.lang.Object
-
- ejava.examples.javase5.GenericsTest
-
public class GenericsTest extends Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description private static class
GenericsTest.TestType
-
Field Summary
Fields Modifier and Type Field Description private static org.slf4j.Logger
logger
-
Constructor Summary
Constructors Constructor Description GenericsTest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
testCheckedCollection()
Checked collections check at runtime.void
testRawCollection()
Raw exceptions expose runtime to ClassCastExceptionsvoid
testTypedCollection()
Typed collections check at compile time
-
-
-
Method Detail
-
testRawCollection
public void testRawCollection()
Raw exceptions expose runtime to ClassCastExceptions
-
testTypedCollection
public void testTypedCollection()
Typed collections check at compile time
-
testCheckedCollection
public void testCheckedCollection()
Checked collections check at runtime.
-
-