View Javadoc
1   package com.google.checkstyle.test.chapter4formatting.rule462horizontalwhitespace;
2   
3   public class InputGenericWhitespaceEndsTheLine {
4       public boolean returnsGenericObjectAtEndOfLine(Object otherObject) {
5           return otherObject instanceof Enum<?>;
6       }
7   }