public enum GenStatus extends Enum<GenStatus>
| Enum Constant and Description |
|---|
FAILED |
INPROGRESS |
SUCCESS |
| Modifier and Type | Method and Description |
|---|---|
static GenStatus |
getEnumForName(String name) |
static GenStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GenStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GenStatus INPROGRESS
public static final GenStatus SUCCESS
public static final GenStatus FAILED
public static GenStatus[] values()
for (GenStatus c : GenStatus.values()) System.out.println(c);
public static GenStatus 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 GenStatus getEnumForName(String name) throws ServiceException
ServiceExceptionCopyright © 2016–2022. All rights reserved.