I have a class that consists only of static member variables and static methods. Essentially, it is serving as a general-purpose utility class.
Is i
As long as the class has no internal state and is essentially what is known as a leaf class (utility classes fall into this category), in other words it is independent of other classes. It is fine.
The Math class being a prime example.
Math