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?

link|improve this question

2  
The obvious reaction to this is 'why is this information only available in these static members, and not in some data structure'. – bmargulies Sep 11 '11 at 21:08
That was why I suggested the Map data structure as a potential alternative solution. – Ryan Sep 12 '11 at 20:30
feedback

1 Answer

up vote 0 down vote accepted

I'm answering my own question by saying "there is a better way to approach this type of problem". Storing this information in an external class (perhaps in a Map) is a better solution.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.