Uses of Interface
org.apache.commons.jexl3.introspection.JexlMethod
-
Packages that use JexlMethod Package Description org.apache.commons.jexl3 Provides a framework for evaluating JEXL expressions.org.apache.commons.jexl3.internal Provides utilities for introspection services.org.apache.commons.jexl3.internal.introspection Provides low-level introspective services.org.apache.commons.jexl3.introspection Provides high-level introspective services. -
-
Uses of JexlMethod in org.apache.commons.jexl3
Methods in org.apache.commons.jexl3 that return JexlMethod Modifier and Type Method Description JexlMethod
JexlArithmetic.Uberspect. getOperator(JexlOperator operator, java.lang.Object... arg)
Gets the most specific method for an operator. -
Uses of JexlMethod in org.apache.commons.jexl3.internal
Fields in org.apache.commons.jexl3.internal declared as JexlMethod Modifier and Type Field Description protected JexlMethod
InterpreterBase.Funcall. me
The JexlMethod to delegate the call to.(package private) JexlMethod
InterpreterBase.CallDispatcher. vm
The method to call.Methods in org.apache.commons.jexl3.internal with parameters of type JexlMethod Modifier and Type Method Description private boolean
Operators. isArithmetic(JexlMethod vm)
Checks whether a method is a JexlArithmetic method.private boolean
Operators. returnsBoolean(JexlMethod vm)
Checks whether a method returns a boolean or a Boolean.private boolean
Operators. returnsInteger(JexlMethod vm)
Checks whether a method returns an int or an Integer.Constructors in org.apache.commons.jexl3.internal with parameters of type JexlMethod Constructor Description ArithmeticFuncall(JexlMethod jme, boolean flag)
Constructs a new instance.ContextFuncall(JexlMethod jme, boolean flag)
Constructs a new instance.ContextualCtor(JexlMethod jme, boolean flag)
Constructs a new instance.Funcall(JexlMethod jme, boolean flag)
Constructs a new instance. -
Uses of JexlMethod in org.apache.commons.jexl3.internal.introspection
Classes in org.apache.commons.jexl3.internal.introspection that implement JexlMethod Modifier and Type Class Description static class
AbstractExecutor.Method
Abstract class that is used to execute an arbitrary method.class
ConstructorMethod
A JexlMethod that wraps a constructor.class
MethodExecutor
Specialized executor to invoke a method on an object.Methods in org.apache.commons.jexl3.internal.introspection that return JexlMethod Modifier and Type Method Description JexlMethod
SandboxUberspect. getConstructor(java.lang.Object ctorHandle, java.lang.Object... args)
JexlMethod
Uberspect. getConstructor(java.lang.Object ctorHandle, java.lang.Object... args)
JexlMethod
SandboxUberspect. getMethod(java.lang.Object obj, java.lang.String method, java.lang.Object... args)
JexlMethod
Uberspect. getMethod(java.lang.Object obj, java.lang.String method, java.lang.Object... args)
JexlMethod
Uberspect.ArithmeticUberspect. getOperator(JexlOperator operator, java.lang.Object... args)
-
Uses of JexlMethod in org.apache.commons.jexl3.introspection
Methods in org.apache.commons.jexl3.introspection that return JexlMethod Modifier and Type Method Description JexlMethod
JexlUberspect. getConstructor(java.lang.Object ctorHandle, java.lang.Object... args)
Returns a class constructor.JexlMethod
JexlUberspect. getMethod(java.lang.Object obj, java.lang.String method, java.lang.Object... args)
Returns a JexlMethod.
-