public static enum ReportSpec.Type extends java.lang.Enum<ReportSpec.Type>
Modifier and Type | Method and Description |
---|---|
java.lang.String |
asString() |
static ReportSpec.Type |
typeFromString(java.lang.String typeName) |
static ReportSpec.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ReportSpec.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReportSpec.Type TEXT
public static final ReportSpec.Type GRAPH
public static ReportSpec.Type[] values()
for (ReportSpec.Type c : ReportSpec.Type.values()) System.out.println(c);
public static ReportSpec.Type valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String asString()
public static ReportSpec.Type typeFromString(java.lang.String typeName)