|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<EProblemReportStatus>
org.onebusaway.transit_data.model.problems.EProblemReportStatus
public enum EProblemReportStatus
Status of a problem report, similar the the status of a bug in an issue tracking system.
StopProblemReportBean
,
TripProblemReportBean
Enum Constant Summary | |
---|---|
ACCEPTED
An accepted problem report that needs action |
|
DUPLICATE
Duplicate error report |
|
FIXED
/** A problem report that has been fixed |
|
INVALID
The problem report is invalid |
|
NEW
A new, unaccepted problem report |
|
STARTED
Work on this problem has been started |
|
VERIFIED
The fix for the problem report has been verified |
|
WONT_FIX
We will not address this problem report |
Method Summary | |
---|---|
static EProblemReportStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static EProblemReportStatus[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final EProblemReportStatus NEW
public static final EProblemReportStatus ACCEPTED
public static final EProblemReportStatus STARTED
public static final EProblemReportStatus FIXED
public static final EProblemReportStatus VERIFIED
public static final EProblemReportStatus INVALID
public static final EProblemReportStatus DUPLICATE
public static final EProblemReportStatus WONT_FIX
Method Detail |
---|
public static EProblemReportStatus[] values()
for (EProblemReportStatus c : EProblemReportStatus.values()) System.out.println(c);
public static EProblemReportStatus valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |