public static enum SampleReportService.Status extends Enum<SampleReportService.Status>
Enum Constant and Description |
---|
completed |
failed |
notstarted |
pending |
running |
Modifier and Type | Method and Description |
---|---|
static SampleReportService.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SampleReportService.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SampleReportService.Status notstarted
public static final SampleReportService.Status pending
public static final SampleReportService.Status running
public static final SampleReportService.Status failed
public static final SampleReportService.Status completed
public static SampleReportService.Status[] values()
for (SampleReportService.Status c : SampleReportService.Status.values()) System.out.println(c);
public static SampleReportService.Status 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 © 2015 SeqWare. All rights reserved.