Enum Constant and Description |
---|
ARM64_V8A |
ARMEABI |
ARMEABI_V7A |
MIPS |
MIPS64 |
X86 |
X86_64 |
Modifier and Type | Method and Description |
---|---|
int |
getAddressSizeInBytes()
Returns the address size in bytes
|
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.
|
boolean |
supportsMultipleCpuCores()
Returns true if we support SMP on this CPU architecture.
|
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.
|
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
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 namejava.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()
public int getAddressSizeInBytes()
@Nullable public java.lang.String getCpuModel()
@NonNull public java.lang.String getDisplayName()
public boolean supportsMultipleCpuCores()