|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<ISystemImage.LocationType>
com.android.sdklib.ISystemImage.LocationType
public static enum ISystemImage.LocationType
Indicates the type of location for the system image folder in the SDK.
Enum Constant Summary | |
---|---|
IN_PLATFORM_LEGACY
The system image is located in the legacy platform's SdkConstants.FD_IMAGES
folder. |
|
IN_PLATFORM_SUBFOLDER
The system image is located in a sub-directory of the platform's SdkConstants.FD_IMAGES folder, allowing for multiple system
images within the platform. |
|
IN_SYSTEM_IMAGE
The system image is located in the new SDK's SdkConstants.FD_SYSTEM_IMAGES
folder. |
Method Summary | |
---|---|
static ISystemImage.LocationType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static ISystemImage.LocationType[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final ISystemImage.LocationType IN_PLATFORM_LEGACY
SdkConstants.FD_IMAGES
folder.
Used by both platform and add-ons.
public static final ISystemImage.LocationType IN_PLATFORM_SUBFOLDER
SdkConstants.FD_IMAGES
folder, allowing for multiple system
images within the platform.
Used by both platform and add-ons.
public static final ISystemImage.LocationType IN_SYSTEM_IMAGE
SdkConstants.FD_SYSTEM_IMAGES
folder. Supported as of Tools R14 and Repository XSD version 5.
Used only by both platform. This is not supported for add-ons yet.
Method Detail |
---|
public static ISystemImage.LocationType[] values()
for (ISystemImage.LocationType c : ISystemImage.LocationType.values()) System.out.println(c);
public static ISystemImage.LocationType 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 name
java.lang.NullPointerException
- if the argument is null
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |