public static enum MethodBridge.BridgeType extends java.lang.Enum<MethodBridge.BridgeType>
MethodBridge.BridgeParams.bridgeType
to identify the
system used to invoke a hookEnum Constant and Description |
---|
CYDIA
The hook was invoked by Cydia Substrate
|
XPOSED
The hook was invoked by Xposed Bridge
|
Modifier and Type | Method and Description |
---|---|
static MethodBridge.BridgeType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MethodBridge.BridgeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MethodBridge.BridgeType XPOSED
public static final MethodBridge.BridgeType CYDIA
public static MethodBridge.BridgeType[] values()
for (MethodBridge.BridgeType c : MethodBridge.BridgeType.values()) System.out.println(c);
public static MethodBridge.BridgeType 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