Package org.codehaus.groovy.runtime
Class ConvertedMap
java.lang.Object
org.codehaus.groovy.runtime.ConversionHandler
org.codehaus.groovy.runtime.ConvertedMap
- All Implemented Interfaces:
Serializable
,InvocationHandler
This class is a general adapter to adapt a map of closures to
any Java interface.
- See Also:
-
Constructor Summary
ModifierConstructorDescriptionprotected
ConvertedMap
(Map closures) to create a ConvertedMap object. -
Method Summary
Modifier and TypeMethodDescriptionprotected boolean
checkMethod
(Method method) invokeCustom
(Object proxy, Method method, Object[] args) This method is called for all Methods not defined on Object.static boolean
isCoreObjectMethod
(Method method) Checks whether a method is a core method from java.lang.Object.toString()
Returns a String version of the delegate.Methods inherited from class org.codehaus.groovy.runtime.ConversionHandler
equals, getDelegate, hashCode, invoke, isDefaultMethod
-
Constructor Details
-
ConvertedMap
to create a ConvertedMap object.- Parameters:
closures
- the map of closures
-
-
Method Details
-
invokeCustom
Description copied from class:ConversionHandler
This method is called for all Methods not defined on Object. The delegate should be called here.- Specified by:
invokeCustom
in classConversionHandler
- Parameters:
proxy
- the proxymethod
- the methodargs
- the arguments- Returns:
- the result of the invocation of the delegate
- Throws:
Throwable
- any exception causes by the delegate- See Also:
-
toString
Description copied from class:ConversionHandler
Returns a String version of the delegate.- Overrides:
toString
in classConversionHandler
- See Also:
-
checkMethod
- Overrides:
checkMethod
in classConversionHandler
-
isCoreObjectMethod
Checks whether a method is a core method from java.lang.Object. Such methods often receive special treatment because they are deemed fundamental enough to not be tampered with. call toString() is an exception to allow overriding toString() by a closure specified in the map- Parameters:
method
- the method to check- Returns:
- true if the method is deemed to be a core method
-