hudson.plugins.android_emulator.sdk
Enum Tool
java.lang.Object
java.lang.Enum<Tool>
hudson.plugins.android_emulator.sdk.Tool
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<Tool>
public enum Tool
- extends java.lang.Enum<Tool>
|
Method Summary |
static java.lang.String[] |
getAllExecutableVariants()
|
java.lang.String |
getExecutable(boolean isUnix)
|
boolean |
isPlatformTool()
|
static Tool |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static Tool[] |
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 |
AAPT
public static final Tool AAPT
ADB
public static final Tool ADB
ANDROID
public static final Tool ANDROID
EMULATOR
public static final Tool EMULATOR
MKSDCARD
public static final Tool MKSDCARD
values
public static Tool[] 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 (Tool c : Tool.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static Tool 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
isPlatformTool
public boolean isPlatformTool()
getExecutable
public java.lang.String getExecutable(boolean isUnix)
getAllExecutableVariants
public static java.lang.String[] getAllExecutableVariants()
Copyright © 2011. All Rights Reserved.