public static enum DeviceManager.DeviceFilter extends java.lang.Enum<DeviceManager.DeviceFilter>
Enum Constant and Description |
---|
DEFAULT
getDevices() flag to list default devices from the bundled devices.xml definitions.
|
SYSTEM_IMAGES
getDevices() flag to list devices from system-images/platform-N/tag/abi/devices.xml
|
USER
getDevices() flag to list user devices saved in the .android home folder.
|
VENDOR
getDevices() flag to list vendor devices -- the bundled nexus.xml devices
as well as all those coming from extra packages.
|
Modifier and Type | Method and Description |
---|---|
static DeviceManager.DeviceFilter |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DeviceManager.DeviceFilter[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DeviceManager.DeviceFilter DEFAULT
public static final DeviceManager.DeviceFilter USER
public static final DeviceManager.DeviceFilter VENDOR
public static final DeviceManager.DeviceFilter SYSTEM_IMAGES
public static DeviceManager.DeviceFilter[] values()
for (DeviceManager.DeviceFilter c : DeviceManager.DeviceFilter.values()) System.out.println(c);
public static DeviceManager.DeviceFilter 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