| JGL - The Generic Collection Library for Java |
All Packages Class Hierarchy This Package Previous Next Index
Class com.objectspace.jgl.voyager.VMap
java.lang.Object
|
+----com.objectspace.voyager.VObject
|
+----com.objectspace.jgl.voyager.VDictionary
|
+----com.objectspace.jgl.voyager.VMap
- public class VMap
- extends VDictionary
- implements Container
- super class of:
- VHashMap, VOrderedMap
-
VMap()
- Construct a VMap that is not associated with an object.
-
VMap(VSubspace)
- Construct a VMap and connect it to the specified object.
-
add(Object)
-
-
add(Object, Messenger)
-
-
clear()
-
-
clear(Messenger)
-
-
clone()
-
-
clone(Messenger)
-
-
count(Object)
-
-
count(Object, Messenger)
-
-
countValues(Object)
-
-
countValues(Object, Messenger)
-
-
elements()
-
-
elements(Messenger)
-
-
finish()
-
-
finish(Messenger)
-
-
isEmpty()
-
-
isEmpty(Messenger)
-
-
keys(Object)
-
-
keys(Object, Messenger)
-
-
maxSize()
-
-
maxSize(Messenger)
-
-
remove(Enumeration)
-
-
remove(Enumeration, Enumeration)
-
-
remove(Enumeration, Enumeration, Messenger)
-
-
remove(Enumeration, Messenger)
-
-
size()
-
-
size(Messenger)
-
-
start()
-
-
start(Messenger)
-
-
toString()
-
-
toString(Messenger)
-
-
values(Object)
-
-
values(Object, Messenger)
-
VMap
public VMap()
- Construct a VMap that is not associated with an object.
This function is used internally by Voyager and should not
be invoked by user code. Any attempt to send a message to a
reference created using this default constructor will cause a
NullPointerException to be thrown.
VMap
public VMap(VSubspace reference) throws VoyagerException
- Construct a VMap and connect it to the specified object.
- Parameters:
- reference - A reference to the object to connect to.
- Throws: VoyagerException
- A voyager-related exception occurred.
count
public Result count(Object arg1,
Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
count
public int count(Object arg1) throws VoyagerException
- Throws: VoyagerException
- A voyager-related exception occurred.
countValues
public Result countValues(Object arg1,
Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
countValues
public int countValues(Object arg1) throws VoyagerException
- Throws: VoyagerException
- A voyager-related exception occurred.
keys
public Result keys(Object arg1,
Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
keys
public Enumeration keys(Object arg1) throws VoyagerException
- Throws: VoyagerException
- A voyager-related exception occurred.
values
public Result values(Object arg1,
Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
values
public Enumeration values(Object arg1) throws VoyagerException
- Throws: VoyagerException
- A voyager-related exception occurred.
clone
public Result clone(Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
clone
public Object clone()
- Overrides:
- clone in class Object
toString
public Result toString(Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
toString
public String toString()
- Overrides:
- toString in class Object
size
public Result size(Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
- Overrides:
- size in class VDictionary
size
public int size()
- Overrides:
- size in class VDictionary
maxSize
public Result maxSize(Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
maxSize
public int maxSize()
isEmpty
public Result isEmpty(Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
- Overrides:
- isEmpty in class VDictionary
isEmpty
public boolean isEmpty()
- Overrides:
- isEmpty in class VDictionary
clear
public Result clear(Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
clear
public void clear()
elements
public Result elements(Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
- Overrides:
- elements in class VDictionary
elements
public Enumeration elements()
- Overrides:
- elements in class VDictionary
start
public Result start(Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
start
public ForwardIterator start()
finish
public Result finish(Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
finish
public ForwardIterator finish()
add
public Result add(Object arg1,
Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
add
public Object add(Object arg1)
remove
public Result remove(Enumeration arg1,
Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
remove
public Object remove(Enumeration arg1)
remove
public Result remove(Enumeration arg1,
Enumeration arg2,
Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
remove
public int remove(Enumeration arg1,
Enumeration arg2)
All Packages Class Hierarchy This Package Previous Next Index