Commits


Bryan Cutler authored and Wes McKinney committed 7810a7efdbc
ARROW-3323: [Java] Fix checkstyle naming Fix checkstyle errors from naming ``` LocalVariableName MemberName ParameterName CatchParameterName ClassTypeParameterName MethodTypeParameterName InterfaceTypeParameterName ``` Relaxed MemberName to allow for variables being used as constants and single lower case before upper case, relaxed CatchParameterName to allow for common abbreviated names. Relaxed *TypeParameterName to allow for all upper case. Removed AbbreviationAsWordInName because it conflicts with some uppercase names being used as constants. Author: Bryan Cutler <cutlerb@gmail.com> Closes #2621 from BryanCutler/java-checkstyle-naming-ARROW-3323 and squashes the following commits: d9d1b954f <Bryan Cutler> fixed arrow-gandiva e68ff64b4 <Bryan Cutler> fixed arrow-plasma 000a2b479 <Bryan Cutler> fixed arrow-vector 606f1ae2f <Bryan Cutler> fixed arrow-memory 776b67eac <Bryan Cutler> relaxed some naming rules to match current style 1fdbb2916 <Bryan Cutler> enabled naming checks