public enum WorkContour extends Enum<WorkContour> implements MpxjEnum
| Enum Constant and Description |
|---|
BACK_LOADED |
BELL |
CONTOURED |
DOUBLE_PEAK |
EARLY_PEAK |
FLAT |
FRONT_LOADED |
LATE_PEAK |
TURTLE |
| Modifier and Type | Method and Description |
|---|---|
static WorkContour |
getInstance(int type)
Retrieve an instance of the enum based on its int value.
|
static WorkContour |
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 WorkContour |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WorkContour[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WorkContour FLAT
public static final WorkContour BACK_LOADED
public static final WorkContour FRONT_LOADED
public static final WorkContour DOUBLE_PEAK
public static final WorkContour EARLY_PEAK
public static final WorkContour LATE_PEAK
public static final WorkContour BELL
public static final WorkContour TURTLE
public static final WorkContour CONTOURED
public static WorkContour[] values()
for (WorkContour c : WorkContour.values()) System.out.println(c);
public static WorkContour 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 WorkContour getInstance(int type)
type - int typepublic static WorkContour getInstance(Number type)
type - int typeCopyright © 2013. All Rights Reserved.