Package org.codehaus.groovy.ant
Class AntProjectPropertiesDelegate
- java.lang.Object
-
- java.util.Dictionary<K,V>
-
- java.util.Hashtable<String,Object>
-
- org.codehaus.groovy.ant.AntProjectPropertiesDelegate
-
- All Implemented Interfaces:
Serializable
,Cloneable
,Map<String,Object>
public class AntProjectPropertiesDelegate extends Hashtable<String,Object>
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AntProjectPropertiesDelegate(Map<? extends String,?> 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<Object>
elements()
Set<Map.Entry<String,Object>>
entrySet()
boolean
equals(Object o)
Object
get(Object key)
int
hashCode()
boolean
isEmpty()
Enumeration<String>
keys()
Set<String>
keySet()
Object
put(String key, Object value)
void
putAll(Map<? extends String,?> t)
Object
remove(Object key)
int
size()
String
toString()
Collection<Object>
values()
-
Methods inherited from class java.util.Hashtable
compute, computeIfAbsent, computeIfPresent, forEach, getOrDefault, merge, putIfAbsent, rehash, remove, replace, replace, replaceAll
-
-
-
-
Method Detail
-
hashCode
public int hashCode()
-
size
public int size()
-
clear
public void clear()
-
isEmpty
public boolean isEmpty()
-
contains
public boolean contains(Object value)
-
containsKey
public boolean containsKey(Object key)
- Specified by:
containsKey
in interfaceMap<String,Object>
- Overrides:
containsKey
in classHashtable<String,Object>
-
containsValue
public boolean containsValue(Object value)
- Specified by:
containsValue
in interfaceMap<String,Object>
- Overrides:
containsValue
in classHashtable<String,Object>
-
equals
public boolean equals(Object o)
-
values
public Collection<Object> values()
-
elements
public Enumeration<Object> elements()
-
-