FreshFromATL
Self Made
I did a Java code review for a contractor of ours who is a foreigner.
He wrote this near the top of his code to define all his variables.
private static final int NUMBER_ZERO = 0;
private static final int NUMBER_ONE = 1;
private static final int NUMBER_TWO = 2;
I was like you don't need to do that for integers. It's never going to change. Zero is never going to be another number.