public enum ReportingGroup extends java.lang.Enum<ReportingGroup>
| Enum Constant and Description |
|---|
CUSTOM |
GRIDVIEW |
LISTVIEW |
RECYCLERVIEW |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
toString() |
static ReportingGroup |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ReportingGroup[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReportingGroup LISTVIEW
public static final ReportingGroup GRIDVIEW
public static final ReportingGroup RECYCLERVIEW
public static final ReportingGroup CUSTOM
public static ReportingGroup[] values()
for (ReportingGroup c : ReportingGroup.values()) System.out.println(c);
public static ReportingGroup 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 toString()
toString in class java.lang.Enum<ReportingGroup>