org.onebusaway.transit_data.model.problems
public enum EProblemReportStatus extends Enum<EProblemReportStatus>
StopProblemReportBean
,
TripProblemReportBean
Enum Constant and Description |
---|
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
|
Modifier and Type | Method and Description |
---|---|
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.
|
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
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 nameNullPointerException
- if the argument is nullCopyright © 2014 OneBusAway. All Rights Reserved.