ObjectSpace Homepage

JGL - The Generic Collection Library for Java
All Packages  Class Hierarchy Index of Fields and Methods
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z

A

accumulate(Container, Number). Static method in class com.objectspace.jgl.algorithms.Counting
Add the value of each element in a container to an inital value and return the sum.
accumulate(Container, Number, BinaryFunction). Static method in class com.objectspace.jgl.algorithms.Counting
Add the value of each element in a container to an inital value and return the sum.
accumulate(InputIterator, InputIterator, Number). Static method in class com.objectspace.jgl.algorithms.Counting
Add the value of each element in a range to an inital value and return the sum.
accumulate(InputIterator, InputIterator, Number, BinaryFunction). Static method in class com.objectspace.jgl.algorithms.Counting
Add the value of each element in a range to an inital value and return the sum.
add(boolean). Method in class com.objectspace.jgl.adapters.BooleanBuffer
Add a boolean after my last element.
add(byte). Method in class com.objectspace.jgl.adapters.ByteBuffer
Add a byte after my last element.
add(char). Method in class com.objectspace.jgl.adapters.CharBuffer
Add a char after my last element.
add(double). Method in class com.objectspace.jgl.adapters.DoubleBuffer
Add a double after my last element.
add(float). Method in class com.objectspace.jgl.adapters.FloatBuffer
Add a float after my last element.
add(int). Method in class com.objectspace.jgl.adapters.IntBuffer
Add a int after my last element.
add(long). Method in class com.objectspace.jgl.adapters.LongBuffer
Add a long after my last element.
add(Object). Method in class com.objectspace.jgl.Array
Add an object after my last element.
add(Object). Method in class com.objectspace.jgl.adapters.ArrayAdapter
Add an object to myself.
add(Object). Method in class com.objectspace.jgl.adapters.BooleanBuffer
Add an object after my last element.
add(Object). Method in class com.objectspace.jgl.adapters.ByteBuffer
Add an object after my last element.
add(Object). Method in class com.objectspace.jgl.adapters.CharBuffer
Add an object after my last element.
add(Object). Method in interface com.objectspace.jgl.Container
Add an object to myself.
add(Object). Method in class com.objectspace.jgl.Deque
Add an object after my last element and return null.
add(Object). Method in class com.objectspace.jgl.DList
Add an object after my last element and return null.
add(Object). Method in class com.objectspace.jgl.adapters.DoubleBuffer
Add an object after my last element.
add(Object). Method in class com.objectspace.jgl.adapters.FloatBuffer
Add an object after my last element.
add(Object). Method in class com.objectspace.jgl.HashMap
Assume that the specified object is a Pair whose first field is a key and whose second field is a value.
add(Object). Method in class com.objectspace.jgl.HashSet
If the object doesn't exist or duplicates are allowed, add the object and return null, otherwise don't modify the set and return the matching object.
add(Object). Method in class com.objectspace.jgl.adapters.IntBuffer
Add an object after my last element.
add(Object). Method in class com.objectspace.jgl.adapters.LongBuffer
Add an object after my last element.
add(Object). Method in class com.objectspace.jgl.Map
Add an object to myself.
add(Object). Method in class com.objectspace.jgl.OrderedMap
Assume that the specified object is a Pair whose first field is a key and whose second field is a value.
add(Object). Method in class com.objectspace.jgl.OrderedSet
If the object doesn't exist or duplicates are allowed, add the object and return null, otherwise don't modify the set and return the matching object.
add(Object). Method in class com.objectspace.jgl.PriorityQueue
Push an object.
add(Object). Method in class com.objectspace.jgl.Queue
Add an object to my back.
add(Object). Method in class com.objectspace.jgl.adapters.ShortBuffer
Add an object after my last element.
add(Object). Method in class com.objectspace.jgl.SList
Add an object after my last element.
add(Object). Method in class com.objectspace.jgl.Stack
Push an object.
add(Object). Method in class com.objectspace.jgl.adapters.VectorArray
Add an object to myself.
add(Object, Object). Method in class com.objectspace.jgl.HashMap
If the key doesn't exist or duplicates are allowed, associate the value with the key and return null, otherwise don't modify the map and return the current value associated with the key.
add(Object, Object). Method in class com.objectspace.jgl.OrderedMap
If the key doesn't exist or duplicates are allowed, associate the value with the key and return null, otherwise don't modify the map and return the current value associated with the key.
add(short). Method in class com.objectspace.jgl.adapters.ShortBuffer
Add a short after my last element.
adjacentDifference(Container, Container). Static method in class com.objectspace.jgl.algorithms.Counting
Iterate through every element in a container and calculate the difference between each element and its preceding element.
adjacentDifference(Container, Container, BinaryFunction). Static method in class com.objectspace.jgl.algorithms.Counting
Iterate through every element in a container and calculate the difference between each element and its preceding element.
adjacentDifference(Container, OutputIterator). Static method in class com.objectspace.jgl.algorithms.Counting
Iterate through every element in a container and calculate the difference between each element and its preceding element.
adjacentDifference(Container, OutputIterator, BinaryFunction). Static method in class com.objectspace.jgl.algorithms.Counting
Iterate through every element in a container and calculate the difference between each element and its preceding element.
adjacentDifference(InputIterator, InputIterator, OutputIterator). Static method in class com.objectspace.jgl.algorithms.Counting
Iterate through every element in a range and calculate the difference between each element and its preceding element.
adjacentDifference(InputIterator, InputIterator, OutputIterator, BinaryFunction). Static method in class com.objectspace.jgl.algorithms.Counting
Iterate through every element in a range and calculate the difference between each element and its preceding element.
adjacentFind(Container). Static method in class com.objectspace.jgl.algorithms.Finding
Find the first consecutive sequence of elements that match using equals().
adjacentFind(Container, BinaryPredicate). Static method in class com.objectspace.jgl.algorithms.Finding
Find the first consecutive sequence of elements that match using a predicate.
adjacentFind(InputIterator, InputIterator). Static method in class com.objectspace.jgl.algorithms.Finding
Find the first consecutive sequence of elements that match using equals().
adjacentFind(InputIterator, InputIterator, BinaryPredicate). Static method in class com.objectspace.jgl.algorithms.Finding
Find the first consecutive sequence of elements that match using a predicate.
advance(). Method in class com.objectspace.jgl.ArrayIterator
Advance by one.
advance(). Method in class com.objectspace.jgl.adapters.BooleanIterator
Advance by one.
advance(). Method in class com.objectspace.jgl.adapters.ByteIterator
Advance by one.
advance(). Method in class com.objectspace.jgl.adapters.CharIterator
Advance by one.
advance(). Method in class com.objectspace.jgl.DequeIterator
Advance by one.
advance(). Method in class com.objectspace.jgl.DListIterator
Advance by one.
advance(). Method in class com.objectspace.jgl.adapters.DoubleIterator
Advance by one.
advance(). Method in class com.objectspace.jgl.adapters.FloatIterator
Advance by one.
advance(). Method in interface com.objectspace.jgl.ForwardIterator
Advance by one.
advance(). Method in class com.objectspace.jgl.HashMapIterator
Advance by one.
advance(). Method in class com.objectspace.jgl.HashSetIterator
Advance by one.
advance(). Method in interface com.objectspace.jgl.InputIterator
Advance by one.
advance(). Method in class com.objectspace.jgl.util.InsertIterator
Advance by one.
advance(). Method in class com.objectspace.jgl.adapters.IntIterator
Advance by one.
advance(). Method in class com.objectspace.jgl.adapters.LongIterator
Advance by one.
advance(). Method in class com.objectspace.jgl.adapters.ObjectIterator
Advance by one.
advance(). Method in class com.objectspace.jgl.util.ObjectOutputStreamIterator
Advance by one.
advance(). Method in class com.objectspace.jgl.OrderedMapIterator
Advance by one.
advance(). Method in class com.objectspace.jgl.OrderedSetIterator
Advance by one.
advance(). Method in interface com.objectspace.jgl.OutputIterator
Advance by one.
advance(). Method in class com.objectspace.jgl.util.OutputStreamIterator
Advance by one.
advance(). Method in class com.objectspace.jgl.util.ReverseIterator
Advance by one.
advance(). Method in class com.objectspace.jgl.adapters.ShortIterator
Advance by one.
advance(). Method in class com.objectspace.jgl.SListIterator
Advance by one.
advance(). Method in class com.objectspace.jgl.adapters.VectorIterator
Advance by one.
advance(int). Method in class com.objectspace.jgl.ArrayIterator
Advance by a specified amount.
advance(int). Method in class com.objectspace.jgl.adapters.BooleanIterator
Advance by a specified amount.
advance(int). Method in class com.objectspace.jgl.adapters.ByteIterator
Advance by a specified amount.
advance(int). Method in class com.objectspace.jgl.adapters.CharIterator
Advance by a specified amount.
advance(int). Method in class com.objectspace.jgl.DequeIterator
Advance by a specified amount.
advance(int). Method in class com.objectspace.jgl.DListIterator
Advance by a specified amount.
advance(int). Method in class com.objectspace.jgl.adapters.DoubleIterator
Advance by a specified amount.
advance(int). Method in class com.objectspace.jgl.adapters.FloatIterator
Advance by a specified amount.
advance(int). Method in interface com.objectspace.jgl.ForwardIterator
Advance by a specified amount.
advance(int). Method in class com.objectspace.jgl.HashMapIterator
Advance by a specified amount.
advance(int). Method in class com.objectspace.jgl.HashSetIterator
Advance by a specified amount.
advance(int). Method in interface com.objectspace.jgl.InputIterator
Advance by a specified amount.
advance(int). Method in class com.objectspace.jgl.util.InsertIterator
Advance by a specified amount.
advance(int). Method in class com.objectspace.jgl.adapters.IntIterator
Advance by a specified amount.
advance(int). Method in class com.objectspace.jgl.adapters.LongIterator
Advance by a specified amount.
advance(int). Method in class com.objectspace.jgl.adapters.ObjectIterator
Advance by a specified amount.
advance(int). Method in class com.objectspace.jgl.util.ObjectOutputStreamIterator
Advance by a specified amount.
advance(int). Method in class com.objectspace.jgl.OrderedMapIterator
Advance by a specified amount.
advance(int). Method in class com.objectspace.jgl.OrderedSetIterator
Advance by a specified amount.
advance(int). Method in interface com.objectspace.jgl.OutputIterator
Advance by a specified amount.
advance(int). Method in class com.objectspace.jgl.util.OutputStreamIterator
Advance by a specified amount.
advance(int). Method in class com.objectspace.jgl.util.ReverseIterator
Advance by a specified amount.
advance(int). Method in class com.objectspace.jgl.adapters.ShortIterator
Advance by a specified amount.
advance(int). Method in class com.objectspace.jgl.SListIterator
Advance by a specified amount.
advance(int). Method in class com.objectspace.jgl.adapters.VectorIterator
Advance by a specified amount.
allowExpansion(boolean). Method in class com.objectspace.jgl.HashMap
Enable or disable the current expansion mode.
allowExpansion(boolean). Method in class com.objectspace.jgl.HashSet
Enable or disable the current expansion mode.
allowsDuplicates(). Method in class com.objectspace.jgl.HashMap
Return true if I allow duplicate keys.
allowsDuplicates(). Method in class com.objectspace.jgl.HashSet
Return true if I allow duplicate objects.
allowsDuplicates(). Method in class com.objectspace.jgl.OrderedMap
Return true if duplicates are allowed.
allowsDuplicates(). Method in class com.objectspace.jgl.OrderedSet
Return true if duplicates are allowed.
Array(). Constructor for class com.objectspace.jgl.Array
Construct myself to be an empty Array.
Array(Array). Constructor for class com.objectspace.jgl.Array
Construct myself to be a shallow copy of an existing Array.
Array(int). Constructor for class com.objectspace.jgl.Array
Construct myself to contain a specified number of null elements.
Array(int, Object). Constructor for class com.objectspace.jgl.Array
Construct myself to contain a specified number of elements set to a particular object.
Array(Object[]). Constructor for class com.objectspace.jgl.Array
Construct myself to use a specified array as my initial storage.
ArrayAdapter(). Constructor for class com.objectspace.jgl.adapters.ArrayAdapter
ArrayIterator(). Constructor for class com.objectspace.jgl.ArrayIterator
Construct myself to be an iterator with no associated data structure or position.
ArrayIterator(Array, int). Constructor for class com.objectspace.jgl.ArrayIterator
Construct myself to be positioned at a particular index of a specific Array.
ArrayIterator(ArrayIterator). Constructor for class com.objectspace.jgl.ArrayIterator
Construct myself to be a copy of an existing iterator.
at(int). Method in class com.objectspace.jgl.Array
Return the element at the specified index.
at(int). Method in class com.objectspace.jgl.adapters.BooleanArray
Return the integer at the specified index as a Boolean object.
at(int). Method in class com.objectspace.jgl.adapters.BooleanBuffer
Return the element at the specified index.
at(int). Method in class com.objectspace.jgl.adapters.ByteArray
Return the integer at the specified index as a Byte object.
at(int). Method in class com.objectspace.jgl.adapters.ByteBuffer
Return the element at the specified index.
at(int). Method in class com.objectspace.jgl.adapters.CharArray
Return the integer at the specified index as a Char object.
at(int). Method in class com.objectspace.jgl.adapters.CharBuffer
Return the element at the specified index.
at(int). Method in class com.objectspace.jgl.Deque
Return the element at the specified index.
at(int). Method in class com.objectspace.jgl.DList
Return the element at the specified index.
at(int). Method in class com.objectspace.jgl.adapters.DoubleArray
Return the integer at the specified index as a Double object.
at(int). Method in class com.objectspace.jgl.adapters.DoubleBuffer
Return the element at the specified index.
at(int). Method in class com.objectspace.jgl.adapters.FloatArray
Return the integer at the specified index as a Float object.
at(int). Method in class com.objectspace.jgl.adapters.FloatBuffer
Return the element at the specified index.
at(int). Method in class com.objectspace.jgl.adapters.IntArray
Return the integer at the specified index as a Int object.
at(int). Method in class com.objectspace.jgl.adapters.IntBuffer
Return the element at the specified index.
at(int). Method in class com.objectspace.jgl.adapters.LongArray
Return the integer at the specified index as a Long object.
at(int). Method in class com.objectspace.jgl.adapters.LongBuffer
Return the element at the specified index.
at(int). Method in class com.objectspace.jgl.adapters.ObjectArray
Return the object at the specified index.
at(int). Method in interface com.objectspace.jgl.Sequence
Return the object at the specified index.
at(int). Method in class com.objectspace.jgl.adapters.ShortArray
Return the integer at the specified index as a Short object.
at(int). Method in class com.objectspace.jgl.adapters.ShortBuffer
Return the element at the specified index.
at(int). Method in class com.objectspace.jgl.SList
Return the element at the specified index.
at(int). Method in class com.objectspace.jgl.adapters.VectorArray
Return the object at the specified index.
atBegin(). Method in class com.objectspace.jgl.ArrayIterator
Return true if I'm positioned at the first item of my input stream.
atBegin(). Method in class com.objectspace.jgl.adapters.BooleanIterator
Return true if I'm positioned at the first item of my input stream.
atBegin(). Method in class com.objectspace.jgl.adapters.ByteIterator
Return true if I'm positioned at the first item of my input stream.
atBegin(). Method in class com.objectspace.jgl.adapters.CharIterator
Return true if I'm positioned at the first item of my input stream.
atBegin(). Method in class com.objectspace.jgl.DequeIterator
Return true if I'm positioned at the first item of my input stream.
atBegin(). Method in class com.objectspace.jgl.DListIterator
Return true if I'm positioned at the first item of my input stream.
atBegin(). Method in class com.objectspace.jgl.adapters.DoubleIterator
Return true if I'm positioned at the first item of my input stream.
atBegin(). Method in class com.objectspace.jgl.adapters.FloatIterator
Return true if I'm positioned at the first item of my input stream.
atBegin(). Method in class com.objectspace.jgl.HashMapIterator
Return true if I'm positioned at the first item of my input stream.
atBegin(). Method in class com.objectspace.jgl.HashSetIterator
Return true if I'm positioned at the first item of my input stream.
atBegin(). Method in interface com.objectspace.jgl.InputIterator
Return true if I'm positioned at the first item of my input stream.
atBegin(). Method in class com.objectspace.jgl.adapters.IntIterator
Return true if I'm positioned at the first item of my input stream.
atBegin(). Method in class com.objectspace.jgl.adapters.LongIterator
Return true if I'm positioned at the first item of my input stream.
atBegin(). Method in class com.objectspace.jgl.adapters.ObjectIterator
Return true if I'm positioned at the first item of my input stream.
atBegin(). Method in class com.objectspace.jgl.OrderedMapIterator
Return true if I'm positioned at the first item of my input stream.
atBegin(). Method in class com.objectspace.jgl.OrderedSetIterator
Return true if I'm positioned at the first item of my input stream.
atBegin(). Method in class com.objectspace.jgl.util.ReverseIterator
Return true if I'm positioned at the first item of my input stream.
atBegin(). Method in class com.objectspace.jgl.adapters.ShortIterator
Return true if I'm positioned at the first item of my input stream.
atBegin(). Method in class com.objectspace.jgl.SListIterator
Return true if I'm positioned at the first item of my input stream.
atBegin(). Method in class com.objectspace.jgl.adapters.VectorIterator
Return true if I'm positioned at the first item of my input stream.
atEnd(). Method in class com.objectspace.jgl.ArrayIterator
Return true if I'm positioned after the last item in my input stream.
atEnd(). Method in class com.objectspace.jgl.adapters.BooleanIterator
Return true if I'm positioned after the last item in my input stream.
atEnd(). Method in class com.objectspace.jgl.adapters.ByteIterator
Return true if I'm positioned after the last item in my input stream.
atEnd(). Method in class com.objectspace.jgl.adapters.CharIterator
Return true if I'm positioned after the last item in my input stream.
atEnd(). Method in class com.objectspace.jgl.DequeIterator
Return true if I'm positioned after the last item in my input stream.
atEnd(). Method in class com.objectspace.jgl.DListIterator
Return true if I'm positioned after the last item in my input stream.
atEnd(). Method in class com.objectspace.jgl.adapters.DoubleIterator
Return true if I'm positioned after the last item in my input stream.
atEnd(). Method in class com.objectspace.jgl.adapters.FloatIterator
Return true if I'm positioned after the last item in my input stream.
atEnd(). Method in class com.objectspace.jgl.HashMapIterator
Return true if I'm positioned after the last item in my input stream.
atEnd(). Method in class com.objectspace.jgl.HashSetIterator
Return true if I'm positioned after the last item in my input stream.
atEnd(). Method in interface com.objectspace.jgl.InputIterator
Return true if I'm positioned after the last item in my input stream.
atEnd(). Method in class com.objectspace.jgl.adapters.IntIterator
Return true if I'm positioned after the last item in my input stream.
atEnd(). Method in class com.objectspace.jgl.adapters.LongIterator
Return true if I'm positioned after the last item in my input stream.
atEnd(). Method in class com.objectspace.jgl.adapters.ObjectIterator
Return true if I'm positioned after the last item in my input stream.
atEnd(). Method in class com.objectspace.jgl.OrderedMapIterator
Return true if I'm positioned after the last item in my input stream.
atEnd(). Method in class com.objectspace.jgl.OrderedSetIterator
Return true if I'm positioned after the last item in my input stream.
atEnd(). Method in class com.objectspace.jgl.util.ReverseIterator
Return true if I'm positioned after the last item in my input stream.
atEnd(). Method in class com.objectspace.jgl.adapters.ShortIterator
Return true if I'm positioned after the last item in my input stream.
atEnd(). Method in class com.objectspace.jgl.SListIterator
Return true if I'm positioned after the last item in my input stream.
atEnd(). Method in class com.objectspace.jgl.adapters.VectorIterator
Return true if I'm positioned after the last item in my input stream.

A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
All Packages  Class Hierarchy Index of Fields and Methods
Submit a bug or feature