Package org.codehaus.groovy.ant
Class AntProjectPropertiesDelegate
- java.lang.Object
-
- java.util.Dictionary<K,V>
-
- java.util.Hashtable
-
- org.codehaus.groovy.ant.AntProjectPropertiesDelegate
-
- All Implemented Interfaces:
Serializable,Cloneable,Map
public class AntProjectPropertiesDelegate extends Hashtable
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AntProjectPropertiesDelegate(Map t)AntProjectPropertiesDelegate(org.apache.tools.ant.Project project)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclear()Objectclone()booleancontains(Object value)booleancontainsKey(Object key)booleancontainsValue(Object value)Enumerationelements()SetentrySet()booleanequals(Object o)Objectget(Object key)inthashCode()booleanisEmpty()Enumerationkeys()SetkeySet()Objectput(Object key, Object value)voidputAll(Map t)Objectremove(Object key)intsize()StringtoString()Collectionvalues()-
Methods inherited from class java.util.Hashtable
compute, computeIfAbsent, computeIfPresent, forEach, getOrDefault, merge, putIfAbsent, rehash, remove, replace, replace, replaceAll
-
-
-
-
Constructor Detail
-
AntProjectPropertiesDelegate
public AntProjectPropertiesDelegate(org.apache.tools.ant.Project project)
-
AntProjectPropertiesDelegate
public AntProjectPropertiesDelegate(Map t)
-
-
Method Detail
-
hashCode
public int hashCode()
-
clear
public void clear()
- Specified by:
clearin interfaceMap- Overrides:
clearin classHashtable- Throws:
UnsupportedOperationException- is always thrown when this method is invoked. The Project properties are immutable.
-
isEmpty
public boolean isEmpty()
-
containsKey
public boolean containsKey(Object key)
- Specified by:
containsKeyin interfaceMap- Overrides:
containsKeyin classHashtable
-
containsValue
public boolean containsValue(Object value)
- Specified by:
containsValuein interfaceMap- Overrides:
containsValuein classHashtable
-
equals
public boolean equals(Object o)
-
values
public Collection values()
-
elements
public Enumeration elements()
-
keys
public Enumeration keys()
-
putAll
public void putAll(Map t)
-
entrySet
public Set entrySet()
-
keySet
public Set keySet()
-
remove
public Object remove(Object key)
- Specified by:
removein interfaceMap- Overrides:
removein classHashtable- Throws:
UnsupportedOperationException- is always thrown when this method is invoked. The Project properties are immutable.
-
-