I have a method that i'm calling a lot:
Integer.parseInt(input);
Is there a way i can take this text and replace with a shorter key word like
parseInput
so that i could use it as follows
month = parseInput
I've been told that Java does not have #define like C does, but is there no other way at all?