Checks that the whitespace around the Generic tokens < and > is correct to the typical convention. The convention is not configurable.
For example the following is legal:
Listx = new ArrayList (); List > y = new ArrayList
>();
But the following example is not:
List < Integer > x = new ArrayList < Integer > (); List < List < Integer > > y = new ArrayList < List < Integer > > ();