| Package | Description |
|---|---|
| org.mule.extensions.java.internal.function | |
| org.mule.extensions.java.internal.operation | |
| org.mule.extensions.java.internal.util |
| Modifier and Type | Method and Description |
|---|---|
Object |
JavaModuleFunctions.invoke(String clazz,
String methodName,
Object instance,
Map<String,org.mule.runtime.api.metadata.TypedValue<Object>> args)
Function that allows the user to invoke methods with the provided
args on the given instance. |
boolean |
JavaModuleFunctions.isInstanceOf(Object instance,
String clazz)
Function that allows the user to check that a given
instance is an instanceof the specified class. |
| Modifier and Type | Method and Description |
|---|---|
org.mule.runtime.extension.api.runtime.operation.Result<Object,Void> |
JavaInvokeOperations.invoke(MethodIdentifier identifier,
Object instance,
Map<String,org.mule.runtime.api.metadata.TypedValue<Object>> args,
String outputMimeType,
String outputEncoding,
String defaultEncoding)
Operation that allows the user to invoke methods with the provided
args on the given instance. |
org.mule.runtime.extension.api.runtime.operation.Result<Object,Void> |
JavaInvokeOperations.invokeStatic(StaticMethodIdentifier identifier,
Map<String,org.mule.runtime.api.metadata.TypedValue<Object>> args,
String outputMimeType,
String outputEncoding,
String defaultEncoding)
Operation that allows the user to invoke static methods with the provided arguments.
|
Object |
JavaNewInstanceOperation.newInstance(ConstructorIdentifier identifier,
Map<String,org.mule.runtime.api.metadata.TypedValue<Object>> args)
Operation that allows the user to create a new instance of the given
class
The identifier of the Constructor to be used includes the class and constructor names,
being the constructor a full description of its signature including the types of each parameter. |
void |
JavaModuleValidateOperation.validateType(String clazz,
Object instance,
boolean acceptSubtypes)
Operation that allows the user to validate that a given
instance is an instanceof the specified class. |
| Modifier and Type | Method and Description |
|---|---|
static void |
JavaModuleUtils.validateType(String clazz,
Object instance,
boolean acceptSubtypes,
JavaModuleLoadingCache cache) |
Copyright © 2018 MuleSoft, Inc.. All rights reserved.