What is Type<Type> called?

generics, java

Solution

Generics! :)

Problem

What is ``` Type<Type> type; ``` called (opposed to) ``` Type type; ``` You know, where you put the angle brackets around the type? I use this a lot, but don't know the name - it's bugging me. It's very hard to search for - Google ignores the `<>` characters. (note: this is Java)

Original source