public static enum SharedLibraryInterfaceParams.Type extends Enum<SharedLibraryInterfaceParams.Type>
Enum Constant and Description |
---|
DEFINED_ONLY
Strip undefined symbols from shared library interfaces, and use them for linking
|
DISABLED
Do not use shared library interfaces.
|
ENABLED
Use shared library interfaces for linking.
|
Modifier and Type | Method and Description |
---|---|
static SharedLibraryInterfaceParams.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SharedLibraryInterfaceParams.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SharedLibraryInterfaceParams.Type DISABLED
public static final SharedLibraryInterfaceParams.Type ENABLED
public static final SharedLibraryInterfaceParams.Type DEFINED_ONLY
public static SharedLibraryInterfaceParams.Type[] values()
for (SharedLibraryInterfaceParams.Type c : SharedLibraryInterfaceParams.Type.values()) System.out.println(c);
public static SharedLibraryInterfaceParams.Type 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 null