This class contains guards, runtime filters and MethodType signatures used by indy.
Type Params | Return Type | Name and description |
---|---|---|
|
static Object |
invokeGroovyObjectInvoker(MissingMethodException e, Object receiver, String name, Object[] args) GroovyObject.invokeMethod path as fallback. |
|
static boolean |
isNull(Object o) Guard to check if the argument is null. |
|
static boolean |
isSameMetaClass(MetaClass mc, Object receiver) called by handle |
|
static boolean |
sameClass(Class c, Object o) Guard to check if the provided Object has the same class as the provided Class. |
|
static Object |
setBeanProperties(MetaClass mc, Object bean, Map properties) This method is called by the handle to realize the bean constructor with property map. |
|
static Object |
unwrap(GroovyRuntimeException gre) Unwraps a GroovyRuntimeException. |
|
static Object |
unwrap(Object o) Unwraps a Wrapper. |
GroovyObject.invokeMethod path as fallback. This method is called by the handle as exception handler in case the selected method causes a MissingMethodExecutionFailed, where we will just give through the exception, and a normal MissingMethodException where we call GroovyObject.invokeMethod if receiver class, the type transported by the exception and the name for the method stored in the exception and our current method name are equal. Should those conditions not apply we just rethrow the exception.
Guard to check if the argument is null. This method is called by the handle to check if the provided argument is null.
Guard to check if the provided Object has the same class as the provided Class. This method will return false if the Object is null.
This method is called by the handle to realize the bean constructor with property map.
Unwraps a GroovyRuntimeException. This method is called by the handle to unwrap internal exceptions of the runtime.