|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<Abi>
com.android.sdklib.devices.Abi
public enum Abi
ABI values that can appear in a device's xml <abi> field and in a system-image abi.
The CPU arch and model values are used to configure an AVD using a given ABI.
Enum Constant Summary | |
---|---|
ARM64_V8A
|
|
ARMEABI
|
|
ARMEABI_V7A
|
|
MIPS
|
|
MIPS64
|
|
X86
|
|
X86_64
|
Method Summary | |
---|---|
java.lang.String |
getCpuArch()
Returns the CPU architecture, as used in the AVD configuration files |
java.lang.String |
getCpuModel()
Returns the optional CPU model, used in the AVD configuration files. |
java.lang.String |
getDisplayName()
Return the ABI "family" name for display. |
static Abi |
getEnum(java.lang.String abi)
Returns the ABI definition matching the given ABI code name. |
java.lang.String |
toString()
Returns the ABI code name, as used in the system-images and device definitions |
static Abi |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static Abi[] |
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, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final Abi ARMEABI
public static final Abi ARMEABI_V7A
public static final Abi ARM64_V8A
public static final Abi X86
public static final Abi X86_64
public static final Abi MIPS
public static final Abi MIPS64
Method Detail |
---|
public static Abi[] values()
for (Abi c : Abi.values()) System.out.println(c);
public static Abi 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@Nullable public static Abi getEnum(@NonNull java.lang.String abi)
abi
- The ABI code name, used in the system-images and device definitions.
Abi
description or null.@NonNull public java.lang.String toString()
toString
in class java.lang.Enum<Abi>
@NonNull public java.lang.String getCpuArch()
@Nullable public java.lang.String getCpuModel()
@NonNull public java.lang.String getDisplayName()
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |