How determine how call a class XHelper or XUtils ?
To my mind :
Helper class, is a class that can be instantiate and do some business work
There's no ultimate answer for this. Figure out one naming scheme and stick with it. Naming your packages and classes is an important part of software architecture, and nobody can take that decision away from you.
I personally like the XHelper better, but I see XUtils more often in foreign code.
I also like the "plural" naming scheme you will find both in the JDK and Guava:
if a class deals with Collection
objects, it's called Collections
Array > Arrays (jdk)
List > Lists (guava)
Map > Maps (guava)
etc.