public enum RevisionType extends Enum<RevisionType>
| Enum Constant and Description |
|---|
ADDITIONAL_QUANTITY |
LUMP_SUM_ITEM |
NON_TENDERED_ITEM |
REDUCED_QUANTITY |
| Modifier and Type | Method and Description |
|---|---|
static RevisionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RevisionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RevisionType NON_TENDERED_ITEM
public static final RevisionType LUMP_SUM_ITEM
public static final RevisionType ADDITIONAL_QUANTITY
public static final RevisionType REDUCED_QUANTITY
public static RevisionType[] values()
for (RevisionType c : RevisionType.values()) System.out.println(c);
public static RevisionType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2015–2016 eGovernments Foundation. All rights reserved.