I am trying to have a method that can take in ANY TYPE as a parameter (Object, int, boolean, ArrayList, etc.). Here is a very simple method to illustrate what it would be trying to do:
public void printAnything(Type arg0) {
System.out.println(arg0);
}
And what I am asking is, what would replace Type
in that method?