I've recently come across the problem (mostly dealing with database work) that I'll need to access data about a class without the need to have an instantiated object. An example of this would be the table name that the object is going to be stored in (public final static).
Unfortunately, one can not define static methods or members inside of an interface in Java, so I am left with either iterating over a "known" field name using Reflection, or instantiate the object use a method of an interface like getTableName(). When using embedded devices, object instantiation is expensive and I'd prefer to avoid it. Short of having something like a global singleton containing a Map<Class<?>, String> for class -> table name resolution, is there a better way to approach this type of problem?