public enum EarnedValueMethod extends Enum<EarnedValueMethod> implements MpxjEnum
| Enum Constant and Description |
|---|
PERCENT_COMPLETE |
PHYSICAL_PERCENT_COMPLETE |
| Modifier and Type | Method and Description |
|---|---|
static EarnedValueMethod |
getInstance(int type)
Retrieve an instance of the enum based on its int value.
|
static EarnedValueMethod |
getInstance(Number type)
Retrieve an instance of the enum based on its int value.
|
int |
getValue()
Accessor method used to retrieve the numeric representation of the enum.
|
static EarnedValueMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EarnedValueMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EarnedValueMethod PERCENT_COMPLETE
public static final EarnedValueMethod PHYSICAL_PERCENT_COMPLETE
public static EarnedValueMethod[] values()
for (EarnedValueMethod c : EarnedValueMethod.values()) System.out.println(c);
public static EarnedValueMethod 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 nullpublic static EarnedValueMethod getInstance(int type)
type - int typepublic static EarnedValueMethod getInstance(Number type)
type - int typeCopyright © 2000–2025 MPXJ. All rights reserved.