Package org.codehaus.groovy.runtime
Class ConvertedMap
- java.lang.Object
- 
- org.codehaus.groovy.runtime.ConversionHandler
- 
- org.codehaus.groovy.runtime.ConvertedMap
 
 
- 
- All Implemented Interfaces:
- java.io.Serializable,- java.lang.reflect.InvocationHandler
 
 public class ConvertedMap extends ConversionHandler This class is a general adapter to adapt a map of closures to any Java interface.- See Also:
- Serialized Form
 
- 
- 
Constructor SummaryConstructors Modifier Constructor Description protectedConvertedMap(java.util.Map closures)to create a ConvertedMap object.
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description protected booleancheckMethod(java.lang.reflect.Method method)java.lang.ObjectinvokeCustom(java.lang.Object proxy, java.lang.reflect.Method method, java.lang.Object[] args)This method is called for all Methods not defined on Object.static booleanisCoreObjectMethod(java.lang.reflect.Method method)Checks whether a method is a core method from java.lang.Object.java.lang.StringtoString()Returns a String version of the delegate.- 
Methods inherited from class org.codehaus.groovy.runtime.ConversionHandlerequals, getDelegate, hashCode, invoke, isDefaultMethod
 
- 
 
- 
- 
- 
Method Detail- 
invokeCustompublic java.lang.Object invokeCustom(java.lang.Object proxy, java.lang.reflect.Method method, java.lang.Object[] args) throws java.lang.ThrowableDescription copied from class:ConversionHandlerThis method is called for all Methods not defined on Object. The delegate should be called here.- Specified by:
- invokeCustomin class- ConversionHandler
- Parameters:
- proxy- the proxy
- method- the method
- args- the arguments
- Returns:
- the result of the invocation of the delegate
- Throws:
- java.lang.Throwable- any exception causes by the delegate
- See Also:
- ConversionHandler.invoke(Object, Method, Object[]),- InvocationHandler.invoke(java.lang.Object, java.lang.reflect.Method, java.lang.Object[])
 
 - 
toStringpublic java.lang.String toString() Description copied from class:ConversionHandlerReturns a String version of the delegate.- Overrides:
- toStringin class- ConversionHandler
- See Also:
- Object.toString()
 
 - 
checkMethodprotected boolean checkMethod(java.lang.reflect.Method method) - Overrides:
- checkMethodin class- ConversionHandler
 
 - 
isCoreObjectMethodpublic static boolean isCoreObjectMethod(java.lang.reflect.Method method) 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
 
 
- 
 
-