public static enum AndroidEntryPointLocator.LocatorFlags extends java.lang.Enum<AndroidEntryPointLocator.LocatorFlags>
| Enum Constant and Description |
|---|
CB_HEURISTIC
Additionally select all functions that override a function of the Android stubs.
|
EP_HEURISTIC
Additionally select all functions that override a function of an AndroidComponent.
|
INCLUDE_CALLBACKS
If this flag is not set only functions of actual Android-Components are returned.
|
WITH_ANDROID
This will pull in components defined in the Android-API.
|
WITH_CTOR
Add the constructor of detected components to the entrypoints.
|
WITH_SUPER
If a class does not override a method of a component, add a call to the method in the
super-class to the entriepoints.
|
| Modifier and Type | Method and Description |
|---|---|
static AndroidEntryPointLocator.LocatorFlags |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AndroidEntryPointLocator.LocatorFlags[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AndroidEntryPointLocator.LocatorFlags INCLUDE_CALLBACKS
If it's enabled additional call-backs are handled as an entrypoint.
public static final AndroidEntryPointLocator.LocatorFlags EP_HEURISTIC
public static final AndroidEntryPointLocator.LocatorFlags CB_HEURISTIC
public static final AndroidEntryPointLocator.LocatorFlags WITH_CTOR
public static final AndroidEntryPointLocator.LocatorFlags WITH_SUPER
public static final AndroidEntryPointLocator.LocatorFlags WITH_ANDROID
public static AndroidEntryPointLocator.LocatorFlags[] values()
for (AndroidEntryPointLocator.LocatorFlags c : AndroidEntryPointLocator.LocatorFlags.values()) System.out.println(c);
public static AndroidEntryPointLocator.LocatorFlags 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