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 void
clear()
Object
clone()
boolean
contains(Object value)
boolean
containsKey(Object key)
boolean
containsValue(Object value)
Enumeration
elements()
Set
entrySet()
boolean
equals(Object o)
Object
get(Object key)
int
hashCode()
boolean
isEmpty()
Enumeration
keys()
Set
keySet()
Object
put(Object key, Object value)
void
putAll(Map t)
Object
remove(Object key)
int
size()
String
toString()
Collection
values()
-
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:
clear
in interfaceMap
- Overrides:
clear
in 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:
containsKey
in interfaceMap
- Overrides:
containsKey
in classHashtable
-
containsValue
public boolean containsValue(Object value)
- Specified by:
containsValue
in interfaceMap
- Overrides:
containsValue
in 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:
remove
in interfaceMap
- Overrides:
remove
in classHashtable
- Throws:
UnsupportedOperationException
- is always thrown when this method is invoked. The Project properties are immutable.
-
-