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
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 Details
-
AntProjectPropertiesDelegate
public AntProjectPropertiesDelegate(org.apache.tools.ant.Project project) -
AntProjectPropertiesDelegate
-
-
Method Details
-
hashCode
public int hashCode() -
size
public int size() -
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() -
clone
-
contains
-
containsKey
- Specified by:
containsKey
in interfaceMap
- Overrides:
containsKey
in classHashtable
-
containsValue
- Specified by:
containsValue
in interfaceMap
- Overrides:
containsValue
in classHashtable
-
equals
-
toString
-
values
-
elements
-
keys
-
putAll
-
entrySet
-
keySet
-
get
-
remove
- Specified by:
remove
in interfaceMap
- Overrides:
remove
in classHashtable
- Throws:
UnsupportedOperationException
- is always thrown when this method is invoked. The Project properties are immutable.
-
put
-