I am currently studying Java and have recently been stumped by angle brackets(<>). What exactly do they mean?
public class Pool{ public inter
<> is used to indicate generics in Java.
<>
T is a type parameter in this example. And no: instantiating is one of the few things that you can't do with T.
T
Apart from the tutorial linked above Angelika Langers Generics FAQ is a great resource on the topic.