is this considered a singleton?

Can the following code be considered a singleton?

publicclass myClass

{

privatefinalint SOME_CONSTANT = 0;

private myClass(){ ...}

publicstaticboolean doSomething(String a, String b){ ...}

publicstaticboolean doSomethingElse(String c, String d){ ...}

}

[918 byte] By [rnicholusa] at [2007-10-2 4:46:54]
# 1
That question wasn't phrased correctly. I know my example is a "Static class", but I am unable to determine what benfits a singleton would provide in most common situations...
rnicholusa at 2007-7-16 0:51:41 > top of Java-index,Other Topics,Patterns & OO Design...