After it's done operating on a class, I'd like to reinitialize all of its static variables to their original values
Seriously sounds like you would be better of with instance variables. Then you could just create a new instance of your class (or a class containing your parameters) using new, and all variables would be initialized to their initial values. Something like this:
// All parameters (static if you so like)
static ControlParams controlParams = new ControlParams();
...
// Reset parameters
controlParams = new ControlParams();
something that's a part of the java API, so that I don't have to make a reinitializeClassVariables()
No, there's no such thing in the API (actually, it would have to be part of the language specification I believe). The use of static variables is simply a really bad choice in your use case.