|
Groovy 2.2.0 | |||||||
FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectgroovy.lang.GroovyObjectSupport
groovy.util.ConfigObject
public class ConfigObject extends GroovyObjectSupport
A ConfigObject at a simple level is a Map that creates configuration entries (other ConfigObjects) when referencing them. This means that navigating to foo.bar.stuff will not return null but nested ConfigObjects which are of course empty maps The Groovy truth can be used to check for the existence of "real" entries.
Constructor Summary | |
ConfigObject(URL file)
|
|
ConfigObject()
|
Method Summary | |
---|---|
void
|
clear()
|
ConfigObject
|
clone()
Returns a shallow copy of this ConfigObject, keys and configuration entries are not cloned. |
boolean
|
containsKey(Object key)
|
boolean
|
containsValue(Object value)
|
Set
|
entrySet()
|
Map
|
flatten()
A ConfigObject is a tree structure consisting of nested maps. |
Map
|
flatten(Map target)
Flattens this ConfigObject populating the results into the target Map |
Object
|
get(Object key)
|
URL
|
getConfigFile()
|
Object
|
getProperty(String name)
Overrides the default getProperty implementation to create nested ConfigObject instances on demand for non-existent keys |
boolean
|
isEmpty()
|
Set
|
keySet()
|
Map
|
merge(ConfigObject other)
Merges the given map with this ConfigObject overriding any matching configuration entries in this ConfigObject |
Object
|
put(Object key, Object value)
|
void
|
putAll(Map m)
|
Object
|
remove(Object key)
|
void
|
setConfigFile(URL configFile)
|
int
|
size()
|
Properties
|
toProperties()
Converts this ConfigObject into a the java.util.Properties format, flattening the tree structure beforehand |
Properties
|
toProperties(String prefix)
Converts this ConfigObject ino the java.util.Properties format, flatten the tree and prefixing all entries with the given prefix |
Collection
|
values()
|
Writer
|
writeTo(Writer outArg)
Writes this config object into a String serialized representation which can later be parsed back using the parse() method |
Methods inherited from class GroovyObjectSupport | |
---|---|
getMetaClass, getProperty, invokeMethod, setMetaClass, setProperty |
Methods inherited from class Object | |
---|---|
wait, wait, wait, equals, toString, hashCode, getClass, notify, notifyAll |
Constructor Detail |
---|
public ConfigObject(URL file)
public ConfigObject()
Method Detail |
---|
public void clear()
public ConfigObject clone()
public boolean containsKey(Object key)
public boolean containsValue(Object value)
public Set entrySet()
public Map flatten()
public Map flatten(Map target)
public Object get(Object key)
public URL getConfigFile()
public Object getProperty(String name)
public boolean isEmpty()
public Set keySet()
public Map merge(ConfigObject other)
other
- The ConfigObject to merge with
public Object put(Object key, Object value)
public void putAll(Map m)
public Object remove(Object key)
public void setConfigFile(URL configFile)
public int size()
public Properties toProperties()
public Properties toProperties(String prefix)
prefix
- The prefix to append before property entries
public Collection values()
public Writer writeTo(Writer outArg)
Copyright © 2003-2013 The Codehaus. All rights reserved.