I'm having trouble understanding a question. The question is: Code a statement that will make the constants in the Terms enumeration available to a class without qualification
This is my code so far;
public enum Terms {
NET_30_DAYS, NET_60_DAYS, NET_90_DAYS;
//either name() or super() can be used
@Override
public String toString() {
String s = "Net due " + name() + " days";
return s;
}
}
import staticstatement. – Raphael R. Oct 22 '11 at 16:30