public enum NdkCxxRuntime extends Enum<NdkCxxRuntime>
Enum Constant and Description |
---|
GABIXX |
GNUSTL |
LIBCXX |
STLPORT |
SYSTEM |
Modifier and Type | Field and Description |
---|---|
String |
name |
String |
sharedName |
String |
staticName |
Modifier and Type | Method and Description |
---|---|
String |
getSoname() |
static NdkCxxRuntime |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NdkCxxRuntime[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NdkCxxRuntime SYSTEM
public static final NdkCxxRuntime GABIXX
public static final NdkCxxRuntime STLPORT
public static final NdkCxxRuntime GNUSTL
public static final NdkCxxRuntime LIBCXX
public final String name
public final String sharedName
public final String staticName
public static NdkCxxRuntime[] values()
for (NdkCxxRuntime c : NdkCxxRuntime.values()) System.out.println(c);
public static NdkCxxRuntime valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic String getSoname()