|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||
java.lang.Objectjava.lang.Enum<TermsStatus>
org.geebis.books.model.terms.TermsStatus
public enum TermsStatus
TermsStatus represents the various statuses of a date with respect to a terms.
| Enum Constant Summary | |
|---|---|
DISCOUNT
DISCOUNT means that a discount may be taken |
|
DUE
DUE means that the invoice is due |
|
FUTURE
FUTURE means that a discount may not be taken, but the invoice is not due until later |
|
OVERDUE
OVERDUE means that the invoice is overdue |
|
| Method Summary | |
|---|---|
static TermsStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static TermsStatus[] |
values()
Returns an array containing the constants of this enum type, in the order they're declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final TermsStatus DISCOUNT
public static final TermsStatus FUTURE
public static final TermsStatus DUE
public static final TermsStatus OVERDUE
| Method Detail |
|---|
public static final TermsStatus[] values()
for(TermsStatus c : TermsStatus.values())
System.out.println(c);
public static TermsStatus valueOf(java.lang.String name)
name - the name of the enum constant to be returned.
java.lang.IllegalArgumentException - if this enum type has no constant
with the specified name
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||