public class JsonDelegate extends GroovyObjectSupport
Constructor and Description |
---|
JsonDelegate() |
Modifier and Type | Method and Description |
---|---|
static Map<String,Object> |
cloneDelegateAndGetContent(Closure<?> c)
Factory method for creating
JsonDelegate s from closures. |
static Map<String,Object> |
curryDelegateAndGetContent(Closure<?> c,
Object o)
Factory method for creating
JsonDelegate s from closures currying an object
argument. |
Map<String,Object> |
getContent() |
Object |
invokeMethod(String name,
Object args)
Intercepts calls for setting a key and value for a JSON object
|
getMetaClass, getProperty, setMetaClass, setProperty
public Object invokeMethod(String name, Object args)
invokeMethod
in interface GroovyObject
invokeMethod
in class GroovyObjectSupport
name
- the key nameargs
- the value associated with the keypublic static Map<String,Object> cloneDelegateAndGetContent(Closure<?> c)
JsonDelegate
s from closures.c
- closure representing JSON objectsJsonDelegate
public static Map<String,Object> curryDelegateAndGetContent(Closure<?> c, Object o)
JsonDelegate
s from closures currying an object
argument.c
- closure representing JSON objectso
- an object curried to the closureJsonDelegate