Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep
A C E F G I L R S T W

A

add(Object) - Method in class com.virtuosotechnologies.lib.collections.RotatingArrayList
Appends the specified element to the end of this list.
add(int, Object) - Method in class com.virtuosotechnologies.lib.collections.RotatingArrayList
Inserts the specified element at the specified position in this list.
addAll(Collection) - Method in class com.virtuosotechnologies.lib.collections.RotatingArrayList
Appends all of the elements in the specified Collection to the end of this list, in the order that they are returned by the specified Collection's Iterator.
addAll(int, Collection) - Method in class com.virtuosotechnologies.lib.collections.RotatingArrayList
Inserts all of the elements in the specified Collection into this list, starting at the specified position.
addAllFirst(Collection) - Method in class com.virtuosotechnologies.lib.collections.RotatingArrayList
Appends all of the elements in the specified Collection to the beginning of this list, in the order that they are returned by the specified Collection's Iterator.
addAllLast(Collection) - Method in class com.virtuosotechnologies.lib.collections.RotatingArrayList
Appends all of the elements in the specified Collection to the end of this list, in the order that they are returned by the specified Collection's Iterator.
addFirst(Object) - Method in class com.virtuosotechnologies.lib.collections.RotatingArrayList
Appends the specified element to the front of this list.
addLast(Object) - Method in class com.virtuosotechnologies.lib.collections.RotatingArrayList
Appends the specified element to the back of this list.

C

clear() - Method in class com.virtuosotechnologies.lib.collections.RotatingArrayList
Removes all of the elements from this list.
clone() - Method in class com.virtuosotechnologies.lib.collections.RotatingArrayList
Returns a shallow copy of this RotatingArrayList instance.
com.virtuosotechnologies.lib.collections - package com.virtuosotechnologies.lib.collections
 
contains(Object) - Method in class com.virtuosotechnologies.lib.collections.RotatingArrayList
Returns true if this list contains the specified element.
copyIntoArray_(Object[]) - Method in class com.virtuosotechnologies.lib.collections.RotatingArrayList
Copies list into a given array

E

elementData_ - Variable in class com.virtuosotechnologies.lib.collections.RotatingArrayList
The array buffer into which the elements of the ArrayList are stored.
ensureCapacity(int) - Method in class com.virtuosotechnologies.lib.collections.RotatingArrayList
Increases the capacity of this ArraRotatingArrayList instance, if necessary, to ensure that it can hold at least the number of elements specified by the minimum capacity argument.

F

first_ - Variable in class com.virtuosotechnologies.lib.collections.RotatingArrayList
Array index of the first element.

G

get(int) - Method in class com.virtuosotechnologies.lib.collections.RotatingArrayList
Returns the element at the specified position in this list.
getFirst() - Method in class com.virtuosotechnologies.lib.collections.RotatingArrayList
Returns the element at the front of the list.
getLast() - Method in class com.virtuosotechnologies.lib.collections.RotatingArrayList
Returns the element at the back of the list.

I

indexOf(Object) - Method in class com.virtuosotechnologies.lib.collections.RotatingArrayList
Searches for the first occurence of the given argument, testing for equality using the equals method.
isEmpty() - Method in class com.virtuosotechnologies.lib.collections.RotatingArrayList
Tests if this list has no elements.

L

lastIndexOf(Object) - Method in class com.virtuosotechnologies.lib.collections.RotatingArrayList
Returns the index of the last occurrence of the specified object in this list.
last_ - Variable in class com.virtuosotechnologies.lib.collections.RotatingArrayList
Array index of the last element, plus 1.

R

RangeCheck(int) - Method in class com.virtuosotechnologies.lib.collections.RotatingArrayList
Check if the given index is in range.
RotatingArrayList - class com.virtuosotechnologies.lib.collections.RotatingArrayList.
Rotating resizeable array implementation of the List interface.
RotatingArrayList(int) - Constructor for class com.virtuosotechnologies.lib.collections.RotatingArrayList
Constructs an empty list with the specified initial capacity.
RotatingArrayList() - Constructor for class com.virtuosotechnologies.lib.collections.RotatingArrayList
Constructs an empty list.
RotatingArrayList(Collection) - Constructor for class com.virtuosotechnologies.lib.collections.RotatingArrayList
Constructs a list containing the elements of the specified collection, in the order they are returned by the collection's iterator.
readObject(ObjectInputStream) - Method in class com.virtuosotechnologies.lib.collections.RotatingArrayList
Reconstitute the RotatingArrayList instance from a stream (that is, deserialize it).
remove(int) - Method in class com.virtuosotechnologies.lib.collections.RotatingArrayList
Removes the element at the specified position in this list.
removeFirst() - Method in class com.virtuosotechnologies.lib.collections.RotatingArrayList
Removes the element from the front of this list.
removeFirst(int) - Method in class com.virtuosotechnologies.lib.collections.RotatingArrayList
Removes from this List the first num elements.
removeLast() - Method in class com.virtuosotechnologies.lib.collections.RotatingArrayList
Removes the element from the back of this list.
removeLast(int) - Method in class com.virtuosotechnologies.lib.collections.RotatingArrayList
Removes from this List the last num elements.
removeRange(int, int) - Method in class com.virtuosotechnologies.lib.collections.RotatingArrayList
Removes from this List all of the elements whose index is between fromIndex, inclusive and toIndex, exclusive.
rotateIndex_(int) - Method in class com.virtuosotechnologies.lib.collections.RotatingArrayList
Private helper.

S

set(int, Object) - Method in class com.virtuosotechnologies.lib.collections.RotatingArrayList
Replaces the element at the specified position in this list with the specified element.
setFirst(Object) - Method in class com.virtuosotechnologies.lib.collections.RotatingArrayList
Replaces the element at the front of this list with the specified element.
setLast(Object) - Method in class com.virtuosotechnologies.lib.collections.RotatingArrayList
Replaces the element at the back of this list with the specified element.
size() - Method in class com.virtuosotechnologies.lib.collections.RotatingArrayList
Returns the number of elements in this list.
size_ - Variable in class com.virtuosotechnologies.lib.collections.RotatingArrayList
The size of the RotatingArrayList (the number of elements it contains).

T

toArray() - Method in class com.virtuosotechnologies.lib.collections.RotatingArrayList
Returns an array containing all of the elements in this list in the correct order.
toArray(Object[]) - Method in class com.virtuosotechnologies.lib.collections.RotatingArrayList
Returns an array containing all of the elements in this list in the correct order.
trimToSize() - Method in class com.virtuosotechnologies.lib.collections.RotatingArrayList
Trims the capacity of this RotatingArrayList instance to be the list's current size.

W

writeObject(ObjectOutputStream) - Method in class com.virtuosotechnologies.lib.collections.RotatingArrayList
Save the state of the RotatingArrayList instance to a stream (that is, serialize it).

A C E F G I L R S T W