public static enum ChecklistItem.Status extends Enum<ChecklistItem.Status>
Enum Constant and Description |
---|
Aborted |
Completed |
Created |
InProgress |
Optional |
Pending |
Ready |
Reserved |
Modifier and Type | Method and Description |
---|---|
static ChecklistItem.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ChecklistItem.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ChecklistItem.Status Pending
public static final ChecklistItem.Status Optional
public static final ChecklistItem.Status Created
public static final ChecklistItem.Status Ready
public static final ChecklistItem.Status Reserved
public static final ChecklistItem.Status InProgress
public static final ChecklistItem.Status Completed
public static final ChecklistItem.Status Aborted
public static ChecklistItem.Status[] values()
for (ChecklistItem.Status c : ChecklistItem.Status.values()) System.out.println(c);
public static ChecklistItem.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 © 2001-2015 JBoss by Red Hat. All Rights Reserved.