| JGL - The Generic Collection Library for Java |
All Packages Class Hierarchy This Package Previous Next Index
Class com.objectspace.jgl.voyager.VDeque
java.lang.Object
|
+----com.objectspace.voyager.VObject
|
+----com.objectspace.jgl.voyager.VDeque
- public class VDeque
- extends VObject
- implements Sequence
-
VDeque()
- Construct a VDeque that is not associated with an object.
-
VDeque(Deque, String)
-
-
VDeque(Deque, String, long)
-
-
VDeque(int, Object, String)
-
-
VDeque(int, Object, String, long)
-
-
VDeque(int, String)
-
-
VDeque(int, String, long)
-
-
VDeque(String)
-
-
VDeque(String, long)
-
-
VDeque(VSubspace)
- Construct a VDeque and connect it to the specified object.
-
add(Object)
-
-
add(Object, Messenger)
-
-
at(int)
-
-
at(int, Messenger)
-
-
back()
-
-
back(Messenger)
-
-
begin()
-
-
begin(Messenger)
-
-
clear()
-
-
clear(Messenger)
-
-
clone()
-
-
clone(Messenger)
-
-
contains(Object)
-
-
contains(Object, Messenger)
-
-
copy(Deque)
-
-
copy(Deque, Messenger)
-
-
count(int, int, Object)
-
-
count(int, int, Object, Messenger)
-
-
count(Object)
-
-
count(Object, Messenger)
-
-
elements()
-
-
elements(Messenger)
-
-
end()
-
-
end(Messenger)
-
-
equals(Deque)
-
-
equals(Deque, Messenger)
-
-
finish()
-
-
finish(Messenger)
-
-
front()
-
-
front(Messenger)
-
-
indexOf(int, int, Object)
-
-
indexOf(int, int, Object, Messenger)
-
-
indexOf(Object)
-
-
indexOf(Object, Messenger)
-
-
insert(DequeIterator, BidirectionalIterator, BidirectionalIterator)
-
-
insert(DequeIterator, BidirectionalIterator, BidirectionalIterator, Messenger)
-
-
insert(DequeIterator, int, Object)
-
-
insert(DequeIterator, int, Object, Messenger)
-
-
insert(DequeIterator, Object)
-
-
insert(DequeIterator, Object, Messenger)
-
-
insert(int, BidirectionalIterator, BidirectionalIterator)
-
-
insert(int, BidirectionalIterator, BidirectionalIterator, Messenger)
-
-
insert(int, int, Object)
-
-
insert(int, int, Object, Messenger)
-
-
insert(int, Object)
-
-
insert(int, Object, Messenger)
-
-
isEmpty()
-
-
isEmpty(Messenger)
-
-
maxSize()
-
-
maxSize(Messenger)
-
-
popBack()
-
-
popBack(Messenger)
-
-
popFront()
-
-
popFront(Messenger)
-
-
pushBack(Object)
-
-
pushBack(Object, Messenger)
-
-
pushFront(Object)
-
-
pushFront(Object, Messenger)
-
-
put(int, Object)
-
-
put(int, Object, Messenger)
-
-
remove(Enumeration)
-
-
remove(Enumeration, Enumeration)
-
-
remove(Enumeration, Enumeration, Messenger)
-
-
remove(Enumeration, Messenger)
-
-
remove(int)
-
-
remove(int, int)
-
-
remove(int, int, Messenger)
-
-
remove(int, int, Object)
-
-
remove(int, int, Object, Messenger)
-
-
remove(int, Messenger)
-
-
remove(Object)
-
-
remove(Object, int)
-
-
remove(Object, int, Messenger)
-
-
remove(Object, Messenger)
-
-
replace(int, int, Object, Object)
-
-
replace(int, int, Object, Object, Messenger)
-
-
replace(Object, Object)
-
-
replace(Object, Object, Messenger)
-
-
size()
-
-
size(Messenger)
-
-
start()
-
-
start(Messenger)
-
-
swap(Deque)
-
-
swap(Deque, Messenger)
-
-
toString()
-
-
toString(Messenger)
-
VDeque
public VDeque()
- Construct a VDeque 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.
VDeque
public VDeque(VSubspace reference) throws VoyagerException
- Construct a VDeque and connect it to the specified object.
- Parameters:
- reference - A reference to the object to connect to.
- Throws: VoyagerException
- A voyager-related exception occurred.
VDeque
public VDeque(String __address,
long __timeout) throws VoyagerException
- Parameters:
- __address - The address of the program where the instantiation should occur.
- __timeout - The timeout value in milliseconds.
- Throws: VoyagerException
- A voyager-related exception occurred.
VDeque
public VDeque(String __address) throws VoyagerException
- Parameters:
- __address - The address of the program where the instantiation should occur.
- Throws: VoyagerException
- A voyager-related exception occurred.
VDeque
public VDeque(int arg1,
String __address,
long __timeout) throws VoyagerException
- Parameters:
- __address - The address of the program where the instantiation should occur.
- __timeout - The timeout value in milliseconds.
- Throws: VoyagerException
- A voyager-related exception occurred.
VDeque
public VDeque(int arg1,
String __address) throws VoyagerException
- Parameters:
- __address - The address of the program where the instantiation should occur.
- Throws: VoyagerException
- A voyager-related exception occurred.
VDeque
public VDeque(int arg1,
Object arg2,
String __address,
long __timeout) throws VoyagerException
- Parameters:
- __address - The address of the program where the instantiation should occur.
- __timeout - The timeout value in milliseconds.
- Throws: VoyagerException
- A voyager-related exception occurred.
VDeque
public VDeque(int arg1,
Object arg2,
String __address) throws VoyagerException
- Parameters:
- __address - The address of the program where the instantiation should occur.
- Throws: VoyagerException
- A voyager-related exception occurred.
VDeque
public VDeque(Deque arg1,
String __address,
long __timeout) throws VoyagerException
- Parameters:
- __address - The address of the program where the instantiation should occur.
- __timeout - The timeout value in milliseconds.
- Throws: VoyagerException
- A voyager-related exception occurred.
VDeque
public VDeque(Deque arg1,
String __address) throws VoyagerException
- Parameters:
- __address - The address of the program where the instantiation should occur.
- 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
equals
public Result equals(Deque arg1,
Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
equals
public boolean equals(Deque arg1) throws VoyagerException
- Throws: VoyagerException
- A voyager-related exception occurred.
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
copy
public Result copy(Deque arg1,
Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
copy
public void copy(Deque arg1) throws VoyagerException
- Throws: VoyagerException
- A voyager-related exception occurred.
isEmpty
public Result isEmpty(Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
isEmpty
public boolean isEmpty()
size
public Result size(Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
size
public int size()
maxSize
public Result maxSize(Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
maxSize
public int maxSize()
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)
pushBack
public Result pushBack(Object arg1,
Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
pushBack
public void pushBack(Object arg1)
pushFront
public Result pushFront(Object arg1,
Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
pushFront
public void pushFront(Object arg1)
popFront
public Result popFront(Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
popFront
public Object popFront()
popBack
public Result popBack(Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
popBack
public Object popBack()
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
elements
public Enumeration elements()
begin
public Result begin(Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
begin
public DequeIterator begin() throws VoyagerException
- Throws: VoyagerException
- A voyager-related exception occurred.
end
public Result end(Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
end
public DequeIterator end() throws VoyagerException
- Throws: VoyagerException
- A voyager-related exception occurred.
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()
front
public Result front(Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
front
public Object front()
back
public Result back(Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
back
public Object back()
at
public Result at(int arg1,
Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
at
public Object at(int arg1)
put
public Result put(int arg1,
Object arg2,
Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
put
public void put(int arg1,
Object arg2)
swap
public Result swap(Deque arg1,
Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
swap
public void swap(Deque arg1) throws VoyagerException
- Throws: VoyagerException
- A voyager-related exception occurred.
remove
public Result remove(int arg1,
Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
remove
public Object remove(int arg1) throws VoyagerException
- Throws: VoyagerException
- A voyager-related exception occurred.
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(int arg1,
int arg2,
Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
remove
public int remove(int arg1,
int arg2) throws VoyagerException
- Throws: VoyagerException
- A voyager-related exception occurred.
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)
insert
public Result insert(int arg1,
Object arg2,
Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
insert
public DequeIterator insert(int arg1,
Object arg2) throws VoyagerException
- Throws: VoyagerException
- A voyager-related exception occurred.
insert
public Result insert(DequeIterator arg1,
Object arg2,
Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
insert
public DequeIterator insert(DequeIterator arg1,
Object arg2) throws VoyagerException
- Throws: VoyagerException
- A voyager-related exception occurred.
insert
public Result insert(int arg1,
int arg2,
Object arg3,
Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
insert
public void insert(int arg1,
int arg2,
Object arg3) throws VoyagerException
- Throws: VoyagerException
- A voyager-related exception occurred.
insert
public Result insert(DequeIterator arg1,
int arg2,
Object arg3,
Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
insert
public void insert(DequeIterator arg1,
int arg2,
Object arg3) throws VoyagerException
- Throws: VoyagerException
- A voyager-related exception occurred.
insert
public Result insert(int arg1,
BidirectionalIterator arg2,
BidirectionalIterator arg3,
Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
insert
public void insert(int arg1,
BidirectionalIterator arg2,
BidirectionalIterator arg3) throws VoyagerException
- Throws: VoyagerException
- A voyager-related exception occurred.
insert
public Result insert(DequeIterator arg1,
BidirectionalIterator arg2,
BidirectionalIterator arg3,
Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
insert
public void insert(DequeIterator arg1,
BidirectionalIterator arg2,
BidirectionalIterator arg3) throws VoyagerException
- Throws: VoyagerException
- A voyager-related exception occurred.
remove
public Result remove(Object arg1,
Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
remove
public int remove(Object arg1)
remove
public Result remove(Object arg1,
int arg2,
Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
remove
public int remove(Object arg1,
int arg2)
remove
public Result remove(int arg1,
int arg2,
Object arg3,
Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
remove
public int remove(int arg1,
int arg2,
Object arg3)
replace
public Result replace(Object arg1,
Object arg2,
Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
replace
public int replace(Object arg1,
Object arg2)
replace
public Result replace(int arg1,
int arg2,
Object arg3,
Object arg4,
Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
replace
public int replace(int arg1,
int arg2,
Object arg3,
Object arg4)
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)
count
public Result count(int arg1,
int arg2,
Object arg3,
Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
count
public int count(int arg1,
int arg2,
Object arg3)
indexOf
public Result indexOf(Object arg1,
Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
indexOf
public int indexOf(Object arg1)
indexOf
public Result indexOf(int arg1,
int arg2,
Object arg3,
Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
indexOf
public int indexOf(int arg1,
int arg2,
Object arg3)
contains
public Result contains(Object arg1,
Messenger __messenger)
- Parameters:
- __messenger - The messenger that should be used to invoke the method
contains
public boolean contains(Object arg1)
All Packages Class Hierarchy This Package Previous Next Index