public static enum Asset.ModeOfAcquisition extends Enum<Asset.ModeOfAcquisition>
| Enum Constant and Description |
|---|
ACQUIRED |
CONSTRUCTION |
PURCHASE |
TENDER |
| Modifier and Type | Method and Description |
|---|---|
static Asset.ModeOfAcquisition |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Asset.ModeOfAcquisition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Asset.ModeOfAcquisition ACQUIRED
public static final Asset.ModeOfAcquisition CONSTRUCTION
public static final Asset.ModeOfAcquisition PURCHASE
public static final Asset.ModeOfAcquisition TENDER
public static Asset.ModeOfAcquisition[] values()
for (Asset.ModeOfAcquisition c : Asset.ModeOfAcquisition.values()) System.out.println(c);
public static Asset.ModeOfAcquisition 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.