public enum ProjectAccountingMethod extends Enum<ProjectAccountingMethod>
Enum Constant and Description |
---|
COMPLETED |
COST_TO_COST |
EFFORT_EXPENDED |
LABOR_ONLY |
WHEN_BILLED |
WHEN_PERFORMED |
Modifier and Type | Method and Description |
---|---|
static ProjectAccountingMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProjectAccountingMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProjectAccountingMethod WHEN_PERFORMED
public static final ProjectAccountingMethod WHEN_BILLED
public static final ProjectAccountingMethod COST_TO_COST
public static final ProjectAccountingMethod EFFORT_EXPENDED
public static final ProjectAccountingMethod COMPLETED
public static final ProjectAccountingMethod LABOR_ONLY
public static ProjectAccountingMethod[] values()
for (ProjectAccountingMethod c : ProjectAccountingMethod.values()) System.out.println(c);
public static ProjectAccountingMethod 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 © 2010–2016. All rights reserved.