I can't seem to find where I'm using a non-static reference in my static method, code is:
public class Item {
public static final Map ITEM_STATUSES = new HashMap();
static {
ITEM_STATUSES.put(STATUS_NEW, "New");
}
public static String getItemStatusFromName(final String p_itemStatusName) {
Iterator statusIterator = Item.ITEM_STATUSES.entrySet().iterator();
while (statusIterator.hasNext()) {
Entry statusEntry = (Entry)statusIterator.next();
if (((String)statusEntry.getValue()).equals(p_itemStatusName)) {
return (String)statusEntry.getKey();
}
}
return "";
}
}
and in the other class
private void getName(){
String itemStatus = Item.getItemStatusFromName(p_itemStatusName);
}
Compiler says: Cannot make a static reference to the non-static method getItemStatusFromName(String) from the type Item
Itemclass in a different package? At any way, the code looks fine, it just boils down that you're not really running the code where you're currently looking at. – BalusC Apr 7 '11 at 12:45