com.android.sdklib
Enum BuildToolInfo.PathId

java.lang.Object
  extended by java.lang.Enum<BuildToolInfo.PathId>
      extended by com.android.sdklib.BuildToolInfo.PathId
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<BuildToolInfo.PathId>
Enclosing class:
BuildToolInfo

public static enum BuildToolInfo.PathId
extends java.lang.Enum<BuildToolInfo.PathId>


Enum Constant Summary
AAPT
          OS Path to the target's version of the aapt tool.
AIDL
          OS Path to the target's version of the aidl tool.
ANDROID_RS
          OS Path to the Renderscript include folder.
ANDROID_RS_CLANG
          OS Path to the Renderscript(clang) include folder.
BCC_COMPAT
          OS Path to the bcc_compat tool.
DEXDUMP
           
DX
          OS Path to the target's version of the dx tool.
DX_JAR
          OS Path to the target's version of the dx.jar file.
JACK
           
JILL
           
LD_ARM
          OS Path to the ARM linker.
LD_MIPS
          OS Path to the MIPS linker.
LD_X86
          OS Path to the X86 linker.
LLVM_RS_CC
          OS Path to the llvm-rs-cc binary for Renderscript.
SPLIT_SELECT
           
ZIP_ALIGN
           
 
Method Summary
static BuildToolInfo.PathId valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static BuildToolInfo.PathId[] 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

AAPT

public static final BuildToolInfo.PathId AAPT
OS Path to the target's version of the aapt tool.


AIDL

public static final BuildToolInfo.PathId AIDL
OS Path to the target's version of the aidl tool.


DX

public static final BuildToolInfo.PathId DX
OS Path to the target's version of the dx tool.


DX_JAR

public static final BuildToolInfo.PathId DX_JAR
OS Path to the target's version of the dx.jar file.


LLVM_RS_CC

public static final BuildToolInfo.PathId LLVM_RS_CC
OS Path to the llvm-rs-cc binary for Renderscript.


ANDROID_RS

public static final BuildToolInfo.PathId ANDROID_RS
OS Path to the Renderscript include folder.


ANDROID_RS_CLANG

public static final BuildToolInfo.PathId ANDROID_RS_CLANG
OS Path to the Renderscript(clang) include folder.


DEXDUMP

public static final BuildToolInfo.PathId DEXDUMP

BCC_COMPAT

public static final BuildToolInfo.PathId BCC_COMPAT
OS Path to the bcc_compat tool.


LD_ARM

public static final BuildToolInfo.PathId LD_ARM
OS Path to the ARM linker.


LD_X86

public static final BuildToolInfo.PathId LD_X86
OS Path to the X86 linker.


LD_MIPS

public static final BuildToolInfo.PathId LD_MIPS
OS Path to the MIPS linker.


ZIP_ALIGN

public static final BuildToolInfo.PathId ZIP_ALIGN

JACK

public static final BuildToolInfo.PathId JACK

JILL

public static final BuildToolInfo.PathId JILL

SPLIT_SELECT

public static final BuildToolInfo.PathId SPLIT_SELECT
Method Detail

values

public static BuildToolInfo.PathId[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (BuildToolInfo.PathId c : BuildToolInfo.PathId.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static BuildToolInfo.PathId valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null