public enum ReportingCriteriaType extends Enum<ReportingCriteriaType>
Java class for reportingCriteriaType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="reportingCriteriaType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="never"/>
<enumeration value="periodic"/>
<enumeration value="statusChanged"/>
<enumeration value="onCommence"/>
<enumeration value="onComplete"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
NEVER
No reports are to be made concerning the progress of this goal.
|
ON_COMMENCE
A report is to be made whenever the vehicle commences actions to achieve this goal.
|
ON_COMPLETE
A report is to be made whenever the vehicle achieves the goal or checks off station.
|
PERIODIC
Reports are to be made at specific periods until this goal is complete.
|
STATUS_CHANGED
A report is to be made whenever an action effecting this goal occurs (e.g. new contact).
|
| Modifier and Type | Method and Description |
|---|---|
static ReportingCriteriaType |
fromValue(String v) |
String |
value() |
static ReportingCriteriaType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ReportingCriteriaType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReportingCriteriaType NEVER
public static final ReportingCriteriaType PERIODIC
public static final ReportingCriteriaType STATUS_CHANGED
public static final ReportingCriteriaType ON_COMMENCE
public static final ReportingCriteriaType ON_COMPLETE
public static ReportingCriteriaType[] values()
for (ReportingCriteriaType c : ReportingCriteriaType.values()) System.out.println(c);
public static ReportingCriteriaType 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 value()
public static ReportingCriteriaType fromValue(String v)