public static enum Report.Status extends Enum<Report.Status>
| Modifier and Type | Method and Description |
|---|---|
static Report.Status |
create(String val) |
String |
toString() |
static Report.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Report.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Report.Status ACTIVE
public static final Report.Status COMPLETED
public static Report.Status[] values()
for (Report.Status c : Report.Status.values()) System.out.println(c);
public static Report.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 nullpublic String toString()
toString in class Enum<Report.Status>public static Report.Status create(String val)
Copyright © 2014. All rights reserved.