A generic class with the type parameter Type

<Type>TypeTypeTypeType

We can now create new objects using a type parameter

<String><Int>

Generics can also be created with multiple type parameters

<TypeOne, TypeTwo, TypeThree>TypeOneTypeTwoTypeThreeTypeOneTypeTwoTypeThreeTypeOneTypeTwoTypeThree

And used in the same way

<String, Int, Double>