public static enum ISystemImage.LocationType extends java.lang.Enum<ISystemImage.LocationType>
Enum Constant and Description |
---|
IN_IMAGES_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_LEGACY_FOLDER
The system image is located in the legacy platform's
SdkConstants.FD_IMAGES
folder. |
IN_SYSTEM_IMAGE
The system image is located in the new SDK's
SdkConstants.FD_SYSTEM_IMAGES
folder. |
Modifier and Type | Method and Description |
---|---|
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.
|
public static final ISystemImage.LocationType IN_LEGACY_FOLDER
SdkConstants.FD_IMAGES
folder.
Used by both platform and add-ons.
public static final ISystemImage.LocationType IN_IMAGES_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 up to Tools R22.6. Supported for add-ons as of Tools R22.8.
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 namejava.lang.NullPointerException
- if the argument is null