public enum ReportType extends Enum<ReportType> implements Serializable
Java class for ReportType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ReportType"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="DEVICE_DETAIL"/> <enumeration value="TRAFFIC_DETAIL"/> <enumeration value="TRAFFIC_DETAIL_SCHEDULED"/> <enumeration value="TRAFFIC_COST_SUMMARY"/> <enumeration value="DEVICE_DAILY_TRAFFIC_USAGE"/> <enumeration value="DEVICE_DAILY_TRAFFIC_USAGE_SCHEDULED"/> <enumeration value="DEVICE_SUMMARY"/> <enumeration value="DEVICE_STATUS_ACTIVITY"/> <enumeration value="DEVICE_TRAFFIC_USAGE"/> <enumeration value="DEVICE_TRAFFIC_USAGE_SCHEDULED"/> <enumeration value="TRAFFIC_SUMMARY_TREND"/> <enumeration value="COST_SUMMARY_TREND"/> <enumeration value="DEVICE_SUMMARY_TREND"/> <enumeration value="CONTRACT_TERM"/> <enumeration value="EID_HISTORY"/> </restriction> </simpleType>
Modifier and Type | Method and Description |
---|---|
static ReportType |
fromValue(String v) |
String |
value() |
static ReportType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ReportType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReportType DEVICE_DETAIL
public static final ReportType TRAFFIC_DETAIL
public static final ReportType TRAFFIC_DETAIL_SCHEDULED
public static final ReportType TRAFFIC_COST_SUMMARY
public static final ReportType DEVICE_DAILY_TRAFFIC_USAGE
public static final ReportType DEVICE_DAILY_TRAFFIC_USAGE_SCHEDULED
public static final ReportType DEVICE_SUMMARY
public static final ReportType DEVICE_STATUS_ACTIVITY
public static final ReportType DEVICE_TRAFFIC_USAGE
public static final ReportType DEVICE_TRAFFIC_USAGE_SCHEDULED
public static final ReportType TRAFFIC_SUMMARY_TREND
public static final ReportType COST_SUMMARY_TREND
public static final ReportType DEVICE_SUMMARY_TREND
public static final ReportType CONTRACT_TERM
public static final ReportType EID_HISTORY
public static ReportType[] values()
for (ReportType c : ReportType.values()) System.out.println(c);
public static ReportType 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 ReportType fromValue(String v)
Copyright © 2022. All rights reserved.