| Enum Constant and Description |
|---|
ASSEMBLY
The Assembly view (type:
AssemblyView). |
CLASS_HIERARCHY
The class hierarchy view (type:
View) |
CONSOLE
The console (type:
TextView) |
JAVA
The Decompiled Java view (type:
JavaView). |
MANIFEST
The Android Manifest view (type:
XmlView). |
NOTES
The global comments view (type:
TextView). |
| Modifier and Type | Method and Description |
|---|---|
static View.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static View.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final View.Type ASSEMBLY
The Assembly view (type: AssemblyView).
public static final View.Type JAVA
The Decompiled Java view (type: JavaView).
public static final View.Type MANIFEST
The Android Manifest view (type: XmlView).
public static final View.Type NOTES
The global comments view (type: TextView).
public static final View.Type CLASS_HIERARCHY
The class hierarchy view (type: View)
public static View.Type[] values()
for (View.Type c : View.Type.values()) System.out.println(c);
public static View.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 null