If your method does not depend on the state of the class, aka: doesn't use member-variables, then it's a good idea to make this visible by declaring your method static.
Other Classes may use this method without creating an object of this class first, which will be confusing, if that object is never used again.
excellent. i was looking for this . thank you.