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 classGenericsTest.TestType
-
Field Summary
Fields Modifier and Type Field Description private static org.slf4j.Loggerlogger
-
Constructor Summary
Constructors Constructor Description GenericsTest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidtestCheckedCollection()Checked collections check at runtime.voidtestRawCollection()Raw exceptions expose runtime to ClassCastExceptionsvoidtestTypedCollection()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.
-
-