public enum ImplementationStatus extends Enum<ImplementationStatus>
| Modifier and Type | Method and Description |
|---|---|
static ImplementationStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ImplementationStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ImplementationStatus FINISHED
public static final ImplementationStatus PARTIALLY
public static final ImplementationStatus NONE
public static ImplementationStatus[] values()
for (ImplementationStatus c : ImplementationStatus.values()) System.out.println(c);
public static ImplementationStatus 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 © 2014 TNG Technology Consulting. All rights reserved.