All Packages  Class Hierarchy

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

Index of all Fields and Methods

A

abs(double). Static method in class java.lang.Math
Returns the absolute value of a double value.
abs(float). Static method in class java.lang.Math
Returns the absolute value of a float value.
abs(int). Static method in class java.lang.Math
Returns the absolute value of an int value.
abs(long). Static method in class java.lang.Math
Returns the absolute value of a long value.
AbstractMethodError(). Constructor for class java.lang.AbstractMethodError
Constructs an AbstractMethodError with no detail message.
AbstractMethodError(String). Constructor for class java.lang.AbstractMethodError
Constructs an AbstractMethodError with the specified detail message.
accumulate(Container, Number). Static method in class COM.objectspace.jgl.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.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.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.Counting
Add the value of each element in a range to an inital value and return the sum.
acos(double). Static method in class java.lang.Math
Returns the arc cosine of an angle, in the range of 0.0 through pi.
activeCount(). Static method in class java.lang.Thread
Returns the current number of active threads in this thread group.
activeCount(). Method in class java.lang.ThreadGroup
Returns an estimate of the number of active threads in this thread group.
activeGroupCount(). Method in class java.lang.ThreadGroup
Returns an estimate of the number of active groups in this thread group.
AD. Static variable in class java.util.GregorianCalendar
Useful constant for GregorianCalendar.
add(int, int). Method in class java.util.Calendar
Date Arithmetic function.
add(int, int). Method in class java.util.GregorianCalendar
Overrides Calendar Date Arithmetic function.
add(Object). Method in class COM.objectspace.jgl.Array
Add an object after my last element.
add(Object). Method in class COM.objectspace.jgl.ArrayAdapter
Add an object to myself.
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.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.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.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.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.
addElement(Object). Method in class java.util.Vector
Adds the specified component to the end of this vector, increasing its size by one.
addObserver(Observer). Method in class java.util.Observable
Adds an observer to the set of observers for this object.
adjacentDifference(Container, Container). Static method in class COM.objectspace.jgl.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.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.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.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.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.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.Finding
Find the first consecutive sequence of elements that match using equals().
adjacentFind(Container, BinaryPredicate). Static method in class COM.objectspace.jgl.Finding
Find the first consecutive sequence of elements that match using a predicate.
adjacentFind(InputIterator, InputIterator). Static method in class COM.objectspace.jgl.Finding
Find the first consecutive sequence of elements that match using equals().
adjacentFind(InputIterator, InputIterator, BinaryPredicate). Static method in class COM.objectspace.jgl.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.BooleanIterator
Advance by one.
advance(). Method in class COM.objectspace.jgl.ByteIterator
Advance by one.
advance(). Method in class COM.objectspace.jgl.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.DoubleIterator
Advance by one.
advance(). Method in class COM.objectspace.jgl.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.InsertIterator
Advance by one.
advance(). Method in class COM.objectspace.jgl.IntIterator
Advance by one.
advance(). Method in class COM.objectspace.jgl.LongIterator
Advance by one.
advance(). Method in class COM.objectspace.jgl.ObjectIterator
Advance by one.
advance(). Method in class COM.objectspace.jgl.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.OutputStreamIterator
Advance by one.
advance(). Method in class COM.objectspace.jgl.ReverseIterator
Advance by one.
advance(). Method in class COM.objectspace.jgl.ShortIterator
Advance by one.
advance(). Method in class COM.objectspace.jgl.SListIterator
Advance by one.
advance(). Method in class COM.objectspace.jgl.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.BooleanIterator
Advance by a specified amount.
advance(int). Method in class COM.objectspace.jgl.ByteIterator
Advance by a specified amount.
advance(int). Method in class COM.objectspace.jgl.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.DoubleIterator
Advance by a specified amount.
advance(int). Method in class COM.objectspace.jgl.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.InsertIterator
Advance by a specified amount.
advance(int). Method in class COM.objectspace.jgl.IntIterator
Advance by a specified amount.
advance(int). Method in class COM.objectspace.jgl.LongIterator
Advance by a specified amount.
advance(int). Method in class COM.objectspace.jgl.ObjectIterator
Advance by a specified amount.
advance(int). Method in class COM.objectspace.jgl.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.OutputStreamIterator
Advance by a specified amount.
advance(int). Method in class COM.objectspace.jgl.ReverseIterator
Advance by a specified amount.
advance(int). Method in class COM.objectspace.jgl.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.VectorIterator
Advance by a specified amount.
after(Date). Method in class java.util.Date
Tests if this date is after the specified date.
after(Object). Method in class java.util.Calendar
Compares the time field records.
after(Object). Method in class java.util.GregorianCalendar
Overrides Calendar Compares the time field records.
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.
allowThreadSuspension(boolean). Method in class java.lang.ThreadGroup
Used by VM to control lowmem implicit suspension.
AM. Static variable in class java.util.Calendar
Useful constant for hour in 12-hour clock.
AM_PM. Static variable in class java.util.Calendar
Useful constant for date and time.
and(BitSet). Method in class java.util.BitSet
Logically ANDs this bit set with the specified set of bits.
append(boolean). Method in class java.lang.StringBuffer
Appends the string representation of the boolean argument to the string buffer.
append(char). Method in class java.lang.StringBuffer
Appends the string representation of the char argument to this string buffer.
append(char[]). Method in class java.lang.StringBuffer
Appends the string representation of the char array argument to this string buffer.
append(char[], int, int). Method in class java.lang.StringBuffer
Appends the string representation of a subarray of the char array argument to this string buffer.
append(double). Method in class java.lang.StringBuffer
Appends the string representation of the double argument to this string buffer.
append(float). Method in class java.lang.StringBuffer
Appends the string representation of the float argument to this string buffer.
append(int). Method in class java.lang.StringBuffer
Appends the string representation of the int argument to this string buffer.
append(long). Method in class java.lang.StringBuffer
Appends the string representation of the long argument to this string buffer.
append(Object). Method in class java.lang.StringBuffer
Appends the string representation of the Object argument to this string buffer.
append(String). Method in class java.lang.StringBuffer
Appends the string to this string buffer.
APRIL. Static variable in class java.util.Calendar
Useful constant for month.
areFieldsSet. Variable in class java.util.Calendar
The flag which tells if the time fields are set for the calendar.
ArithmeticException(). Constructor for class java.lang.ArithmeticException
Constructs an ArithmeticException with no detail message.
ArithmeticException(String). Constructor for class java.lang.ArithmeticException
Constructs an ArithmeticException with the specified detail message.
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.ArrayAdapter
arraycopy(Object, int, Object, int, int). Static method in class java.lang.System
Copies an array from the specified source array, beginning at the specified position, to the specified position of the destination array.
ArrayIndexOutOfBoundsException(). Constructor for class java.lang.ArrayIndexOutOfBoundsException
Constructs an ArrayIndexOutOfBoundsException with no detail message.
ArrayIndexOutOfBoundsException(int). Constructor for class java.lang.ArrayIndexOutOfBoundsException
Constructs a new ArrayIndexOutOfBoundsException class with an argument indicating the illegal index.
ArrayIndexOutOfBoundsException(String). Constructor for class java.lang.ArrayIndexOutOfBoundsException
Constructs an ArrayIndexOutOfBoundsException class with the specified detail message.
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.
ArrayStoreException(). Constructor for class java.lang.ArrayStoreException
Constructs an ArrayStoreException with no detail message.
ArrayStoreException(String). Constructor for class java.lang.ArrayStoreException
Constructs an ArrayStoreException with the specified detail message.
asin(double). Static method in class java.lang.Math
Returns the arc sine of an angle, in the range of -pi/2 through pi/2.
Assert(). Constructor for class CH.rubin.util.Assert
at(int). Method in class COM.objectspace.jgl.Array
Return the element at the specified index.
at(int). Method in class COM.objectspace.jgl.BooleanArray
Return the boolean at the specified index as a Boolean object.
at(int). Method in class COM.objectspace.jgl.ByteArray
Return the integer at the specified index as a Integer object.
at(int). Method in class COM.objectspace.jgl.CharArray
Return the integer at the specified index as a Character object.
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.DoubleArray
Return the integer at the specified index as a Double object.
at(int). Method in class COM.objectspace.jgl.FloatArray
Return the integer at the specified index as a Float object.
at(int). Method in class COM.objectspace.jgl.IntArray
Return the integer at the specified index as a Integer object.
at(int). Method in class COM.objectspace.jgl.LongArray
Return the integer at the specified index as a Long object.
at(int). Method in class COM.objectspace.jgl.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.ShortArray
Return the integer at the specified index as a Integer object.
at(int). Method in class COM.objectspace.jgl.SList
Return the element at the specified index.
at(int). Method in class COM.objectspace.jgl.VectorArray
Return the object at the specified index.
atan(double). Static method in class java.lang.Math
Returns the arc tangent of an angle, in the range of -pi/2 through pi/2.
atan2(double, double). Static method in class java.lang.Math
Converts rectangular coordinates (ba) to polar (r, theta).
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.BooleanIterator
Return true if I'm positioned at the first item of my input stream.
atBegin(). Method in class COM.objectspace.jgl.ByteIterator
Return true if I'm positioned at the first item of my input stream.
atBegin(). Method in class COM.objectspace.jgl.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.DoubleIterator
Return true if I'm positioned at the first item of my input stream.
atBegin(). Method in class COM.objectspace.jgl.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.IntIterator
Return true if I'm positioned at the first item of my input stream.
atBegin(). Method in class COM.objectspace.jgl.LongIterator
Return true if I'm positioned at the first item of my input stream.
atBegin(). Method in class COM.objectspace.jgl.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.ReverseIterator
Return true if I'm positioned at the first item of my input stream.
atBegin(). Method in class COM.objectspace.jgl.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.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.BooleanIterator
Return true if I'm positioned after the last item in my input stream.
atEnd(). Method in class COM.objectspace.jgl.ByteIterator
Return true if I'm positioned after the last item in my input stream.
atEnd(). Method in class COM.objectspace.jgl.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.DoubleIterator
Return true if I'm positioned after the last item in my input stream.
atEnd(). Method in class COM.objectspace.jgl.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.IntIterator
Return true if I'm positioned after the last item in my input stream.
atEnd(). Method in class COM.objectspace.jgl.LongIterator
Return true if I'm positioned after the last item in my input stream.
atEnd(). Method in class COM.objectspace.jgl.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.ReverseIterator
Return true if I'm positioned after the last item in my input stream.
atEnd(). Method in class COM.objectspace.jgl.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.VectorIterator
Return true if I'm positioned after the last item in my input stream.
AUGUST. Static variable in class java.util.Calendar
Useful constant for month.

B

back(). Method in class COM.objectspace.jgl.Array
Return my last item.
back(). Method in class COM.objectspace.jgl.ArrayAdapter
Return my last element.
back(). Method in class COM.objectspace.jgl.Deque
Return my last item.
back(). Method in class COM.objectspace.jgl.DList
Return my last item.
back(). Method in class COM.objectspace.jgl.Queue
Return the object at my back.
back(). Method in interface COM.objectspace.jgl.Sequence
Return my last element.
back(). Method in class COM.objectspace.jgl.SList
Return my last item.
BC. Static variable in class java.util.GregorianCalendar
Useful constant for GregorianCalendar.
before(Date). Method in class java.util.Date
Tests if this date is before the specified date.
before(Object). Method in class java.util.Calendar
Compares the time field records.
before(Object). Method in class java.util.GregorianCalendar
Overrides Calendar Compares the time field records.
begin. Variable in class COM.objectspace.jgl.Range
The begin iterator
begin(). Method in class COM.objectspace.jgl.Array
Return an iterator positioned at my first item.
begin(). Method in class COM.objectspace.jgl.Deque
Return an iterator positioned at my first item.
begin(). Method in class COM.objectspace.jgl.DList
Return an iterator positioned at my first item.
begin(). Method in class COM.objectspace.jgl.HashMap
Return an iterator positioned at my first pair.
begin(). Method in class COM.objectspace.jgl.HashSet
Return an iterator positioned at my first item.
begin(). Method in class COM.objectspace.jgl.OrderedMap
Return an iterator positioned at my first pair.
begin(). Method in class COM.objectspace.jgl.OrderedSet
Return an iterator positioned at my first item.
begin(). Method in class COM.objectspace.jgl.SList
Return an iterator positioned at my first item.
begin(boolean[]). Static method in class COM.objectspace.jgl.BooleanIterator
Return an iterator positioned at the first element of a particular array.
begin(boolean[], BooleanArray). Static method in class COM.objectspace.jgl.BooleanIterator
Return an iterator positioned at the first element of a particular array.
begin(byte[]). Static method in class COM.objectspace.jgl.ByteIterator
Return an iterator positioned at the first element of a particular array.
begin(byte[], ByteArray). Static method in class COM.objectspace.jgl.ByteIterator
Return an iterator positioned at the first element of a particular array.
begin(char[]). Static method in class COM.objectspace.jgl.CharIterator
Return an iterator positioned at the first element of a particular array.
begin(char[], CharArray). Static method in class COM.objectspace.jgl.CharIterator
Return an iterator positioned at the first element of a particular array.
begin(double[], DoubleArray). Static method in class COM.objectspace.jgl.DoubleIterator
Return an iterator positioned at the first element of a particular array.
begin(float[]). Static method in class COM.objectspace.jgl.FloatIterator
Return an iterator positioned at the first element of a particular array.
begin(float[], FloatArray). Static method in class COM.objectspace.jgl.FloatIterator
Return an iterator positioned at the first element of a particular array.
begin(int[]). Static method in class COM.objectspace.jgl.IntIterator
Return an iterator positioned at the first element of a particular array.
begin(int[], IntArray). Static method in class COM.objectspace.jgl.IntIterator
Return an iterator positioned at the first element of a particular array.
begin(long[]). Static method in class COM.objectspace.jgl.LongIterator
Return an iterator positioned at the first element of a particular array.
begin(long[], LongArray). Static method in class COM.objectspace.jgl.LongIterator
Return an iterator positioned at the first element of a particular array.
begin(Object[]). Static method in class COM.objectspace.jgl.ObjectIterator
Return an iterator positioned at the first element of a particular array.
begin(Object[], ObjectArray). Static method in class COM.objectspace.jgl.ObjectIterator
Return an iterator positioned at the first element of a particular array.
begin(short[]). Static method in class COM.objectspace.jgl.ShortIterator
Return an iterator positioned at the first element of a particular array.
begin(short[], ShortArray). Static method in class COM.objectspace.jgl.ShortIterator
Return an iterator positioned at the first element of a particular array.
begin(Vector). Static method in class COM.objectspace.jgl.VectorIterator
Return an iterator positioned at the first element of a particular java.util.Vector.
begin(Vector, VectorArray). Static method in class COM.objectspace.jgl.VectorIterator
Return an iterator positioned at the first element of a particular java.util.Vector.
Benchmark(). Constructor for class COM.objectspace.jgl.Benchmark
Construct a benchmark with the title that never displays its status automatically.
Benchmark(). Constructor for class test.Benchmark
Benchmark(String). Constructor for class COM.objectspace.jgl.Benchmark
Construct a benchmark with the specified title that never displays its status automatically.
Benchmark(String). Constructor for class test.Benchmark
Benchmark(String, int). Constructor for class COM.objectspace.jgl.Benchmark
Construct a benchmark with the specified title that displays its status automatically after every specified number of start/stop cycles.
BinaryCompose(BinaryFunction, UnaryFunction, UnaryFunction). Constructor for class COM.objectspace.jgl.BinaryCompose
Construct myself with a single binary function object and two unary function objects.
BinaryComposePredicate(BinaryPredicate, UnaryFunction, UnaryFunction). Constructor for class COM.objectspace.jgl.BinaryComposePredicate
Construct myself with a single binary predicate object and two unary function objects.
BinaryNot(BinaryPredicate). Constructor for class COM.objectspace.jgl.BinaryNot
Construct myself with a single binary predicate object.
BinaryPredicateFunction(BinaryPredicate). Constructor for class COM.objectspace.jgl.BinaryPredicateFunction
Construct myself with a binary predicate object.
BindFirst(BinaryFunction, Object). Constructor for class COM.objectspace.jgl.BindFirst
Construct myself with a binary function object and a predefined value.
BindFirstPredicate(BinaryPredicate, Object). Constructor for class COM.objectspace.jgl.BindFirstPredicate
Construct myself with a binary predicate object and a predefined value.
BindSecond(BinaryFunction, Object). Constructor for class COM.objectspace.jgl.BindSecond
Construct myself with a binary function object and a predefined value.
BindSecondPredicate(BinaryPredicate, Object). Constructor for class COM.objectspace.jgl.BindSecondPredicate
Construct myself with a binary predicate object and a predefined value.
BinomialEdgesPoints(). Method in class CH.rubin.matching.GraphBipartiteEqual
Calculate Binomial[edges, points].
BitSet(). Constructor for class java.util.BitSet
Creates an empty set.
BitSet(int). Constructor for class java.util.BitSet
Creates an empty set with the specified size.
Boolean(boolean). Constructor for class java.lang.Boolean
Allocates a Boolean object representing the value argument.
Boolean(String). Constructor for class java.lang.Boolean
Allocates a Boolean object representing the value true if the string argument is not null and is equal, ignoring case, to the string "true".
BooleanArray(). Constructor for class COM.objectspace.jgl.BooleanArray
BooleanArray(boolean[]). Constructor for class COM.objectspace.jgl.BooleanArray
BooleanArray(BooleanArray). Constructor for class COM.objectspace.jgl.BooleanArray
BooleanIterator(). Constructor for class COM.objectspace.jgl.BooleanIterator
Construct myself to be an iterator with no associated data structure or position.
BooleanIterator(boolean[], int). Constructor for class COM.objectspace.jgl.BooleanIterator
Construct myself to be positioned at a particular index of a specific array.
BooleanIterator(boolean[], int, BooleanArray). Constructor for class COM.objectspace.jgl.BooleanIterator
Construct myself to be positioned at a particular index of a specific array.
BooleanIterator(BooleanIterator). Constructor for class COM.objectspace.jgl.BooleanIterator
Construct myself to be a copy of an existing iterator.
booleanValue(). Method in class java.lang.Boolean
Returns the value of this Boolean object as a boolean.
bruteForce2DMCandidates(). Method in class CH.rubin.matching.GraphBipartiteEqual
Calculate how many candidates for the dumbest brute force solutions must be tested.
Byte(byte). Constructor for class java.lang.Byte
Constructs a Byte object initialized to the specified byte value.
Byte(String). Constructor for class java.lang.Byte
Constructs a Byte object initialized to the value specified by the String parameter.
ByteArray(). Constructor for class COM.objectspace.jgl.ByteArray
ByteArray(byte[]). Constructor for class COM.objectspace.jgl.ByteArray
ByteArray(ByteArray). Constructor for class COM.objectspace.jgl.ByteArray
ByteIterator(). Constructor for class COM.objectspace.jgl.ByteIterator
Construct myself to be an iterator with no associated data structure or position.
ByteIterator(byte[]). Constructor for class COM.objectspace.jgl.ByteIterator
Construct myself to be an iterator positioned at the first element of a specified array.
ByteIterator(byte[], ByteArray). Constructor for class COM.objectspace.jgl.ByteIterator
Construct myself to be an iterator positioned at the first element of a specified array.
ByteIterator(byte[], int). Constructor for class COM.objectspace.jgl.ByteIterator
Construct myself to be positioned at a particular index of a specific array.
ByteIterator(byte[], int, ByteArray). Constructor for class COM.objectspace.jgl.ByteIterator
Construct myself to be positioned at a particular index of a specific array.
ByteIterator(ByteIterator). Constructor for class COM.objectspace.jgl.ByteIterator
Construct myself to be a copy of an existing iterator.
byteValue(). Method in class java.lang.Byte
Returns the value of this Byte as a byte.
byteValue(). Method in class java.lang.Double
Returns the value of this Double as a byte (by casting to a byte).
byteValue(). Method in class java.lang.Float
Returns the value of this Float as a byte (by casting to a byte).
byteValue(). Method in class java.lang.Integer
Returns the value of this Integer as a byte.
byteValue(). Method in class java.lang.Long
Returns the value of this Long as a byte.
byteValue(). Method in class java.lang.Number
Returns the value of the specified number as a byte.
byteValue(). Method in class java.lang.Short
Returns the value of this Short as a byte.

C

Calendar(). Constructor for class java.util.Calendar
Constructs a Calendar with the default time zone as returned by TimeZone.getDefault(), and the default locale.
Calendar(TimeZone, Locale). Constructor for class java.util.Calendar
Constructs a Calendar with the given time zone and locale.
CANADA. Static variable in class java.util.Locale
Useful constant for country.
CANADA_FRENCH. Static variable in class java.util.Locale
Useful constant for country.
canEdgeXYBeSet(int, int). Method in class CH.rubin.matching.Graph2DM
Checks if the given edge can be set or not.
canTripleBeSet(int[]). Method in class CH.rubin.matching.Graph3DM
Test if the triplet may be added to the graph without violating the matching.
canTripleXYZBeSet(int, int, int). Method in class CH.rubin.matching.Graph3DM
Test if the triplet (x,y,z) may be added to the graph without violating the matching.
capacity(). Method in class COM.objectspace.jgl.Array
Return the number of elements that I contain without allocating more internal storage.
capacity(). Method in class java.lang.StringBuffer
Returns the current capacity of the String buffer.
capacity(). Method in class java.util.Vector
Returns the current capacity of this vector.
capacityIncrement. Variable in class java.util.Vector
The amount by which the capacity of the vector is automatically incremented when its size becomes greater than its capacity.
ceil(double). Static method in class java.lang.Math
Returns the smallest (closest to negative infinity) double value that is not less than the argument and is equal to a mathematical integer.
Character(char). Constructor for class java.lang.Character
Constructs a Character object and initializes it so that it represents the primitive value argument.
CharArray(). Constructor for class COM.objectspace.jgl.CharArray
CharArray(char[]). Constructor for class COM.objectspace.jgl.CharArray
CharArray(CharArray). Constructor for class COM.objectspace.jgl.CharArray
charAt(int). Method in class java.lang.String
Returns the character at the specified index.
charAt(int). Method in class java.lang.StringBuffer
Returns the character at a specific index in this string buffer.
CharIterator(). Constructor for class COM.objectspace.jgl.CharIterator
Construct myself to be an iterator with no associated data structure or position.
CharIterator(char[], int). Constructor for class COM.objectspace.jgl.CharIterator
Construct myself to be positioned at a particular index of a specific array.
CharIterator(char[], int, CharArray). Constructor for class COM.objectspace.jgl.CharIterator
Construct myself to be positioned at a particular index of a specific array.
CharIterator(CharIterator). Constructor for class COM.objectspace.jgl.CharIterator
Construct myself to be a copy of an existing iterator.
charValue(). Method in class java.lang.Character
Returns the value of this Character object.
checkAccept(String, int). Method in class java.lang.SecurityManager
Throws a SecurityException if the calling thread is not permitted to accept a socket connection from the specified host and port number.
checkAccess(). Method in class java.lang.Thread
Determines if the currently running thread has permission to modify this thread.
checkAccess(). Method in class java.lang.ThreadGroup
Determines if the currently running thread has permission to modify this thread group.
checkAccess(Thread). Method in class java.lang.SecurityManager
Throws a SecurityException if the calling thread is not allowed to modify the thread argument.
checkAccess(ThreadGroup). Method in class java.lang.SecurityManager
Throws a SecurityException if the calling thread is not allowed to modify the thread group argument.
checkAwtEventQueueAccess(). Method in class java.lang.SecurityManager
Tests if a client can get access to the AWT event queue.
checkConnect(String, int). Method in class java.lang.SecurityManager
Throws a SecurityException if the calling thread is not allowed to open a socket connection to the specified host and port number.
checkConnect(String, int, Object). Method in class java.lang.SecurityManager
Throws a SecurityException if the specified security context is not allowed to open a socket connection to the specified host and port number.
checkCreateClassLoader(). Method in class java.lang.SecurityManager
Throws a SecurityException if the calling thread is not allowed to create a new class loader.
checkDelete(String). Method in class java.lang.SecurityManager
Throws a SecurityException if the calling thread is not allowed to delete the specified file.
checkExec(String). Method in class java.lang.SecurityManager
Throws a SecurityException if the calling thread is not allowed to create a subprocss.
checkExit(int). Method in class java.lang.SecurityManager
Throws a SecurityException if the calling thread is not allowed to cause the Java Virtual Machine to halt with the specified status code.
checkLink(String). Method in class java.lang.SecurityManager
Throws a SecurityException if the calling thread is not allowed to dynamic link the library code specified by the string argument file.
checkListen(int). Method in class java.lang.SecurityManager
Throws a SecurityException if the calling thread is not allowed to wait for a connection request on the specified local port number.
checkMemberAccess(Class, int). Method in class java.lang.SecurityManager
Tests if a client is allowed to access members.
checkMulticast(InetAddress). Method in class java.lang.SecurityManager
Tests if current execution context is allowed to use (join/leave/send/receive) IP multicast.
checkMulticast(InetAddress, byte). Method in class java.lang.SecurityManager
Tests to see if current execution context is allowed to use (join/leave/send/receive) IP multicast.
checkPackageAccess(String). Method in class java.lang.SecurityManager
Throws a SecurityException if the calling thread is not allowed to access the package specified by the argument.
checkPackageDefinition(String). Method in class java.lang.SecurityManager
Throws a SecurityException if the calling thread is not allowed to define classes in the package specified by the argument.
checkPrintJobAccess(). Method in class java.lang.SecurityManager
Tests if a client can initiate a print job request.
checkPropertiesAccess(). Method in class java.lang.SecurityManager
Throws a SecurityException if the calling thread is not allowed to access or modify the system properties.
checkPropertyAccess(String). Method in class java.lang.SecurityManager
Throws a SecurityException if the calling thread is not allowed to access the system property with the specified key name.
checkRead(FileDescriptor). Method in class java.lang.SecurityManager
Throws a SecurityException if the calling thread is not allowed to read from the specified file descriptor.
checkRead(String). Method in class java.lang.SecurityManager
Throws a SecurityException if the calling thread is not allowed to read the file specified by the string argument.
checkRead(String, Object). Method in class java.lang.SecurityManager
Throws a SecurityException if the specified security context is not allowed to read the file specified by the string argument.
checkSecurityAccess(String). Method in class java.lang.SecurityManager
Tests access to certain operations for a security API action.
checkSetFactory(). Method in class java.lang.SecurityManager
Throws a SecurityException if the calling thread is not allowed to set the socket factory used by ServerSocket or Socket, or the stream handler factory used by URL.
checkSystemClipboardAccess(). Method in class java.lang.SecurityManager
Tests if a client can get access to the system clipboard.
checkTopLevelWindow(Object). Method in class java.lang.SecurityManager
Returns false if the calling thread is not trusted to bring up the top-level window indicated by the window argument.
checkWrite(FileDescriptor). Method in class java.lang.SecurityManager
Throws a SecurityException if the calling thread is not allowed to write to the specified file descriptor.
checkWrite(String). Method in class java.lang.SecurityManager
Throws a SecurityException if the calling thread is not allowed to write to the file specified by the string argument.
CHINA. Static variable in class java.util.Locale
Useful constant for country.
CHINESE. Static variable in class java.util.Locale
Useful constant for language.
ClassCastException(). Constructor for class java.lang.ClassCastException
Constructs a ClassCastException with no detail message.
ClassCastException(String). Constructor for class java.lang.ClassCastException
Constructs a ClassCastException with the specified detail message.
ClassCircularityError(). Constructor for class java.lang.ClassCircularityError
Constructs a ClassCircularityError with no detail message.
ClassCircularityError(String). Constructor for class java.lang.ClassCircularityError
Constructs a ClassCircularityError with the specified detail message.
classDepth(String). Method in class java.lang.SecurityManager
Returns the stack depth of the specified class.
ClassFormatError(). Constructor for class java.lang.ClassFormatError
Constructs a ClassFormatError with no detail message.
ClassFormatError(String). Constructor for class java.lang.ClassFormatError
Constructs a ClassFormatError with the specified detail message.
ClassLoader(). Constructor for class java.lang.ClassLoader
Constructs a new class loader and initializes it.
classLoaderDepth(). Method in class java.lang.SecurityManager
Returns the stack depth of the most recently executing method from a class defined using a class loader.
ClassNotFoundException(). Constructor for class java.lang.ClassNotFoundException
Constructs a ClassNotFoundException with no detail message.
ClassNotFoundException(String). Constructor for class java.lang.ClassNotFoundException
Constructs a ClassNotFoundException with the specified detail message.
clear(). Method in class COM.objectspace.jgl.Array
Remove all of my elements.
clear(). Method in class COM.objectspace.jgl.ArrayAdapter
Remove all of my objects.
clear(). Method in class java.util.Calendar
Clears the values of all the time fields.
clear(). Method in interface COM.objectspace.jgl.Container
Remove all of my objects.
clear(). Method in class COM.objectspace.jgl.Deque
Remove all of my elements.
clear(). Method in class COM.objectspace.jgl.DList
Remove all of my elements.
clear(). Method in class COM.objectspace.jgl.HashMap
Remove all of my elements.
clear(). Method in class COM.objectspace.jgl.HashSet
Remove all of my elements.
clear(). Method in class java.util.Hashtable
Clears this hashtable so that it contains no keys.
clear(). Method in class COM.objectspace.jgl.Map
Remove all of my objects.
clear(). Method in class COM.objectspace.jgl.OrderedMap
Remove all of my elements.
clear(). Method in class COM.objectspace.jgl.OrderedSet
Remove all of my elements.
clear(). Method in class COM.objectspace.jgl.PriorityQueue
Remove all of my objects.
clear(). Method in class COM.objectspace.jgl.Queue
Remove all of my objects.
clear(). Method in class COM.objectspace.jgl.SList
Remove all of my elements.
clear(). Method in class COM.objectspace.jgl.Stack
Remove all of my objects.
clear(). Method in class COM.objectspace.jgl.VectorArray
Remove all of my objects.
clear(int). Method in class java.util.BitSet
Clears a bit.
clear(int). Method in class java.util.Calendar
Clears the value in the given time field.
clearChanged(). Method in class java.util.Observable
Indicates that this object has no longer changed, or that it has already notified all of its observers of its most recent change.
clone(). Method in class COM.objectspace.jgl.Array
Return a shallow copy of myself.
clone(). Method in class COM.objectspace.jgl.ArrayAdapter
Creates a new object of the same class as this object.
clone(). Method in class COM.objectspace.jgl.ArrayIterator
Return a clone of myself.
clone(). Method in interface COM.objectspace.jgl.BidirectionalIterator
J++ requires clone
clone(). Method in class java.util.BitSet
Clones the BitSet.
clone(). Method in class COM.objectspace.jgl.BooleanArray
Return a shallow copy of myself.
clone(). Method in class COM.objectspace.jgl.BooleanIterator
Return a clone of myself.
clone(). Method in class COM.objectspace.jgl.ByteArray
Return a shallow copy of myself.
clone(). Method in class COM.objectspace.jgl.ByteIterator
Return a clone of myself.
clone(). Method in class java.util.Calendar
Overrides Cloneable
clone(). Method in class COM.objectspace.jgl.CharArray
Return a shallow copy of myself.
clone(). Method in class COM.objectspace.jgl.CharIterator
Return a clone of myself.
clone(). Method in interface COM.objectspace.jgl.Container
Return a shallow copy of myself.
clone(). Method in class COM.objectspace.jgl.Deque
Return a shallow copy of myself.
clone(). Method in class COM.objectspace.jgl.DequeIterator
Return a clone of myself.
clone(). Method in class COM.objectspace.jgl.DList
Return a shallow copy of myself.
clone(). Method in class COM.objectspace.jgl.DListIterator
Return a clone of myself.
clone(). Method in class COM.objectspace.jgl.DoubleArray
Return a shallow copy of myself.
clone(). Method in class COM.objectspace.jgl.DoubleIterator
Return a clone of myself.
clone(). Method in class COM.objectspace.jgl.FloatArray
Return a shallow copy of myself.
clone(). Method in class COM.objectspace.jgl.FloatIterator
Return a clone of myself.
clone(). Method in interface COM.objectspace.jgl.ForwardIterator
Return a clone of myself.
clone(). Method in class java.util.GregorianCalendar
Overrides Cloneable
clone(). Method in class COM.objectspace.jgl.HashMap
Return a shallow copy of myself.
clone(). Method in class COM.objectspace.jgl.HashMapIterator
Return a clone of myself.
clone(). Method in class COM.objectspace.jgl.HashMultiMap
Return a shallow copy of myself.
clone(). Method in class COM.objectspace.jgl.HashMultiSet
Return a shallow copy of myself.
clone(). Method in class COM.objectspace.jgl.HashSet
Return a shallow copy of myself.
clone(). Method in class COM.objectspace.jgl.HashSetIterator
Return a clone of myself.
clone(). Method in class java.util.Hashtable
Creates a shallow copy of this hashtable.
clone(). Method in interface COM.objectspace.jgl.InputIterator
Return a clone of myself.
clone(). Method in class COM.objectspace.jgl.InsertIterator
Return a clone of myself.
clone(). Method in class COM.objectspace.jgl.IntArray
Return a shallow copy of myself.
clone(). Method in class COM.objectspace.jgl.IntIterator
Return a clone of myself.
clone(). Method in class java.util.Locale
Overrides Cloneable
clone(). Method in class COM.objectspace.jgl.LongArray
Return a shallow copy of myself.
clone(). Method in class COM.objectspace.jgl.LongIterator
Return a clone of myself.
clone(). Method in class COM.objectspace.jgl.Map
Return a shallow copy of myself.
clone(). Method in class java.lang.Object
Creates a new object of the same class as this object.
clone(). Method in class COM.objectspace.jgl.ObjectArray
Return a shallow copy of myself.
clone(). Method in class COM.objectspace.jgl.ObjectIterator
Return a clone of myself.
clone(). Method in class COM.objectspace.jgl.ObjectOutputStreamIterator
Return a clone of myself.
clone(). Method in class COM.objectspace.jgl.OrderedMap
Return a shallow copy of myself.
clone(). Method in class COM.objectspace.jgl.OrderedMapIterator
Return a clone of myself.
clone(). Method in class COM.objectspace.jgl.OrderedMultiMap
Return a shallow copy of myself.
clone(). Method in class COM.objectspace.jgl.OrderedMultiSet
Return a shallow copy of myself.
clone(). Method in class COM.objectspace.jgl.OrderedSet
Return a shallow copy of myself.
clone(). Method in class COM.objectspace.jgl.OrderedSetIterator
Return a clone of myself.
clone(). Method in interface COM.objectspace.jgl.OutputIterator
Return a clone of myself.
clone(). Method in class COM.objectspace.jgl.OutputStreamIterator
Return a clone of myself.
clone(). Method in class COM.objectspace.jgl.Pair
Return a copy of myself.
clone(). Method in class COM.objectspace.jgl.PriorityQueue
Return a shallow copy of myself.
clone(). Method in class COM.objectspace.jgl.Queue
Return a shallow copy of myself.
clone(). Method in interface COM.objectspace.jgl.RandomAccessIterator
Return a clone of myself.
clone(). Method in class COM.objectspace.jgl.ReverseIterator
Return a clone of myself.
clone(). Method in interface COM.objectspace.jgl.Sequence
clone(). Method in class COM.objectspace.jgl.ShortArray
Return a shallow copy of myself.
clone(). Method in class COM.objectspace.jgl.ShortIterator
Return a clone of myself.
clone(). Method in class java.util.SimpleTimeZone
Overrides Cloneable
clone(). Method in class COM.objectspace.jgl.SList
Return a shallow copy of myself.
clone(). Method in class COM.objectspace.jgl.SListIterator
Return a clone of myself.
clone(). Method in class COM.objectspace.jgl.Stack
Return a shallow copy of myself.
clone(). Method in class java.util.TimeZone
Overrides Cloneable
clone(). Method in class java.util.Vector
Returns a clone of this vector.
clone(). Method in class COM.objectspace.jgl.VectorArray
Return a shallow copy of myself.
clone(). Method in class COM.objectspace.jgl.VectorIterator
Return a clone of myself.
clone(Object). Method in class CH.rubin.matching.Graph3DM
returns a shallow copy of itself
CloneNotSupportedException(). Constructor for class java.lang.CloneNotSupportedException
Constructs a CloneNotSupportedException with no detail message.
CloneNotSupportedException(String). Constructor for class java.lang.CloneNotSupportedException
Constructs a CloneNotSupportedException with the specified detail message.
collect(Container, UnaryFunction). Static method in class COM.objectspace.jgl.Transforming
Return a container that is the same class as the original and contains the result of applying the given unary function to each element in the original.
collect(ForwardIterator, ForwardIterator, UnaryFunction). Static method in class COM.objectspace.jgl.Transforming
Return a container that is the same class as the original and contains the result of applying the given unary function to each element in the range.
COMBINING_SPACING_MARK. Static variable in class java.lang.Character
command(Object). Static method in class java.lang.Compiler
Examines the argument type and its fields and perform some documented operation.
compareTo(Benchmark). Method in class COM.objectspace.jgl.Benchmark
Display a string that compares me with another benchmark to System.out.
compareTo(String). Method in class java.lang.String
Compares two strings lexicographically.
compileClass(Class). Static method in class java.lang.Compiler
Compiles the specified class.
compileClasses(String). Static method in class java.lang.Compiler
Compiles all classes whose name matches the specified string.
complete(). Method in class java.util.Calendar
Fills in any unset fields in the time field list.
computeFields(). Method in class java.util.Calendar
Converts UTC as milliseconds to time field values.
computeFields(). Method in class java.util.GregorianCalendar
Overrides Calendar Converts UTC as milliseconds to time field values.
computeTime(). Method in class java.util.Calendar
Converts Calendar's time field values to UTC as milliseconds.
computeTime(). Method in class java.util.GregorianCalendar
Overrides Calendar Converts time field values to UTC as milliseconds.
concat(String). Method in class java.lang.String
Concatenates the specified string to the end of this string.
CONNECTOR_PUNCTUATION. Static variable in class java.lang.Character
Constants(). Constructor for class CH.rubin.matching.Constants
contains(Object). Method in class COM.objectspace.jgl.Array
Return true if I contain a particular object.
contains(Object). Method in class COM.objectspace.jgl.ArrayAdapter
Return true if I contain a particular object using .equals()
contains(Object). Method in class COM.objectspace.jgl.Deque
Return true if I contain a particular object.
contains(Object). Method in class COM.objectspace.jgl.DList
Return true if I contain a particular object.
contains(Object). Method in class java.util.Hashtable
Tests if some key maps into the specified value in this hashtable.
contains(Object). Method in interface COM.objectspace.jgl.Sequence
Return true if I contain a particular object.
contains(Object). Method in class COM.objectspace.jgl.SList
Return true if I contain a particular object.
contains(Object). Method in class java.util.Vector
Tests if the specified object is a component in this vector.
containsKey(Object). Method in class java.util.Hashtable
Tests if the specified object is a key in this hashtable.
CONTROL. Static variable in class java.lang.Character
copy(Array). Method in class COM.objectspace.jgl.Array
Become a shallow copy of an existing Array.
copy(Container, Container). Static method in class COM.objectspace.jgl.Copying
Insert the elements from one container into another container.
copy(Container, OutputIterator). Static method in class COM.objectspace.jgl.Copying
Copy the elements from a container to a sequence.
copy(Deque). Method in class COM.objectspace.jgl.Deque
Become a shallow copy of an existing Deque.
copy(DList). Method in class COM.objectspace.jgl.DList
Become a shallow copy of an existing DList.
copy(HashMap). Method in class COM.objectspace.jgl.HashMap
Become a shallow copy of an existing HashMap.
copy(HashMultiSet). Method in class COM.objectspace.jgl.HashMultiSet
Become a shallow copy of an existing HashMultiSet.
copy(HashSet). Method in class COM.objectspace.jgl.HashSet
Become a shallow copy of an existing HashSet.
copy(InputIterator, InputIterator, OutputIterator). Static method in class COM.objectspace.jgl.Copying
Copy the elements from one range to another range of the same size.
copy(OrderedMap). Method in class COM.objectspace.jgl.OrderedMap
Become a shallow copy of an existing OrderedMap.
copy(OrderedMultiMap). Method in class COM.objectspace.jgl.OrderedMultiMap
Become a shallow copy of an existing OrderedMultiMap.
copy(OrderedMultiSet). Method in class COM.objectspace.jgl.OrderedMultiSet
Become a shallow copy of an existing OrderedMultiSet.
copy(OrderedSet). Method in class COM.objectspace.jgl.OrderedSet
Become a shallow copy of an existing OrderedSet.
copy(PriorityQueue). Method in class COM.objectspace.jgl.PriorityQueue
Become a shallow copy of a specified PriorityQueue.
copy(Queue). Method in class COM.objectspace.jgl.Queue
Become a shallow copy of a Queue.
copy(SList). Method in class COM.objectspace.jgl.SList
Become a shallow copy of an existing SList.
copy(Stack). Method in class COM.objectspace.jgl.Stack
Become a shallow copy of a specified Stack.
copyBackward(BidirectionalIterator, BidirectionalIterator, BidirectionalIterator). Static method in class COM.objectspace.jgl.Copying
Copy the elements backwards from one range to another range of the same size.
copyInto(Object[]). Method in class java.util.Vector
Copies the components of this vector into the specified array.
copyTo(Object[]). Method in class COM.objectspace.jgl.Array
Copy my elements into the specified array.
copyValueOf(char[]). Static method in class java.lang.String
Returns a String that is equivalent to the specified character array.
copyValueOf(char[], int, int). Static method in class java.lang.String
Returns a String that is equivalent to the specified character array.
cos(double). Static method in class java.lang.Math
Returns the trigonometric cosine of an angle.
count(Container, Object). Static method in class COM.objectspace.jgl.Counting
Return the number of elements in a container that match a particular object using equals().
count(DListIterator, DListIterator, Object). Method in class COM.objectspace.jgl.DList
Return the number of objects within a specified range of that match a particular value.
count(InputIterator, InputIterator, Object). Static method in class COM.objectspace.jgl.Counting
Return the number of elements in a range that match a particular object using equals().
count(int, int, Object). Method in class COM.objectspace.jgl.Array
Return the number of objects within a particular range of indices that match a particular value.
count(int, int, Object). Method in class COM.objectspace.jgl.ArrayAdapter
Return the number of objects within a specified range of that match a particular value.
count(int, int, Object). Method in class COM.objectspace.jgl.Deque
Return the number of objects within a particular range of indices that match a particular value.
count(int, int, Object). Method in class COM.objectspace.jgl.DList
Return the number of objects within a specified range of that match a particular value.
count(int, int, Object). Method in interface COM.objectspace.jgl.Sequence
Return the number of objects within a specified range of that match a particular value.
count(int, int, Object). Method in class COM.objectspace.jgl.SList
Return the number of objects within a specified range of that match a particular value.
count(Object). Method in class COM.objectspace.jgl.Array
Return the number of objects that match a particular value.
count(Object). Method in class COM.objectspace.jgl.ArrayAdapter
Return the number of objects that match a specified object.
count(Object). Method in class COM.objectspace.jgl.Deque
Return the number of objects that match a particular value.
count(Object). Method in class COM.objectspace.jgl.DList
Return the number of objects that match a particular value.
count(Object). Method in class COM.objectspace.jgl.HashMap
Return the number of key/value pairs that match a particular key.
count(Object). Method in class COM.objectspace.jgl.HashSet
Return the number of items that match a particular object.
count(Object). Method in class COM.objectspace.jgl.Map
Return the number of key/value pairs that match a particular key.
count(Object). Method in class COM.objectspace.jgl.OrderedMap
Return the number of key/value pairs that match a particular key.
count(Object). Method in class COM.objectspace.jgl.OrderedSet
Return the number of items that match a particular object.
count(Object). Method in interface COM.objectspace.jgl.Sequence
Return the number of objects that match a specified object.
count(Object). Method in interface COM.objectspace.jgl.Set
Return the number of items that match a particular object.
count(Object). Method in class COM.objectspace.jgl.SList
Return the number of objects that match a particular value.
count(SListIterator, SListIterator, Object). Method in class COM.objectspace.jgl.SList
Return the number of objects within a specified range of that match a particular value.
countIf(Container, UnaryPredicate). Static method in class COM.objectspace.jgl.Counting
Return the number of elements in a container that satisfy a predicate.
countIf(InputIterator, InputIterator, UnaryPredicate). Static method in class COM.objectspace.jgl.Counting
Return the number of elements in a range that satisfy a predicate.
countObservers(). Method in class java.util.Observable
Returns the number of observers of this object.
countStackFrames(). Method in class java.lang.Thread
Counts the number of stack frames in this thread.
countTokens(). Method in class java.util.StringTokenizer
Calculates the number of times that this tokenizer's nextToken method can be called before it generates an exception.
countValues(Object). Method in class COM.objectspace.jgl.HashMap
Return the number of values that match a given object.
countValues(Object). Method in class COM.objectspace.jgl.Map
Return the number of values that match a given object.
countValues(Object). Method in class COM.objectspace.jgl.OrderedMap
Return the number of values that match a given object.
CURRENCY_SYMBOL. Static variable in class java.lang.Character
currentClassLoader(). Method in class java.lang.SecurityManager
Returns an object describing the most recent class loader executing on the stack.
currentLoadedClass(). Method in class java.lang.SecurityManager
Returns the current Class with a ClassLoader on the execution stack.
currentThread(). Static method in class java.lang.Thread
Returns a reference to the currently executing thread object.
currentTimeMillis(). Static method in class java.lang.System
Returns the current time in milliseconds.

D

DASH_PUNCTUATION. Static variable in class java.lang.Character
DATE. Static variable in class java.util.Calendar
Useful constant for date and time.
Date(). Constructor for class java.util.Date
Allocates a Date object and initializes it so that it represents the time at which it was allocated measured to the nearest millisecond.
Date(int, int, int). Constructor for class java.util.Date
Allocates a Date object and initializes it so that it represents midnight, local time, at the beginning of the day specified by the year, month, and date arguments.
Date(int, int, int, int, int). Constructor for class java.util.Date
Allocates a Date object and initializes it so that it represents the specified hour and minute, local time, of the date specified by the year, month, date, hrs, and min arguments.
Date(int, int, int, int, int, int). Constructor for class java.util.Date
Allocates a Date object and initializes it so that it represents the specified hour, minute, and second, local time of the date specified by the year, month, date, hrs, min, and sec arguments.
Date(long). Constructor for class java.util.Date
Allocates a Date object and initializes it to represent the specified number of milliseconds since January 1, 1970, 00:00:00 GMT.
Date(String). Constructor for class java.util.Date
Allocates a Date object and initializes it so that it represents the date and time indicated by the string s, which is interpreted as if by the parse method.
DAY_OF_MONTH. Static variable in class java.util.Calendar
Useful constant for date and time.
DAY_OF_WEEK. Static variable in class java.util.Calendar
Useful constant for date and time.
DAY_OF_WEEK_IN_MONTH. Static variable in class java.util.Calendar
Useful constant for date and time.
DAY_OF_YEAR. Static variable in class java.util.Calendar
Useful constant for date and time.
DEBUG. Static variable in class CH.rubin.matching.Constants
Most used to print out very verbose informations
DECEMBER. Static variable in class java.util.Calendar
Useful constant for month.
DECIMAL_DIGIT_NUMBER. Static variable in class java.lang.Character
decode(String). Static method in class java.lang.Byte
Decodes a String into a Byte.
decode(String). Static method in class java.lang.Integer
Decodes a string into an Integer.
decode(String). Static method in class java.lang.Short
Decodes a String into a Short.
defaults. Variable in class java.util.Properties
A property list that contains default values for any keys not found in this property list.
defineClass(byte[], int, int). Method in class java.lang.ClassLoader
Converts an array of bytes into an instance of class Class.
defineClass(String, byte[], int, int). Method in class java.lang.ClassLoader
Converts an array of bytes to an instance of class Class.
deleteObserver(Observer). Method in class java.util.Observable
Deletes an observer from the set of observers of this object.
deleteObservers(). Method in class java.util.Observable
Clears the observer list so that this object no longer has any observers.
Deque(). Constructor for class COM.objectspace.jgl.Deque
Construct myself to be an empty Deque.
Deque(Deque). Constructor for class COM.objectspace.jgl.Deque
Construct myself to be a shallow copy of an existing Deque.
Deque(int). Constructor for class COM.objectspace.jgl.Deque
Construct myself to contain a specified number of null elements.
Deque(int, Object). Constructor for class COM.objectspace.jgl.Deque
Construct myself to contain a specified number of elements set to a particular object.
DequeIterator(). Constructor for class COM.objectspace.jgl.DequeIterator
Construct myself to be an iterator with no associated data structure or position.
DequeIterator(DequeIterator). Constructor for class COM.objectspace.jgl.DequeIterator
Construct myself to be a copy of an existing iterator.
destroy(). Method in class java.lang.Process
Kills the subprocess.
destroy(). Method in class java.lang.Thread
Destroys this thread, without any cleanup.
destroy(). Method in class java.lang.ThreadGroup
Destroys this thread group and all of its subgroups.
detect(Container, UnaryPredicate). Static method in class COM.objectspace.jgl.Finding
Return the first object in a container that satisfies a specified predicate, or null if no such object exists.
detect(ForwardIterator, ForwardIterator, UnaryPredicate). Static method in class COM.objectspace.jgl.Finding
Return the first object in a range that satisfies a specified predicate, or null if no such object exists.
Dictionary(). Constructor for class java.util.Dictionary
difference(HashSet). Method in class COM.objectspace.jgl.HashSet
Return a new HashSet that contains the elements that are in me but not in a specified set.
difference(OrderedSet). Method in class COM.objectspace.jgl.OrderedSet
Return a new OrderedSet that contains the elements that are in me but not in a specified set.
digit(char, int). Static method in class java.lang.Character
Returns the numeric value of the character ch in the specified radix.
disable(). Static method in class java.lang.Compiler
Cause the Compiler to cease operation.
distance(ForwardIterator). Method in class COM.objectspace.jgl.ArrayIterator
Return the distance from myself to another iterator.
distance(ForwardIterator). Method in class COM.objectspace.jgl.BooleanIterator
Return the distance from myself to another iterator.
distance(ForwardIterator). Method in class COM.objectspace.jgl.ByteIterator
Return the distance from myself to another iterator.
distance(ForwardIterator). Method in class COM.objectspace.jgl.CharIterator
Return the distance from myself to another iterator.
distance(ForwardIterator). Method in class COM.objectspace.jgl.DequeIterator
Return the distance from myself to another iterator.
distance(ForwardIterator). Method in class COM.objectspace.jgl.DListIterator
Return the distance from myself to another iterator.
distance(ForwardIterator). Method in class COM.objectspace.jgl.DoubleIterator
Return the distance from myself to another iterator.
distance(ForwardIterator). Method in class COM.objectspace.jgl.FloatIterator
Return the distance from myself to another iterator.
distance(ForwardIterator). Method in interface COM.objectspace.jgl.ForwardIterator
Return the distance from myself to another iterator.
distance(ForwardIterator). Method in class COM.objectspace.jgl.HashMapIterator
Return the distance from myself to another iterator.
distance(ForwardIterator). Method in class COM.objectspace.jgl.HashSetIterator
Return the distance from myself to another iterator.
distance(ForwardIterator). Method in class COM.objectspace.jgl.IntIterator
Return the distance from myself to another iterator.
distance(ForwardIterator). Method in class COM.objectspace.jgl.LongIterator
Return the distance from myself to another iterator.
distance(ForwardIterator). Method in class COM.objectspace.jgl.ObjectIterator
Return the distance from myself to another iterator.
distance(ForwardIterator). Method in class COM.objectspace.jgl.OrderedMapIterator
Return the distance from myself to another iterator.
distance(ForwardIterator). Method in class COM.objectspace.jgl.OrderedSetIterator
Return the distance from myself to another iterator.
distance(ForwardIterator). Method in class COM.objectspace.jgl.ReverseIterator
Return the distance from myself to another iterator.
distance(ForwardIterator). Method in class COM.objectspace.jgl.ShortIterator
Return the distance from myself to another iterator.
distance(ForwardIterator). Method in class COM.objectspace.jgl.SListIterator
Return the distance from myself to another iterator.
distance(ForwardIterator). Method in class COM.objectspace.jgl.VectorIterator
Return the distance from myself to another iterator.
DividesInteger(). Constructor for class COM.objectspace.jgl.DividesInteger
DividesNumber(). Constructor for class COM.objectspace.jgl.DividesNumber
Construct myself to use intValue() for operation.
DividesNumber(Class). Constructor for class COM.objectspace.jgl.DividesNumber
Construct myself to operate on objects of the given class.
DividesNumber(Class, int). Constructor for class COM.objectspace.jgl.DividesNumber
Construct myself to operate on objects of the given class.
DList(). Constructor for class COM.objectspace.jgl.DList
Construct myself to be an empty DList.
DList(DList). Constructor for class COM.objectspace.jgl.DList
Construct myself to be a shallow copy of an existing DList.
DList(int). Constructor for class COM.objectspace.jgl.DList
Construct myself to contain a specified number of null elements.
DList(int, Object). Constructor for class COM.objectspace.jgl.DList
Construct myself to contain a specified number of elements set to a particular object.
DListIterator(). Constructor for class COM.objectspace.jgl.DListIterator
Construct myself to be an iterator with no associated object structure or position.
DListIterator(DListIterator). Constructor for class COM.objectspace.jgl.DListIterator
Construct myself to be a copy of an existing iterator.
Double(double). Constructor for class java.lang.Double
Constructs a newly allocated Double object that represents the primitive double argument.
Double(String). Constructor for class java.lang.Double
Constructs a newly allocated Double object that represents the floating- point value of type double represented by the string.
DoubleArray(). Constructor for class COM.objectspace.jgl.DoubleArray
DoubleArray(double[]). Constructor for class COM.objectspace.jgl.DoubleArray
DoubleArray(DoubleArray). Constructor for class COM.objectspace.jgl.DoubleArray
DoubleIterator(). Constructor for class COM.objectspace.jgl.DoubleIterator
Construct myself to be an iterator with no associated data structure or position.
DoubleIterator(double[], DoubleArray). Constructor for class COM.objectspace.jgl.DoubleIterator
Construct myself to be an iterator positioned at the first element of a specified array.
DoubleIterator(double[], int, DoubleArray). Constructor for class COM.objectspace.jgl.DoubleIterator
Construct myself to be positioned at a particular index of a specific array.
DoubleIterator(DoubleIterator). Constructor for class COM.objectspace.jgl.DoubleIterator
Construct myself to be a copy of an existing iterator.
doubleToLongBits(double). Static method in class java.lang.Double
Returns a representation of the specified floating-point value according to the IEEE 754 floating-point "double format" bit layout.
doubleValue(). Method in class java.lang.Byte
Returns the value of this Byte as a double.
doubleValue(). Method in class java.lang.Double
Returns the double value of this Double.
doubleValue(). Method in class java.lang.Float
Returns the double value of this Float.
doubleValue(). Method in class java.lang.Integer
Returns the value of this Integer as a double.
doubleValue(). Method in class java.lang.Long
Returns the value of this Long as a double.
doubleValue(). Method in class java.lang.Number
Returns the value of the specified number as a double.
doubleValue(). Method in class java.lang.Short
Returns the value of this Short as a double.
DST_OFFSET. Static variable in class java.util.Calendar
Useful constant for date and time.
dumpStack(). Static method in class java.lang.Thread
Prints a stack trace of the current thread.

E

E. Static variable in class java.lang.Math
The double value that is closer than any other to e, the base of the natural logarithms.
edges(). Method in class CH.rubin.matching.GraphBipartiteEqual
returns the number of edges in the graph.
edgesInList. Variable in class CH.rubin.matching.GraphBipartiteEqual
edgesList. Variable in class CH.rubin.matching.GraphBipartiteEqual
For every point x in the dimension X, in edgesInList[x] is stored, how many outgoing edges exists.
elementAt(int). Method in class java.util.Vector
Returns the component at the specified index.
elementCount. Variable in class java.util.Vector
The number of valid components in the vector.
elementData. Variable in class java.util.Vector
The array buffer into which the components of the vector are stored.
elements(). Method in class COM.objectspace.jgl.Array
Return an Enumeration of my components.
elements(). Method in class COM.objectspace.jgl.BooleanArray
Return an Enumeration to my components.
elements(). Method in class COM.objectspace.jgl.ByteArray
Return an Enumeration of my components.
elements(). Method in class COM.objectspace.jgl.CharArray
Return an Enumeration of my components.
elements(). Method in interface COM.objectspace.jgl.Container
Return an Enumeration of the components in this container
elements(). Method in class COM.objectspace.jgl.Deque
Return an Enumeration of my components
elements(). Method in class java.util.Dictionary
Returns an enumeration of the values in this dictionary.
elements(). Method in class COM.objectspace.jgl.DList
Return an Enumeration of my components.
elements(). Method in class COM.objectspace.jgl.DoubleArray
Return an Enumeration of my components.
elements(). Method in class COM.objectspace.jgl.FloatArray
Return an Enumeration of my components.
elements(). Method in class COM.objectspace.jgl.HashMap
Return an Enumeration to my values.
elements(). Method in class COM.objectspace.jgl.HashSet
Return an Enumeration of my objects.
elements(). Method in class java.util.Hashtable
Returns an enumeration of the values in this hashtable.
elements(). Method in class COM.objectspace.jgl.IntArray
Return an Enumeration of my components.
elements(). Method in class COM.objectspace.jgl.LongArray
Return an Enumeration of my components.
elements(). Method in class COM.objectspace.jgl.Map
Return an Enumeration of the components in this container
elements(). Method in class COM.objectspace.jgl.ObjectArray
Return an Enumeration of my elements.
elements(). Method in class COM.objectspace.jgl.OrderedMap
Return an Enumeration of my values
elements(). Method in class COM.objectspace.jgl.OrderedSet
Return an Enumeration of my components.
elements(). Method in class COM.objectspace.jgl.PriorityQueue
Return an Enumeration of my elements.
elements(). Method in class COM.objectspace.jgl.Queue
Return an Enumeration of my components.
elements(). Method in class COM.objectspace.jgl.ShortArray
Return an Enumeration of my components.
elements(). Method in class COM.objectspace.jgl.SList
Return an Enumeration to my components.
elements(). Method in class COM.objectspace.jgl.Stack
Return an Enumeration of my components.
elements(). Method in class java.util.Vector
Returns an enumeration of the components of this vector.
elements(). Method in class COM.objectspace.jgl.VectorArray
Return an Enumeration of my elements.
elements2DMSolutionsBruteForce(). Method in class CH.rubin.matching.GraphBipartiteEqual
Generate an iterator through 2DM solutions.
empty(). Method in class java.util.Stack
Tests if this stack is empty.
EmptyStackException(). Constructor for class java.util.EmptyStackException
Constructs a new EmptyStackException with no detail message.
enable(). Static method in class java.lang.Compiler
Cause the Compiler to resume operation.
ENCLOSING_MARK. Static variable in class java.lang.Character
end. Variable in class COM.objectspace.jgl.Range
The end iterator
end(). Method in class COM.objectspace.jgl.Array
Return an iterator positioned immediately after my last item.
end(). Method in class COM.objectspace.jgl.Deque
Return an iterator positioned immediately after my last item.
end(). Method in class COM.objectspace.jgl.DList
Return an iterator positioned immediately after my last item.
end(). Method in class COM.objectspace.jgl.HashMap
Return an iterator positioned immediately after my last pair.
end(). Method in class COM.objectspace.jgl.HashSet
Return an iterator positioned immediately after my last item.
end(). Method in class COM.objectspace.jgl.OrderedMap
Return an iterator positioned immediately after my last pair.
end(). Method in class COM.objectspace.jgl.OrderedSet
Return an iterator positioned immediately after my last item.
end(). Method in class COM.objectspace.jgl.SList
Return an iterator positioned immediately after my last item.
end(boolean[]). Static method in class COM.objectspace.jgl.BooleanIterator
Return an iterator positioned immediately after the last element of a particular array.
end(boolean[], BooleanArray). Static method in class COM.objectspace.jgl.BooleanIterator
Return an iterator positioned immediately after the last element of a particular array.
end(byte[]). Static method in class COM.objectspace.jgl.ByteIterator
Return an iterator positioned immediately after the last element of a particular array.
end(byte[], ByteArray). Static method in class COM.objectspace.jgl.ByteIterator
Return an iterator positioned immediately after the last element of a particular array.
end(char[]). Static method in class COM.objectspace.jgl.CharIterator
Return an iterator positioned immediately after the last element of a particular array.
end(char[], CharArray). Static method in class COM.objectspace.jgl.CharIterator
Return an iterator positioned immediately after the last element of a particular array.
end(double[], DoubleArray). Static method in class COM.objectspace.jgl.DoubleIterator
Return an iterator positioned immediately after the last element of a particular array.
end(float[]). Static method in class COM.objectspace.jgl.FloatIterator
Return an iterator positioned immediately after the last element of a particular array.
end(float[], FloatArray). Static method in class COM.objectspace.jgl.FloatIterator
Return an iterator positioned immediately after the last element of a particular array.
end(int[]). Static method in class COM.objectspace.jgl.IntIterator
Return an iterator positioned immediately after the last element of a particular array.
end(int[], IntArray). Static method in class COM.objectspace.jgl.IntIterator
Return an iterator positioned immediately after the last element of a particular array.
end(long[]). Static method in class COM.objectspace.jgl.LongIterator
Return an iterator positioned immediately after the last element of a particular array.
end(long[], LongArray). Static method in class COM.objectspace.jgl.LongIterator
Return an iterator positioned immediately after the last element of a particular array.
end(Object[]). Static method in class COM.objectspace.jgl.ObjectIterator
Return an iterator positioned immediately after the last element of a particular array.
end(Object[], ObjectArray). Static method in class COM.objectspace.jgl.ObjectIterator
Return an iterator positioned immediately after the last element of a particular array.
end(short[]). Static method in class COM.objectspace.jgl.ShortIterator
Return an iterator positioned immediately after the last element of a particular array.
end(short[], ShortArray). Static method in class COM.objectspace.jgl.ShortIterator
Return an iterator positioned immediately after the last element of a particular array.
end(Vector). Static method in class COM.objectspace.jgl.VectorIterator
Return an iterator positioned immediately after the last element of a particular java.util.Vector.
end(Vector, VectorArray). Static method in class COM.objectspace.jgl.VectorIterator
Return an iterator positioned immediately after the last element of a particular java.util.Vector.
END_PUNCTUATION. Static variable in class java.lang.Character
endsWith(String). Method in class java.lang.String
Tests if this string ends with the specified suffix.
ENGLISH. Static variable in class java.util.Locale
Useful constant for language.
ensureCapacity(int). Method in class COM.objectspace.jgl.Array
Pre-allocate enough space to hold a specified number of elements.
ensureCapacity(int). Method in class java.lang.StringBuffer
Ensures that the capacity of the buffer is at least equal to the specified minimum.
ensureCapacity(int). Method in class java.util.Vector
Increases the capacity of this vector, if necessary, to ensure that it can hold at least the number of components specified by the minimum capacity argument.
enumerate(Thread[]). Static method in class java.lang.Thread
Copies into the specified array every active thread in this thread group and its subgroups.
enumerate(Thread[]). Method in class java.lang.ThreadGroup
Copies into the specified array every active thread in this thread group and its subgroups.
enumerate(Thread[], boolean). Method in class java.lang.ThreadGroup
Copies into the specified array every active thread in this thread group.
enumerate(ThreadGroup[]). Method in class java.lang.ThreadGroup
Copies into the specified array references to every active subgroup in this thread group.
enumerate(ThreadGroup[], boolean). Method in class java.lang.ThreadGroup
Copies into the specified array references to every active subgroup in this thread group.
equal(Container, Container). Static method in class COM.objectspace.jgl.Comparing
Scan two containers and return true if the containers are the same size and every element in one container matches its counterpart using equals().
equal(float, float). Static method in class CH.rubin.util.Assert
If the two parameters are not equal, the program prints a stack trace and exits with System.exit(1).
equal(InputIterator, InputIterator, InputIterator). Static method in class COM.objectspace.jgl.Comparing
Scan two sequences of the same size and return true if every element in one sequence matches its counterpart using equals().
equal(int, int). Static method in class CH.rubin.util.Assert
If the two parameters are not equal, the program prints a stack trace and exits with System.exit(1).
EqualCollationKey(). Constructor for class COM.objectspace.jgl.EqualCollationKey
Construct a EqualCollationKey function object that uses the collator object for the current default locale to compare operands that are not instances of CollationKey.
EqualCollationKey(Collator). Constructor for class COM.objectspace.jgl.EqualCollationKey
Construct a EqualCollationKey function object that uses the given collator object to compare operands that are not instances of CollationKey.
EqualCollator(). Constructor for class COM.objectspace.jgl.EqualCollator
Construct a EqualCollator function object that uses the collator object for the current default locale to compare objects.
EqualCollator(Collator). Constructor for class COM.objectspace.jgl.EqualCollator
Construct a EqualCollator function object that uses the given collator object to compare objects.
EqualNumber(). Constructor for class COM.objectspace.jgl.EqualNumber
Construct myself to use intValue() for comparisons.
EqualNumber(Class). Constructor for class COM.objectspace.jgl.EqualNumber
Construct myself to compare objects of the given class.
equalRange(Object). Method in class COM.objectspace.jgl.HashMap
Return a range whose first element is an iterator positioned at the first occurence of a specific key and whose second element is an iterator positioned immediately after the last occurence of that key.
equalRange(Object). Method in class COM.objectspace.jgl.HashSet
Return a range whose first element is an iterator positioned at the first occurence of a specific object and whose second element is an iterator positioned immediately after the last occurence of that object.
equalRange(Object). Method in class COM.objectspace.jgl.OrderedMap
Return a pair of iterators whose first element is equal to lowerBound() and whose second element is equal to upperBound().
equalRange(Object). Method in class COM.objectspace.jgl.OrderedSet
Return a pair of iterators whose first element is equal to lowerBound() and whose second element is equal to upperBound().
equals(Array). Method in class COM.objectspace.jgl.Array
Return true if I contain the same items in the same order as another Array.
equals(ArrayIterator). Method in class COM.objectspace.jgl.ArrayIterator
Return true if iterator is positioned at the same element as me.
equals(BooleanArray). Method in class COM.objectspace.jgl.BooleanArray
Return true if I contain the same items in the same order as another BooleanArray.
equals(BooleanIterator). Method in class COM.objectspace.jgl.BooleanIterator
Return true if iterator is positioned at the same element as me.
equals(ByteArray). Method in class COM.objectspace.jgl.ByteArray
Return true if I contain the same items in the same order as another ByteArray.
equals(ByteIterator). Method in class COM.objectspace.jgl.ByteIterator
Return true if iterator is positioned at the same element as me.
equals(CharArray). Method in class COM.objectspace.jgl.CharArray
Return true if I contain the same items in the same order as another CharArray.
equals(CharIterator). Method in class COM.objectspace.jgl.CharIterator
Return true if iterator is positioned at the same element as me.
equals(Deque). Method in class COM.objectspace.jgl.Deque
Return true if I contain the same items in the same order as another Deque.
equals(DequeIterator). Method in class COM.objectspace.jgl.DequeIterator
Return true if iterator is positioned at the same element as me.
equals(DList). Method in class COM.objectspace.jgl.DList
Return true if I contain the same items in the same order as another DList.
equals(DListIterator). Method in class COM.objectspace.jgl.DListIterator
Return true if iterator is positioned at the same element as me.
equals(DoubleArray). Method in class COM.objectspace.jgl.DoubleArray
Return true if I contain the same items in the same order as another DoubleArray.
equals(DoubleIterator). Method in class COM.objectspace.jgl.DoubleIterator
Return true if iterator is positioned at the same element as me.
equals(FloatArray). Method in class COM.objectspace.jgl.FloatArray
Return true if I contain the same items in the same order as another FloatArray.
equals(FloatIterator). Method in class COM.objectspace.jgl.FloatIterator
Return true if iterator is positioned at the same element as me.
equals(Graph2DM). Method in class CH.rubin.matching.Graph2DM
compares two Graph2DM and gives true if they represent the same graph.
equals(HashMap). Method in class COM.objectspace.jgl.HashMap
Return true if I contain exactly the same key/value pairs as another HashMap.
equals(HashMapIterator). Method in class COM.objectspace.jgl.HashMapIterator
Return true if iterator is positioned at the same element as me.
equals(HashMultiMap). Method in class COM.objectspace.jgl.HashMultiMap
Return true if I contain exactly the same key/value pairs as another HashMultiMap.
equals(HashMultiSet). Method in class COM.objectspace.jgl.HashMultiSet
Return true if I contain exactly the same items as another HashMultiSet.
equals(HashSet). Method in class COM.objectspace.jgl.HashSet
Return true if I contain exactly the same items as another HashSet.
equals(HashSetIterator). Method in class COM.objectspace.jgl.HashSetIterator
Return true if iterator is positioned at the same element as me.
equals(IntArray). Method in class COM.objectspace.jgl.IntArray
Return true if I contain the same items in the same order as another IntArray.
equals(IntIterator). Method in class COM.objectspace.jgl.IntIterator
Return true if iterator is positioned at the same element as me.
equals(LongArray). Method in class COM.objectspace.jgl.LongArray
Return true if I contain the same items in the same order as another LongArray.
equals(LongIterator). Method in class COM.objectspace.jgl.LongIterator
Return true if iterator is positioned at the same element as me.
equals(Object). Method in class COM.objectspace.jgl.Array
Return true if I'm equal to another object.
equals(Object). Method in class COM.objectspace.jgl.ArrayAdapter
Compares two Objects for equality.
equals(Object). Method in class COM.objectspace.jgl.ArrayIterator
Return true if a specified object is the same kind of iterator as me and is positioned at the same element.
equals(Object). Method in class java.util.BitSet
Compares this object against the specified object.
equals(Object). Method in class java.lang.Boolean
Returns true if and only if the argument is not null and is a Boolean object that contains the same boolean value as this object.
equals(Object). Method in class COM.objectspace.jgl.BooleanArray
Return true if I'm equal to a specified object.
equals(Object). Method in class COM.objectspace.jgl.BooleanIterator
Return true if a specified object is the same kind of iterator as me and is positioned at the same element.
equals(Object). Method in class java.lang.Byte
Compares this object to the specified object.
equals(Object). Method in class COM.objectspace.jgl.ByteArray
Return true if I'm equal to a specified object.
equals(Object). Method in class COM.objectspace.jgl.ByteIterator
Return true if a specified object is the same kind of iterator as me and is positioned at the same element.
equals(Object). Method in class java.util.Calendar
Compares the time field records.
equals(Object). Method in class java.lang.Character
Compares this object against the specified object.
equals(Object). Method in class COM.objectspace.jgl.CharArray
Return true if I'm equal to a specified object.
equals(Object). Method in class COM.objectspace.jgl.CharIterator
Return true if a specified object is the same kind of iterator as me and is positioned at the same element.
equals(Object). Method in interface COM.objectspace.jgl.Container
Return true if I'm equal to a specified object.
equals(Object). Method in class java.util.Date
Compares two dates.
equals(Object). Method in class COM.objectspace.jgl.Deque
Return true if I'm equal to another object.
equals(Object). Method in class COM.objectspace.jgl.DequeIterator
Return true if a specified object is the same kind of iterator as me and is positioned at the same element.
equals(Object). Method in class COM.objectspace.jgl.DList
Return true if I'm equal to another object.
equals(Object). Method in class COM.objectspace.jgl.DListIterator
Return true if a specified object is the same kind of iterator as me and is positioned at the same element.
equals(Object). Method in class java.lang.Double
Compares this object against the specified object.
equals(Object). Method in class COM.objectspace.jgl.DoubleArray
Return true if I'm equal to a specified object.
equals(Object). Method in class COM.objectspace.jgl.DoubleIterator
Return true if a specified object is the same kind of iterator as me and is positioned at the same element.
equals(Object). Method in class java.lang.Float
Compares this object against some other object.
equals(Object). Method in class COM.objectspace.jgl.FloatArray
Return true if I'm equal to a specified object.
equals(Object). Method in class COM.objectspace.jgl.FloatIterator
Return true if a specified object is the same kind of iterator as me and is positioned at the same element.
equals(Object). Method in class java.util.GregorianCalendar
Overrides Calendar Compares the time field records.
equals(Object). Method in class COM.objectspace.jgl.HashMap
Return true if I'm equal to another object.
equals(Object). Method in class COM.objectspace.jgl.HashMapIterator
Return true if a specified object is the same kind of iterator as me and is positioned at the same element.
equals(Object). Method in class COM.objectspace.jgl.HashMultiMap
Return true if I'm equal to another object.
equals(Object). Method in class COM.objectspace.jgl.HashMultiSet
Return true if I'm equal to another object.
equals(Object). Method in class COM.objectspace.jgl.HashSet
Return true if I'm equal to another object.
equals(Object). Method in class COM.objectspace.jgl.HashSetIterator
Return true if a specified object is the same kind of iterator as me and is positioned at the same element.
equals(Object). Method in class COM.objectspace.jgl.IntArray
Return true if I'm equal to a specified object.
equals(Object). Method in class java.lang.Integer
Compares this object to the specified object.
equals(Object). Method in class COM.objectspace.jgl.IntIterator
Return true if a specified object is the same kind of iterator as me and is positioned at the same element.
equals(Object). Method in class java.util.Locale
Compares two Objects for equality.
equals(Object). Method in class java.lang.Long
Compares this object against the specified object.
equals(Object). Method in class COM.objectspace.jgl.LongArray
Return true if I'm equal to a specified object.
equals(Object). Method in class COM.objectspace.jgl.LongIterator
Return true if a specified object is the same kind of iterator as me and is positioned at the same element.
equals(Object). Method in class COM.objectspace.jgl.Map
Return true if I'm equal to a specified object.
equals(Object). Method in class java.lang.Object
Compares two Objects for equality.
equals(Object). Method in class COM.objectspace.jgl.ObjectArray
Return true if I'm equal to a specified object.
equals(Object). Method in class COM.objectspace.jgl.ObjectIterator
Return true if a specified object is the same kind of iterator as me and is positioned at the same element.
equals(Object). Method in class COM.objectspace.jgl.OrderedMap
Return true if I'm equal to another object.
equals(Object). Method in class COM.objectspace.jgl.OrderedMapIterator
Return true if a specified object is the same kind of iterator as me and is positioned at the same element.
equals(Object). Method in class COM.objectspace.jgl.OrderedMultiMap
Return true if I'm equal to another object.
equals(Object). Method in class COM.objectspace.jgl.OrderedMultiSet
Return true if I'm equal to another object.
equals(Object). Method in class COM.objectspace.jgl.OrderedSet
Return true if I'm equal to another object.
equals(Object). Method in class COM.objectspace.jgl.OrderedSetIterator
Return true if a specified object is the same kind of iterator as me and is positioned at the same element.
equals(Object). Method in class COM.objectspace.jgl.Pair
Compares two Objects for equality.
equals(Object). Method in class COM.objectspace.jgl.PriorityQueue
Return true if object is a PriorityQueue whose underlying sequence is equal to mine.
equals(Object). Method in class COM.objectspace.jgl.Queue
Return true if object is a Queue whose underlying sequence is equal to mine.
equals(Object). Method in class COM.objectspace.jgl.Range
Compares two Objects for equality.
equals(Object). Method in class COM.objectspace.jgl.ReverseIterator
Return true if a specified object is the same kind of iterator as me and is positioned at the same element.
equals(Object). Method in class java.lang.Short
Compares this object to the specified object.
equals(Object). Method in class COM.objectspace.jgl.ShortArray
Return true if I'm equal to a specified object.
equals(Object). Method in class COM.objectspace.jgl.ShortIterator
Return true if a specified object is the same kind of iterator as me and is positioned at the same element.
equals(Object). Method in class java.util.SimpleTimeZone
Compares the equality of two SimpleTimeZone objects.
equals(Object). Method in class COM.objectspace.jgl.SList
Return true if I'm equal to another object.
equals(Object). Method in class COM.objectspace.jgl.SListIterator
Return true if a specified object is the same kind of iterator as me and is positioned at the same element.
equals(Object). Method in class COM.objectspace.jgl.Stack
Return true if object is a Stack whose underlying sequence is equal to mine.
equals(Object). Method in class java.lang.String
Compares this string to the specified object.
equals(Object). Method in class COM.objectspace.jgl.VectorArray
Return true if I'm equal to a specified object.
equals(Object). Method in class COM.objectspace.jgl.VectorIterator
Return true if a specified object is the same kind of iterator as me and is positioned at the same element.
equals(ObjectIterator). Method in class COM.objectspace.jgl.ObjectIterator
Return true if iterator is positioned at the same element as me.
equals(OrderedMap). Method in class COM.objectspace.jgl.OrderedMap
Return true if I contain the same items in the same order as another OrderedMap.
equals(OrderedMapIterator). Method in class COM.objectspace.jgl.OrderedMapIterator
Return true if iterator is positioned at the same element as me.
equals(OrderedMultiMap). Method in class COM.objectspace.jgl.OrderedMultiMap
Return true if I contain the same items in the same order as another OrderedMultiMap.
equals(OrderedMultiSet). Method in class COM.objectspace.jgl.OrderedMultiSet
Return true if I contain the same items in the same order as another OrderedMultiSet.
equals(OrderedSet). Method in class COM.objectspace.jgl.OrderedSet
Return true if I contain the same items in the same order as another OrderedSet.
equals(OrderedSetIterator). Method in class COM.objectspace.jgl.OrderedSetIterator
Return true if iterator is positioned at the same element as me.
equals(Pair). Method in class COM.objectspace.jgl.Pair
equals(PriorityQueue). Method in class COM.objectspace.jgl.PriorityQueue
Return true if a specified PriorityQueue's sequence is equal to mine.
equals(Queue). Method in class COM.objectspace.jgl.Queue
Return true if a Queue's sequence is equal to mine.
equals(Range). Method in class COM.objectspace.jgl.Range
equals(ReverseIterator). Method in class COM.objectspace.jgl.ReverseIterator
Return true if iterator is positioned at the same element as me.
equals(ShortArray). Method in class COM.objectspace.jgl.ShortArray
Return true if I contain the same items in the same order as another ShortArray.
equals(ShortIterator). Method in class COM.objectspace.jgl.ShortIterator
Return true if iterator is positioned at the same element as me.
equals(SList). Method in class COM.objectspace.jgl.SList
Return true if I contain the same items in the same order as another SList.
equals(SListIterator). Method in class COM.objectspace.jgl.SListIterator
Return true if iterator is positioned at the same element as me.
equals(Stack). Method in class COM.objectspace.jgl.Stack
Return true if a specified Stack's sequence is equal to mine.
equals(VectorIterator). Method in class COM.objectspace.jgl.VectorIterator
Return true if iterator is positioned at the same element as me.
equalsIgnoreCase(String). Method in class java.lang.String
Compares this String to another object.
EqualString(). Constructor for class COM.objectspace.jgl.EqualString
EqualTo(). Constructor for class COM.objectspace.jgl.EqualTo
ERA. Static variable in class java.util.Calendar
Useful constant for date and time.
err. Static variable in class java.lang.System
The "standard" error output stream.
Error(). Constructor for class java.lang.Error
Constructs an Error with no specified detail message.
Error(String). Constructor for class java.lang.Error
Constructs an Error with the specified detail message.
EventObject(Object). Constructor for class java.util.EventObject
every(Container, UnaryPredicate). Static method in class COM.objectspace.jgl.Finding
Return true if every object in the container satisfies a particular predicate.
every(ForwardIterator, ForwardIterator, UnaryPredicate). Static method in class COM.objectspace.jgl.Finding
Return true if every object in the specified range satisfies a particular predicate.
Exception(). Constructor for class java.lang.Exception
Constructs an Exception with no specified detail message.
Exception(String). Constructor for class java.lang.Exception
Constructs an Exception with the specified detail message.
ExceptionInInitializerError(). Constructor for class java.lang.ExceptionInInitializerError
Constructs an ExceptionInInitializerError with no detail message.
ExceptionInInitializerError(String). Constructor for class java.lang.ExceptionInInitializerError
Constructs a ExceptionInInitializerError with the specified detail message.
ExceptionInInitializerError(Throwable). Constructor for class java.lang.ExceptionInInitializerError
Constructs a new ExceptionInInitializerError class initialized to the specific throwable
exec(String). Method in class java.lang.Runtime
Executes the specified string command in a separate process.
exec(String, String[]). Method in class java.lang.Runtime
Executes the specified string command in a separate process with the specified environment.
exec(String[]). Method in class java.lang.Runtime
Executes the specified command and arguments in a separate process.
exec(String[], String[]). Method in class java.lang.Runtime
Executes the specified command and arguments in a separate process with the specified environment.
execute(Object). Method in class COM.objectspace.jgl.BindFirst
Perform my binary function on the operand using the predefined value as the 1st parameter and the operand as the 2nd parameter.
execute(Object). Method in class COM.objectspace.jgl.BindFirstPredicate
Perform my binary predicate on the operand using the predefined value as the 1st parameter and the operand as the 2nd parameter.
execute(Object). Method in class COM.objectspace.jgl.BindSecond
Perform my binary function on the operand using the operand as the 1st parameter and the predefined value as the 2nd parameter.
execute(Object). Method in class COM.objectspace.jgl.BindSecondPredicate
Perform my binary predicate on the operand using the operand as the 1st parameter and the predefined value as the 2nd parameter.
execute(Object). Method in class COM.objectspace.jgl.Hash
Return the hash code of my operand as an Integer, or 0 if the operand is null.
execute(Object). Method in class COM.objectspace.jgl.InstanceOf
Test operand for belonging to a specific class.
execute(Object). Method in class COM.objectspace.jgl.LengthString
Return the length of my operand's string as an Integer.
execute(Object). Method in class COM.objectspace.jgl.LogicalNot
Perform a logical NOT.
execute(Object). Method in class COM.objectspace.jgl.NegateInteger
Return the negation of my operand.
execute(Object). Method in class COM.objectspace.jgl.NegateNumber
Return the negation of my operand.
execute(Object). Method in class COM.objectspace.jgl.NegativeInteger
Return true if the operand is less than zero.
execute(Object). Method in class COM.objectspace.jgl.NegativeNumber
Return true if the operand is less than zero.
execute(Object). Method in class COM.objectspace.jgl.PositiveInteger
Return true if the operand is greater than zero.
execute(Object). Method in class COM.objectspace.jgl.PositiveNumber
Return true if the operand is greater than zero.
execute(Object). Method in class COM.objectspace.jgl.Print
Print my operand to my PrintStream.
execute(Object). Method in class COM.objectspace.jgl.SelectFirst
Return the first instance variable of my operand.
execute(Object). Method in class COM.objectspace.jgl.SelectSecond
Return the second instance variable of my operand.
execute(Object). Method in class COM.objectspace.jgl.ToString
Return my argument as a String, or "null" if the operand is null.
execute(Object). Method in class COM.objectspace.jgl.UnaryCompose
Perform my second unary function on the operand and then return the result of applying my first unary function object to this result.
execute(Object). Method in class COM.objectspace.jgl.UnaryComposePredicate
Perform my unary function on the operand and then return the result of applying my predicate function object to this result.
execute(Object). Method in interface COM.objectspace.jgl.UnaryFunction
Return the result of executing with a single Object.
execute(Object). Method in class COM.objectspace.jgl.UnaryNot
Perform my unary predicate on the operand and return true if the predicate returns false.
execute(Object). Method in interface COM.objectspace.jgl.UnaryPredicate
Return the result of executing with a single Object.
execute(Object). Method in class COM.objectspace.jgl.UnaryPredicateFunction
Perform my unary predicate on the operand and return the boolean result as an object.
execute(Object, Object). Method in class COM.objectspace.jgl.BinaryCompose
Perform my unary functions on each operand and then return the result of applying my binary function object to these results.
execute(Object, Object). Method in class COM.objectspace.jgl.BinaryComposePredicate
Perform my unary functions on each operand and then return the result of applying my binary predicate object to these results.
execute(Object, Object). Method in interface COM.objectspace.jgl.BinaryFunction
Return the result of executing with two Object arguments.
execute(Object, Object). Method in class COM.objectspace.jgl.BinaryNot
Perform my binary predicate on the operands and return true if the predicate returns false.
execute(Object, Object). Method in interface COM.objectspace.jgl.BinaryPredicate
Return the result of executing with two Object arguments.
execute(Object, Object). Method in class COM.objectspace.jgl.BinaryPredicateFunction
Perform my binary predicate on the operand and return the boolean result as an object.
execute(Object, Object). Method in class COM.objectspace.jgl.DividesInteger
Return the result of dividing the first operand by the second operand.
execute(Object, Object). Method in class COM.objectspace.jgl.DividesNumber
Return the result of dividing the first operand by the second operand.
execute(Object, Object). Method in class COM.objectspace.jgl.EqualCollationKey
Return true if the first operand is equal to the second operand.
execute(Object, Object). Method in class COM.objectspace.jgl.EqualCollator
Return true if the first operand is equal to the second operand.
execute(Object, Object). Method in class COM.objectspace.jgl.EqualNumber
Return true if the first operand is the same as the second operand.
execute(Object, Object). Method in class COM.objectspace.jgl.EqualString
Return true if the first operand is equal to the second operand.
execute(Object, Object). Method in class COM.objectspace.jgl.EqualTo
Compare two objects for equality.
execute(Object, Object). Method in class COM.objectspace.jgl.GreaterCollationKey
Return true if the first operand is greater than the second operand.
execute(Object, Object). Method in class COM.objectspace.jgl.GreaterCollator
Return true if the first operand is greater than the second operand.
execute(Object, Object). Method in class COM.objectspace.jgl.GreaterEqualCollationKey
Return true if the first operand is greater than or equal to the second operand.
execute(Object, Object). Method in class COM.objectspace.jgl.GreaterEqualCollator
Return true if the first operand is greater than or equal to the second operand.
execute(Object, Object). Method in class COM.objectspace.jgl.GreaterEqualInteger
Return true if the first operand is greater than or equal to the second operand.
execute(Object, Object). Method in class COM.objectspace.jgl.GreaterEqualNumber
Return true if the first operand is greater than or equal to the second operand.
execute(Object, Object). Method in class COM.objectspace.jgl.GreaterEqualString
Return true if the first operand is greater than or equal to the second operand.
execute(Object, Object). Method in class COM.objectspace.jgl.GreaterInteger
Return true if the first operand is greater than the second operand.
execute(Object, Object). Method in class COM.objectspace.jgl.GreaterNumber
Return true if the first operand is greater than the second operand.
execute(Object, Object). Method in class COM.objectspace.jgl.GreaterString
Return true if the first operand is greater than the second operand.
execute(Object, Object). Method in class COM.objectspace.jgl.HashComparator
Compare the operands based on their hash code.
execute(Object, Object). Method in class COM.objectspace.jgl.IdenticalTo
Compare two objects for identity.
execute(Object, Object). Method in class COM.objectspace.jgl.LessCollationKey
Return true if the first operand is less than the second operand.
execute(Object, Object). Method in class COM.objectspace.jgl.LessCollator
Return true if the first operand is less than the second operand.
execute(Object, Object). Method in class COM.objectspace.jgl.LessEqualCollationKey
Return true if the first operand is less than or equal to the second operand.
execute(Object, Object). Method in class COM.objectspace.jgl.LessEqualCollator
Return true if the first operand is less than or equal to the second operand.
execute(Object, Object). Method in class COM.objectspace.jgl.LessEqualInteger
Return true if the first operand is less than or equal to the second operand.
execute(Object, Object). Method in class COM.objectspace.jgl.LessEqualNumber
Return true if the first operand is less than or equal to the second operand.
execute(Object, Object). Method in class COM.objectspace.jgl.LessEqualString
Return true if the first operand is less than or equal to the second operand.
execute(Object, Object). Method in class COM.objectspace.jgl.LessInteger
Return true if the first operand is less than the second operand.
execute(Object, Object). Method in class COM.objectspace.jgl.LessNumber
Return true if the first operand is less than the second operand.
execute(Object, Object). Method in class COM.objectspace.jgl.LessString
Return true if the first operand is less than the second operand.
execute(Object, Object). Method in class COM.objectspace.jgl.LogicalAnd
Perform a logical AND.
execute(Object, Object). Method in class COM.objectspace.jgl.LogicalOr
Perform a logical OR.
execute(Object, Object). Method in class COM.objectspace.jgl.MinusInteger
Return the result of subtracting the second operand from the first operand.
execute(Object, Object). Method in class COM.objectspace.jgl.MinusNumber
Return the result of subtracting the second operand from the first operand.
execute(Object, Object). Method in class COM.objectspace.jgl.ModulusInteger
Return the first operand modulus the second operand.
execute(Object, Object). Method in class COM.objectspace.jgl.ModulusNumber
Return the result of the first operand modulus the second operand.
execute(Object, Object). Method in class COM.objectspace.jgl.NotEqualCollationKey
Return true if the first operand is not equal to the second operand.
execute(Object, Object). Method in class COM.objectspace.jgl.NotEqualCollator
Return true if the first operand is not equal to the second operand.
execute(Object, Object). Method in class COM.objectspace.jgl.NotEqualNumber
Return false if the first operand is equal to the second operand.
execute(Object, Object). Method in class COM.objectspace.jgl.NotEqualString
Return true if the first operand is not equal to the second operand.
execute(Object, Object). Method in class COM.objectspace.jgl.NotEqualTo
Compare two objects for inequality.
execute(Object, Object). Method in class COM.objectspace.jgl.NotIdenticalTo
Compare two objects for non-identity.
execute(Object, Object). Method in class COM.objectspace.jgl.PlusInteger
Return the result of adding the first operand to the second operand.
execute(Object, Object). Method in class COM.objectspace.jgl.PlusNumber
Return the result of adding the first operand to the second operand.
execute(Object, Object). Method in class COM.objectspace.jgl.PlusString
Return the concatenation of the two operands.
execute(Object, Object). Method in class COM.objectspace.jgl.SwappedBinaryPredicate
Swap the order of operands and return the value of my contained predicate.
execute(Object, Object). Method in class COM.objectspace.jgl.TimesInteger
Return the result of multiplying the first operand by the second operand.
execute(Object, Object). Method in class COM.objectspace.jgl.TimesNumber
Return the result of multiplying the first operand by the second operand.
existsEdgeXY(int, int). Method in class CH.rubin.matching.Graph2DM
Test if the edge between x and y exists.
existsEdgeXY(int, int). Method in class CH.rubin.matching.GraphBipartiteEqual
returns true if the edge (x,y) exists in the graph
existsTripleXYZ(int, int, int). Method in class CH.rubin.matching.Graph3DM
checks if the triplets (x,y,z) is within this graph.
exit(int). Method in class java.lang.Runtime
Terminates the currently running Java Virtual Machine.
exit(int). Static method in class java.lang.System
Terminates the currently running Java Virtual Machine.
exitValue(). Method in class java.lang.Process
Returns the exit value for the subprocess.
exp(double). Static method in class java.lang.Math
Returns the exponential number e (i.e., 2.718...) raised to the power of a double value.
expansionAllowed(). Method in class COM.objectspace.jgl.HashMap
Return true if adding an object to myself could result in an expansion of the number of hash buckets I currently use.
expansionAllowed(). Method in class COM.objectspace.jgl.HashSet
Return true if adding an object to myself could result in an expansion of the number of hash buckets I currently use.

F

FALSE. Static variable in class java.lang.Boolean
The Boolean object corresponding to the primitive value false.
FEBRUARY. Static variable in class java.util.Calendar
Useful constant for month.
FIELD_COUNT. Static variable in class java.util.Calendar
Useful constant for date and time.
fields. Variable in class java.util.Calendar
The time fields containing values into which the millis is computed.
fill(Container, Object). Static method in class COM.objectspace.jgl.Filling
Fill a container with a particular value.
fill(ForwardIterator, ForwardIterator, Object). Static method in class COM.objectspace.jgl.Filling
Fill a specified range with a particular value.
fillInStackTrace(). Method in class java.lang.Throwable
Fills in the execution stack trace.
fillN(OutputIterator, int, Object). Static method in class COM.objectspace.jgl.Filling
Assign an object to a number of elements starting at a specified location.
finalize(). Method in class java.lang.Object
Called by the garbage collector on an object when garbage collection determines that there are no more references to the object.
find(Container, Object). Static method in class COM.objectspace.jgl.Finding
Find the first element in a container that matches a particular object using equals().
find(DListIterator, DListIterator, Object). Method in class COM.objectspace.jgl.DList
Return an iterator positioned at the first object within a specified range that matches a particular object, or end() if the object is not found.
find(InputIterator, InputIterator, Object). Static method in class COM.objectspace.jgl.Finding
Find the first element in a sequence that matches a particular object using equals().
find(Object). Method in class COM.objectspace.jgl.DList
Return an iterator positioned at the first object that matches a particular value, or end() if the object is not found.
find(Object). Method in class COM.objectspace.jgl.HashMap
Find the first key/value pair based on its key and return its position.
find(Object). Method in class COM.objectspace.jgl.HashSet
Find an object and return its position.
find(Object). Method in class COM.objectspace.jgl.OrderedMap
Find a key/value pair based on its key and return its position.
find(Object). Method in class COM.objectspace.jgl.OrderedSet
Find an object and return its position.
find(Object). Method in class COM.objectspace.jgl.SList
Return an iterator positioned at the first object that matches a particular value, or end() if the object is not found.
find(SListIterator, SListIterator, Object). Method in class COM.objectspace.jgl.SList
Return an iterator positioned at the first object within a specified range that match a particular object, or end() if the object is not found.
findIf(Container, UnaryPredicate). Static method in class COM.objectspace.jgl.Finding
Find the first element in a container that satisfies a predicate.
findIf(InputIterator, InputIterator, UnaryPredicate). Static method in class COM.objectspace.jgl.Finding
Find the first element in a sequence that satisfies a predicate.
findLoadedClass(String). Method in class java.lang.ClassLoader
findSystemClass(String). Method in class java.lang.ClassLoader
Finds the system class with the specified name, loading it in if necessary.
finish(). Method in class COM.objectspace.jgl.Array
Return an iterator positioned immediately after my last item.
finish(). Method in class COM.objectspace.jgl.BooleanArray
Return an iterator positioned immediately after my last item.
finish(). Method in class COM.objectspace.jgl.ByteArray
Return an iterator positioned immediately after my last item.
finish(). Method in class COM.objectspace.jgl.CharArray
Return an iterator positioned immediately after my last item.
finish(). Method in interface COM.objectspace.jgl.Container
Return an iterator positioned immediately after my last item.
finish(). Method in class COM.objectspace.jgl.Deque
Return an iterator positioned immediately afer my last item.
finish(). Method in class COM.objectspace.jgl.DList
Return an iterator positioned immediately afer my last item.
finish(). Method in class COM.objectspace.jgl.DoubleArray
Return an iterator positioned immediately after my last item.
finish(). Method in class COM.objectspace.jgl.FloatArray
Return an iterator positioned immediately after my last item.
finish(). Method in class COM.objectspace.jgl.HashMap
Return an iterator positioned immediately afer my last pair.
finish(). Method in class COM.objectspace.jgl.HashSet
Return an iterator positioned immediately afer my last item.
finish(). Method in class COM.objectspace.jgl.IntArray
Return an iterator positioned immediately after my last item.
finish(). Method in class COM.objectspace.jgl.LongArray
Return an iterator positioned immediately after my last item.
finish(). Method in class COM.objectspace.jgl.Map
Return an iterator positioned immediately after my last item.
finish(). Method in class COM.objectspace.jgl.ObjectArray
Return an iterator positioned immediately after my last item.
finish(). Method in class COM.objectspace.jgl.OrderedMap
Return an iterator positioned immediately afer my last pair.
finish(). Method in class COM.objectspace.jgl.OrderedSet
Return an iterator positioned immediately afer my last item.
finish(). Method in class COM.objectspace.jgl.PriorityQueue
Return an iterator positioned immediately afer my last item.
finish(). Method in class COM.objectspace.jgl.Queue
Return an iterator positioned immediately afer my last item.
finish(). Method in class COM.objectspace.jgl.ShortArray
Return an iterator positioned immediately after my last item.
finish(). Method in class COM.objectspace.jgl.SList
Return an iterator positioned immediately afer my last item.
finish(). Method in class COM.objectspace.jgl.Stack
Return an iterator positioned immediately afer my last item.
finish(). Method in class COM.objectspace.jgl.VectorArray
Return an iterator positioned immediately after my last item.
first. Variable in class COM.objectspace.jgl.Pair
The first object.
firstElement(). Method in class java.util.Vector
Returns the first component of this vector.
Float(double). Constructor for class java.lang.Float
Constructs a newly allocated Floatobject that represents the argument converted to type float.
Float(float). Constructor for class java.lang.Float
Constructs a newly allocated Float object that represents the primitive float argument.
Float(String). Constructor for class java.lang.Float
Constructs a newly allocated Float object that represents the floating- point value of type float represented by the string.
FloatArray(). Constructor for class COM.objectspace.jgl.FloatArray
FloatArray(float[]). Constructor for class COM.objectspace.jgl.FloatArray
FloatArray(FloatArray). Constructor for class COM.objectspace.jgl.FloatArray
FloatIterator(). Constructor for class COM.objectspace.jgl.FloatIterator
Construct myself to be an iterator with no associated data structure or position.
FloatIterator(float[]). Constructor for class COM.objectspace.jgl.FloatIterator
Construct myself to be an iterator positioned at the first element of a specified array.
FloatIterator(float[], FloatArray). Constructor for class COM.objectspace.jgl.FloatIterator
Construct myself to be an iterator positioned at the first element of a specified array.
FloatIterator(float[], int). Constructor for class COM.objectspace.jgl.FloatIterator
Construct myself to be positioned at a particular index of a specific array.
FloatIterator(float[], int, FloatArray). Constructor for class COM.objectspace.jgl.FloatIterator
Construct myself to be positioned at a particular index of a specific array.
FloatIterator(FloatIterator). Constructor for class COM.objectspace.jgl.FloatIterator
Construct myself to be a copy of an existing iterator.
floatToIntBits(float). Static method in class java.lang.Float
Returns the bit represention of a single-float value.
floatValue(). Method in class java.lang.Byte
Returns the value of this Byte as a float.
floatValue(). Method in class java.lang.Double
Returns the float value of this Double.
floatValue(). Method in class java.lang.Float
Returns the float value of this Float object.
floatValue(). Method in class java.lang.Integer
Returns the value of this Integer as a float.
floatValue(). Method in class java.lang.Long
Returns the value of this Long as a float.
floatValue(). Method in class java.lang.Number
Returns the value of the specified number as a float.
floatValue(). Method in class java.lang.Short
Returns the value of this Short as a float.
floor(double). Static method in class java.lang.Math
Returns the largest (closest to positive infinity) double value that is not greater than the argument and is equal to a mathematical integer.
forDigit(int, int). Static method in class java.lang.Character
Determines the character representation for a specific digit in the specified radix.
forEach(Container, UnaryFunction). Static method in class COM.objectspace.jgl.Applying
Apply a unary function to every element in a container.
forEach(InputIterator, InputIterator, UnaryFunction). Static method in class COM.objectspace.jgl.Applying
Apply a unary function to every element in a specified range.
FORMAT. Static variable in class java.lang.Character
forName(String). Static method in class java.lang.Class
Returns the Class object associated with the class with the given string name.
FRANCE. Static variable in class java.util.Locale
Useful constant for country.
freeMemory(). Method in class java.lang.Runtime
Returns the amount of free memory in the system.
FRENCH. Static variable in class java.util.Locale
Useful constant for language.
FRIDAY. Static variable in class java.util.Calendar
Useful constant for days of week.
front(). Method in class COM.objectspace.jgl.Array
Return my first item.
front(). Method in class COM.objectspace.jgl.ArrayAdapter
Return my first element.
front(). Method in class COM.objectspace.jgl.Deque
Return my first item.
front(). Method in class COM.objectspace.jgl.DList
Return my first item.
front(). Method in class COM.objectspace.jgl.Queue
Return the object at my front.
front(). Method in interface COM.objectspace.jgl.Sequence
Return my first element.
front(). Method in class COM.objectspace.jgl.SList
Return my first item.

G

gc(). Method in class java.lang.Runtime
Runs the garbage collector.
gc(). Static method in class java.lang.System
Runs the garbage collector.
GERMAN. Static variable in class java.util.Locale
Useful constant for language.
GERMANY. Static variable in class java.util.Locale
Useful constant for country.
get(). Method in class COM.objectspace.jgl.ArrayIterator
Return the object at my current position.
get(). Method in interface COM.objectspace.jgl.BidirectionalIterator
Return the object at my current position.
get(). Method in class COM.objectspace.jgl.BooleanIterator
Return the object at my current position.
get(). Method in class COM.objectspace.jgl.ByteIterator
Return the object at my current position.
get(). Method in class COM.objectspace.jgl.CharIterator
Return the object at my current position.
get(). Method in class COM.objectspace.jgl.DequeIterator
Return the object at my current position.
get(). Method in class COM.objectspace.jgl.DListIterator
Return the object at my current position.
get(). Method in class COM.objectspace.jgl.DoubleIterator
Return the object at my current position.
get(). Method in class COM.objectspace.jgl.FloatIterator
Return the object at my current position.
get(). Method in class COM.objectspace.jgl.HashMapIterator
Return the object at my current position.
get(). Method in class COM.objectspace.jgl.HashSetIterator
Return the object at my current position.
get(). Method in interface COM.objectspace.jgl.InputIterator
Return the object at my current position.
get(). Method in class COM.objectspace.jgl.IntIterator
Return the object at my current position.
get(). Method in class COM.objectspace.jgl.LongIterator
Return the object at my current position.
get(). Method in class COM.objectspace.jgl.ObjectIterator
Return the object at my current position.
get(). Method in class COM.objectspace.jgl.OrderedMapIterator
Return the object at my current position.
get(). Method in class COM.objectspace.jgl.OrderedSetIterator
Return the object at my current position.
get(). Method in class COM.objectspace.jgl.ReverseIterator
Return the object at my current position.
get(). Method in class COM.objectspace.jgl.ShortIterator
Return the object at my current position.
get(). Method in class COM.objectspace.jgl.SListIterator
Return the object at my current position.
get(). Method in class COM.objectspace.jgl.VectorIterator
Return the object at my current position.
get(int). Method in class COM.objectspace.jgl.ArrayIterator
Return the object that is a specified distance from my current position.
get(int). Method in interface COM.objectspace.jgl.BidirectionalIterator
Return the object that is a specified distance from my current position.
get(int). Method in class java.util.BitSet
Gets a bit.
get(int). Method in class COM.objectspace.jgl.BooleanIterator
Return the object that is a specified distance from my current position.
get(int). Method in class COM.objectspace.jgl.ByteIterator
Return the object that is a specified distance from my current position.
get(int). Method in class java.util.Calendar
Gets the value for a given time field.
get(int). Method in class COM.objectspace.jgl.CharIterator
Return the object that is a specified distance from my current position.
get(int). Method in class COM.objectspace.jgl.DequeIterator
Return the object that is a specified distance from my current position.
get(int). Method in class COM.objectspace.jgl.DListIterator
Return the object that is a specified distance from my current position.
get(int). Method in class COM.objectspace.jgl.DoubleIterator
Return the object that is a specified distance from my current position.
get(int). Method in class COM.objectspace.jgl.FloatIterator
Return the object that is a specified distance from my current position.
get(int). Method in class COM.objectspace.jgl.IntIterator
Return the object that is a specified distance from my current position.
get(int). Method in class COM.objectspace.jgl.LongIterator
Return the object that is a specified distance from my current position.
get(int). Method in class COM.objectspace.jgl.ObjectIterator
Return the object that is a specified distance from my current position.
get(int). Method in class COM.objectspace.jgl.OrderedMapIterator
Return the object that is a specified distance from my current position.
get(int). Method in class COM.objectspace.jgl.OrderedSetIterator
Return the object that is a specified distance from my current position.
get(int). Method in class COM.objectspace.jgl.ReverseIterator
Return the object that is a specified distance from my current position.
get(int). Method in class COM.objectspace.jgl.ShortIterator
Return the object that is a specified distance from my current position.
get(int). Method in class COM.objectspace.jgl.VectorIterator
Return the object that is a specified distance from my current position.
get(Object). Method in class java.util.Dictionary
Returns the value to which the key is mapped in this dictionary.
get(Object). Method in class COM.objectspace.jgl.HashMap
Return the value associated with key, or null if the key does not exist.
get(Object). Method in class COM.objectspace.jgl.HashSet
Return the first object that matches the given object, or null if no match exists.
get(Object). Method in class java.util.Hashtable
Returns the value to which the specified key is mapped in this hashtable.
get(Object). Method in class COM.objectspace.jgl.OrderedMap
Return the value associated with key, or null if the key does not exist.
get(Object). Method in class COM.objectspace.jgl.OrderedSet
Return the first object that matches the given object, or null if no match exists.
get(Object). Method in interface COM.objectspace.jgl.Set
Return the first object that matches the given object, or null if no match exists.
get3DMSolutionC2(long). Method in class CH.rubin.matching.Triplets
Get a 3DM solution using random search.
get3DMSolutionCa(long). Method in class CH.rubin.matching.Triplets
Get a 3DM solution using random search.
get3DMSolutionPF(long). Method in class CH.rubin.matching.Triplets
Get a 3DM solution using random search.
getAll2DMSolutionsBruteForce(). Method in class CH.rubin.matching.GraphBipartiteEqual
Generate all 2DM solutions.
getAll3DMSolutionsBruteForce(). Method in class CH.rubin.matching.Triplets
Get all 3DM solutions using brute force method.
getAll3DMSolutionsBruteForce(long). Method in class CH.rubin.matching.Triplets
Get all 3DM solutions using brute force method.
getAvailableIDs(). Static method in class java.util.TimeZone
Gets all the available IDs supported.
getAvailableIDs(int). Static method in class java.util.TimeZone
Gets the available IDs according to the given time zone offset.
getAvailableLocales(). Static method in class java.util.Calendar
Gets the set of locales for which Calendars are installed.
getBoolean(String). Static method in class java.lang.Boolean
Returns is true if and only if the system property named by the argument exists and is equal to the string "true".
getBundle(String). Static method in class java.util.ResourceBundle
Get the appropriate ResourceBundle subclass.
getBundle(String, Locale). Static method in class java.util.ResourceBundle
Get the appropriate ResourceBundle subclass.
getBytes(). Method in class java.lang.String
Convert this String into bytes according to the platform's default character encoding, storing the result into a new byte array.
getBytes(int, int, byte[], int). Method in class java.lang.String
Copies characters from this string into the destination byte array.
getBytes(String). Method in class java.lang.String
Convert this String into bytes according to the specified character encoding, storing the result into a new byte array.
getChars(int, int, char[], int). Method in class java.lang.String
Copies characters from this string into the destination character array.
getChars(int, int, char[], int). Method in class java.lang.StringBuffer
Characters are copied from this string buffer into the destination character array dst.
getClass(). Method in class java.lang.Object
Returns the runtime class of an object.
getClassContext(). Method in class java.lang.SecurityManager
Returns the current execution stack as an array of classes.
getClasses(). Method in class java.lang.Class
Returns an array containing Class objects representing all the public classes and interfaces that are members of the class represented by this Class object.
getClassLoader(). Method in class java.lang.Class
Determines the class loader for the class.
getClassName(). Method in class java.util.MissingResourceException
Gets parameter passed by constructor.
getComparator(). Method in class COM.objectspace.jgl.HashMap
Return my comparator.
getComparator(). Method in class COM.objectspace.jgl.HashSet
Return my comparator.
getComparator(). Method in class COM.objectspace.jgl.OrderedMap
Return my comparator.
getComparator(). Method in class COM.objectspace.jgl.OrderedSet
Return my comparator.
getComponentType(). Method in class java.lang.Class
If this class represents an array type, returns the Class object representing the component type of the array; otherwise returns null.
getConstructor(Class[]). Method in class java.lang.Class
Returns a Constructor object that reflects the specified public constructor of the class represented by this Class object.
getConstructors(). Method in class java.lang.Class
Returns an array containing Constructor objects reflecting all the public constructors of the class represented by this Class object.
getContainer(). Method in class COM.objectspace.jgl.ArrayIterator
Return my associated array.
getContainer(). Method in class COM.objectspace.jgl.BooleanIterator
Return my associated container.
getContainer(). Method in class COM.objectspace.jgl.ByteIterator
Return my associated container.
getContainer(). Method in class COM.objectspace.jgl.CharIterator
Return null for my associated Container since none needs to exist.
getContainer(). Method in class COM.objectspace.jgl.DequeIterator
Return my associated container.
getContainer(). Method in class COM.objectspace.jgl.DListIterator
Return my associated container.
getContainer(). Method in class COM.objectspace.jgl.DoubleIterator
Return null for my associated Container since none needs to exist.
getContainer(). Method in class COM.objectspace.jgl.FloatIterator
Return null for my associated Container since none needs to exist.
getContainer(). Method in interface COM.objectspace.jgl.ForwardIterator
Return my associated container.
getContainer(). Method in class COM.objectspace.jgl.HashMapIterator
Return my associated container.
getContainer(). Method in class COM.objectspace.jgl.HashSetIterator
Return my associated HashSet
getContainer(). Method in class COM.objectspace.jgl.IntIterator
Return null for my associated Container since none needs to exist.
getContainer(). Method in class COM.objectspace.jgl.LongIterator
Return null for my associated Container since none needs to exist.
getContainer(). Method in class COM.objectspace.jgl.ObjectIterator
Return null for my associated Container since none needs to exist.
getContainer(). Method in class COM.objectspace.jgl.OrderedMapIterator
Return my associated container.
getContainer(). Method in class COM.objectspace.jgl.OrderedSetIterator
Return my associated container.
getContainer(). Method in class COM.objectspace.jgl.ReverseIterator
Return my associated container via my BidirectionalIterator.
getContainer(). Method in class COM.objectspace.jgl.ShortIterator
Return null for my associated Container since none needs to exist.
getContainer(). Method in class COM.objectspace.jgl.SListIterator
Return my associated SList.
getContainer(). Method in class COM.objectspace.jgl.VectorIterator
Return null for my associated Container since java.util.Vector isn't in the JGL hierarchy (but should be ;-)
getContents(). Method in class java.util.ListResourceBundle
See class description.
getCount(). Method in class COM.objectspace.jgl.Benchmark
Return the number of times I've been started/restarted.
getCountry(). Method in class java.util.Locale
Getter for programmatic name of field, an uppercased two-letter ISO-3166 code.
getDate(). Method in class java.util.Date
Returns the day of the month represented by this date.
getDay(). Method in class java.util.Date
Returns the day of the week represented by this date.
getDeclaredClasses(). Method in class java.lang.Class
Returns an array of Class objects reflecting all the classes and interfaces declared as members of the class represented by this Class object.
getDeclaredConstructor(Class[]). Method in class java.lang.Class
Returns a Constructor object that reflects the specified declared constructor of the class or interface represented by this Class object.
getDeclaredConstructors(). Method in class java.lang.Class
Returns an array of Constructor objects reflecting all the constructors declared by the class represented by this Class object.
getDeclaredField(String). Method in class java.lang.Class
Returns a Field object that reflects the specified declared field of the class or interface represented by this Class object.
getDeclaredFields(). Method in class java.lang.Class
Returns an array of Field objects reflecting all the fields declared by the class or interface represented by this Class object.
getDeclaredMethod(String, Class[]). Method in class java.lang.Class
Returns a Method object that reflects the specified declared method of the class or interface represented by this Class object.
getDeclaredMethods(). Method in class java.lang.Class
Returns an array of Method objects reflecting all the methods declared by the class or interface represented by this Class object.
getDeclaringClass(). Method in class java.lang.Class
If the class or interface represented by this Class object is a member of another class, returns the Class object representing the class of which it is a member (its declaring class).
getDefault(). Static method in class java.util.Locale
Common method of getting the current default Locale.
getDefault(). Static method in class java.util.TimeZone
Gets the default TimeZone for this host.
getDisplayCountry(). Method in class java.util.Locale
Getter for display of field to user.
getDisplayCountry(Locale). Method in class java.util.Locale
Getter for display of field to user.
getDisplayLanguage(). Method in class java.util.Locale
Getter for display of field to user.
getDisplayLanguage(Locale). Method in class java.util.Locale
Getter for display of field to user.
getDisplayName(). Method in class java.util.Locale
Getter for display of the entire locale to user.
getDisplayName(Locale). Method in class java.util.Locale
Getter for display of the entire locale to user.
getDisplayVariant(). Method in class java.util.Locale
Getter for display of field to user.
getDisplayVariant(Locale). Method in class java.util.Locale
Getter for display of field to user If the localized name is not found, returns the variant code.
getDouble(double). Static method in class COM.objectspace.jgl.Randomizer
Generate a random number using the default generator.
getDouble(double, double). Static method in class COM.objectspace.jgl.Randomizer
Generate a random number using the default generator.
getenv(String). Static method in class java.lang.System
Gets an environment variable.
getErrorStream(). Method in class java.lang.Process
Gets the error stream of the subprocess.
getException(). Method in class java.lang.ExceptionInInitializerError
Returns the exception that occurred during a static initialization that caused this Error to be created.
getField(String). Method in class java.lang.Class
Returns a Field object that reflects the specified public member field of the class or interface represented by this Class object.
getFields(). Method in class java.lang.Class
Returns an array containing Field objects reflecting all the accessible public fields of the class or interface represented by this Class object.
getFirstDayOfWeek(). Method in class java.util.Calendar
Gets what the first day of the week is; e.g., Sunday in US, Monday in France.
getFloat(float). Static method in class COM.objectspace.jgl.Randomizer
Generate a random number using the default generator.
getFloat(float, float). Static method in class COM.objectspace.jgl.Randomizer
Generate a random number using the default generator.
getGreatestMinimum(int). Method in class java.util.Calendar
Gets the highest minimum value for the given field if varies.
getGreatestMinimum(int). Method in class java.util.GregorianCalendar
Returns highest minimum value for the given field if varies.
getGregorianChange(). Method in class java.util.GregorianCalendar
Gets the Gregorian Calendar change date.
getHours(). Method in class java.util.Date
Returns the hour represented by this date.
getID(). Method in class java.util.TimeZone
Gets the ID of this time zone.
getInCheck(). Method in class java.lang.SecurityManager
Tests if there is a security check in progress.
getInputStream(). Method in class java.lang.Process
Gets the input stream of the subprocess.
getInstance(). Static method in class java.util.Calendar
Gets a Calendar using the default timezone and locale.
getInstance(Locale). Static method in class java.util.Calendar
Gets a Calendar using the default timezone and given locale.
getInstance(TimeZone). Static method in class java.util.Calendar
Gets a Calendar using the given timezone and default locale.
getInstance(TimeZone, Locale). Static method in class java.util.Calendar
Gets a Calendar using the given timezone and given locale.
getInt(int). Static method in class COM.objectspace.jgl.Randomizer
Generate a random number using the default generator.
getInt(int, int). Static method in class COM.objectspace.jgl.Randomizer
Generate a random number using the default generator.
getInteger(String). Static method in class java.lang.Integer
Determines the integer value of the system property with the specified name.
getInteger(String, int). Static method in class java.lang.Integer
Determines the integer value of the system property with the specified name.
getInteger(String, Integer). Static method in class java.lang.Integer
Determines the integer value of the system property with the specified name.
getInterfaces(). Method in class java.lang.Class
Determines the interfaces implemented by the class or interface represented by this object.
getISO3Country(). Method in class java.util.Locale
Getter for the three-letter ISO country abbreviation of the locale.
getISO3Language(). Method in class java.util.Locale
Getter for the three-letter ISO language abbreviation of the locale.
getKey(). Method in class java.util.MissingResourceException
Gets parameter passed by constructor.
getKeys(). Method in class java.util.ListResourceBundle
Implementation of ResourceBundle.getKeys.
getKeys(). Method in class java.util.PropertyResourceBundle
Implementation of ResourceBundle.getKeys.
getKeys(). Method in class java.util.ResourceBundle
Return an enumeration of the keys.
getLanguage(). Method in class java.util.Locale
Getter for programmatic name of field, an lowercased two-letter ISO-639 code.
getLeastMaximum(int). Method in class java.util.Calendar
Gets the lowest maximum value for the given field if varies.
getLeastMaximum(int). Method in class java.util.GregorianCalendar
Returns lowest maximum value for the given field if varies.
getLoadRatio(). Method in class COM.objectspace.jgl.HashMap
Return my load ratio.
getLoadRatio(). Method in class COM.objectspace.jgl.HashSet
Return my load ratio.
getLocalizedInputStream(InputStream). Method in class java.lang.Runtime
Creates a localized version of an input stream.
getLocalizedMessage(). Method in class java.lang.Throwable
Creates a localized description of this Throwable.
getLocalizedOutputStream(OutputStream). Method in class java.lang.Runtime
Creates a localized version of an output stream.
getLong(long). Static method in class COM.objectspace.jgl.Randomizer
Generate a random number using the default generator.
getLong(long, long). Static method in class COM.objectspace.jgl.Randomizer
Generate a random number using the default generator.
getLong(String). Static method in class java.lang.Long
Determines the long value of the system property with the specified name.
getLong(String, long). Static method in class java.lang.Long
Determines the long value of the system property with the specified name.
getLong(String, Long). Static method in class java.lang.Long
Determines the long value of the system property with the specified name.
getMaximum(int). Method in class java.util.Calendar
Gets the maximum value for the given time field.
getMaximum(int). Method in class java.util.GregorianCalendar
Returns maximum value for the given field.
getMaxPriority(). Method in class java.lang.ThreadGroup
Returns the maximum priority of this thread group.
getMessage(). Method in class java.lang.Throwable
Returns the detail message of this throwable object.
getMethod(String, Class[]). Method in class java.lang.Class
Returns a Method object that reflects the specified public member method of the class or interface represented by this Class object.
getMethods(). Method in class java.lang.Class
Returns an array containing Method objects reflecting all the public member methods of the class or interface represented by this Class object, including those declared by the class or interface and and those inherited from superclasses and superinterfaces.
getMilliseconds(). Method in class COM.objectspace.jgl.Benchmark
Return the current number of milliseconds on the benchmark clock.
getMinimalDaysInFirstWeek(). Method in class java.util.Calendar
Gets what the minimal days required in the first week of the year are; e.g., if the first week is defined as one that contains the first day of the first month of a year, getMinimalDaysInFirstWeek returns 1.
getMinimum(int). Method in class java.util.Calendar
Gets the minimum value for the given time field.
getMinimum(int). Method in class java.util.GregorianCalendar
Returns minimum value for the given field.
getMinutes(). Method in class java.util.Date
Returns the number of minutes past the hour represented by this date.
getModifiers(). Method in class java.lang.Class
Returns the Java language modifiers for this class or interface, encoded in an integer.
getMonth(). Method in class java.util.Date
Returns the month represented by this date.
getName(). Method in class java.lang.Class
Returns the fully-qualified name of the type (class, interface, array, or primitive) represented by this Class object, as a String.
getName(). Method in class java.lang.Thread
Returns this thread's name.
getName(). Method in class java.lang.ThreadGroup
Returns the name of this thread group.
getNumericValue(char). Static method in class java.lang.Character
Returns the Unicode numeric value of the character as a nonnegative integer.
getObject(String). Method in class java.util.ResourceBundle
Get an object from a ResourceBundle.
getOffset(int, int, int, int, int, int). Method in class java.util.SimpleTimeZone
Overrides TimeZone Gets offset, for current date, modified in case of daylight savings.
getOffset(int, int, int, int, int, int). Method in class java.util.TimeZone
Gets the time zone offset, for current date, modified in case of daylight savings.
getOutputStream(). Method in class java.lang.Process
Gets the output stream of the subprocess.
getParent(). Method in class java.lang.ThreadGroup
Returns the parent of this thread group.
getPriority(). Method in class java.lang.Thread
Returns this thread's priority.
getProperties(). Static method in class java.lang.System
Determines the current system properties.
getProperty(String). Method in class java.util.Properties
Searches for the property with the specified key in this property list.
getProperty(String). Static method in class java.lang.System
Gets the system property indicated by the specified key.
getProperty(String, String). Method in class java.util.Properties
Searches for the property with the specified key in this property list.
getProperty(String, String). Static method in class java.lang.System
Gets the system property indicated by the specified key.
getRandom2DM(). Method in class CH.rubin.matching.GraphBipartiteEqual
Search a random bipartite matching using augmenting path algorithm, if no matching exists, return a graph containing 0 points
getRawOffset(). Method in class java.util.SimpleTimeZone
Overrides TimeZone Gets the GMT offset for this time zone.
getRawOffset(). Method in class java.util.TimeZone
Gets unmodified offset, NOT modified in case of daylight savings.
getResource(String). Method in class java.lang.Class
getResource(String). Method in class java.lang.ClassLoader
Find a resource with a given name.
getResourceAsStream(String). Method in class java.lang.Class
Find a resource with a given name.
getResourceAsStream(String). Method in class java.lang.ClassLoader
Get an InputStream on a given resource.
getRuntime(). Static method in class java.lang.Runtime
Returns the runtime object associated with the current Java application.
getSeconds(). Method in class java.util.Date
Returns the number of seconds past the minute represented by this date.
getSecurityContext(). Method in class java.lang.SecurityManager
Creates an object that encapsulates the current execution environment.
getSecurityManager(). Static method in class java.lang.System
Gets the system security interface.
getSigners(). Method in class java.lang.Class
Get the signers of this class.
getSource(). Method in class java.util.EventObject
getString(String). Method in class java.util.ResourceBundle
Get an object from a ResourceBundle.
getStringArray(String). Method in class java.util.ResourceBundle
Get an object from a ResourceBundle.
getSuperclass(). Method in class java.lang.Class
If this object represents any class other than the class Object, then the object that represents the superclass of that class is returned.
getSystemResource(String). Static method in class java.lang.ClassLoader
Find a resource with a given name.
getSystemResourceAsStream(String). Static method in class java.lang.ClassLoader
Get an InputStream on a given resource..
getThreadGroup(). Method in class java.lang.SecurityManager
Returns the thread group into which to instantiate any new thread being created at the time this is being called.
getThreadGroup(). Method in class java.lang.Thread
Returns this thread's thread group.
getTime(). Method in class java.util.Calendar
Gets this Calendar's current time.
getTime(). Method in class java.util.Date
Returns the number of milliseconds since January 1, 1970, 00:00:00 GMT represented by this date.
getTimeInMillis(). Method in class java.util.Calendar
Gets this Calendar's current time as a long.
getTimeZone(). Method in class java.util.Calendar
Gets the time zone.
getTimeZone(String). Static method in class java.util.TimeZone
Gets the TimeZone for the given ID.
getTimezoneOffset(). Method in class java.util.Date
Returns the local time-zone offset.
getTitle(). Method in class COM.objectspace.jgl.Benchmark
Return my title.
getType(char). Static method in class java.lang.Character
Returns a value indicating a character category.
getVariant(). Method in class java.util.Locale
Getter for programmatic name of field.
getYear(). Method in class java.util.Date
Returns the year represented by this date, minus 1900.
Graph2DM(int). Constructor for class CH.rubin.matching.Graph2DM
Constructs an empty bipartite graph.
Graph2DM(int[]). Constructor for class CH.rubin.matching.Graph2DM
Constructs a bipartite matching graph.
Graph3DM(Graph3DM). Constructor for class CH.rubin.matching.Graph3DM
Constructs a graph which is a shallow copy of an existing Graph3DM
Graph3DM(int). Constructor for class CH.rubin.matching.Graph3DM
Constructs an empty graph which can become a tripartite matching graph by adding edges with setTripleXYZ(x,y,z)
GraphBipartiteEqual(int). Constructor for class CH.rubin.matching.GraphBipartiteEqual
An graph with 2* points points is generated, without any edges.
GraphBipartiteEqual(int, int). Constructor for class CH.rubin.matching.GraphBipartiteEqual
A random graph with edges edges and points points is generated using a random function; beware that if the same edge is generated multiple times, it is only once in the graph.
GraphBipartiteEqual(int, int, long). Constructor for class CH.rubin.matching.GraphBipartiteEqual
A random graph with at most edges edges and points points is generated.
GreaterCollationKey(). Constructor for class COM.objectspace.jgl.GreaterCollationKey
Construct a GreaterCollationKey function object that uses the collator object for the current default locale to compare objects.
GreaterCollationKey(Collator). Constructor for class COM.objectspace.jgl.GreaterCollationKey
Construct a GreaterCollationKey function object that uses the given collator object to compare objects.
GreaterCollator(). Constructor for class COM.objectspace.jgl.GreaterCollator
Construct a GreaterCollator function object that uses the collator object for the current default locale to compare objects.
GreaterCollator(Collator). Constructor for class COM.objectspace.jgl.GreaterCollator
Construct a GreaterCollator function object that uses the given collator object to compare objects.
GreaterEqualCollationKey(). Constructor for class COM.objectspace.jgl.GreaterEqualCollationKey
Construct a GreaterEqualCollationKey function object that uses the collator object for the current default locale to compare objects.
GreaterEqualCollationKey(Collator). Constructor for class COM.objectspace.jgl.GreaterEqualCollationKey
Construct a GreaterEqualCollationKey function object that uses the given collator object to compare objects.
GreaterEqualCollator(). Constructor for class COM.objectspace.jgl.GreaterEqualCollator
Construct a GreaterEqualCollator function object that uses the collator object for the current default locale to compare objects.
GreaterEqualCollator(Collator). Constructor for class COM.objectspace.jgl.GreaterEqualCollator
Construct a GreaterEqualCollator function object that uses the given collator object to compare objects.
GreaterEqualInteger(). Constructor for class COM.objectspace.jgl.GreaterEqualInteger
GreaterEqualNumber(). Constructor for class COM.objectspace.jgl.GreaterEqualNumber
Construct myself to use intValue() for comparisons.
GreaterEqualNumber(Class). Constructor for class COM.objectspace.jgl.GreaterEqualNumber
Construct myself to compare objects of the given class.
GreaterEqualString(). Constructor for class COM.objectspace.jgl.GreaterEqualString
GreaterInteger(). Constructor for class COM.objectspace.jgl.GreaterInteger
GreaterNumber(). Constructor for class COM.objectspace.jgl.GreaterNumber
Construct myself to use intValue() for comparisons.
GreaterNumber(Class). Constructor for class COM.objectspace.jgl.GreaterNumber
Construct myself to compare objects of the given class.
GreaterString(). Constructor for class COM.objectspace.jgl.GreaterString
GregorianCalendar(). Constructor for class java.util.GregorianCalendar
Constructs a default GregorianCalendar using the current time in the default time zone with the default locale.
GregorianCalendar(int, int, int). Constructor for class java.util.GregorianCalendar
Constructs a GregorianCalendar with the given date set in the default time zone with the default locale.
GregorianCalendar(int, int, int, int, int). Constructor for class java.util.GregorianCalendar
Constructs a GregorianCalendar with the given date and time set for the default time zone with the default locale.
GregorianCalendar(int, int, int, int, int, int). Constructor for class java.util.GregorianCalendar
Constructs a GregorianCalendar with the given date and time set for the default time zone with the default locale.
GregorianCalendar(Locale). Constructor for class java.util.GregorianCalendar
Constructs a GregorianCalendar based on the current time in the default time zone with the given locale.
GregorianCalendar(TimeZone). Constructor for class java.util.GregorianCalendar
Constructs a GregorianCalendar based on the current time in the given time zone with the default locale.
GregorianCalendar(TimeZone, Locale). Constructor for class java.util.GregorianCalendar
Constructs a GregorianCalendar based on the current time in the given time zone with the given locale.

H

handleGetObject(String). Method in class java.util.ListResourceBundle
Override of ResourceBundle, same semantics
handleGetObject(String). Method in class java.util.PropertyResourceBundle
Override of ResourceBundle, same semantics
handleGetObject(String). Method in class java.util.ResourceBundle
Get an object from a ResourceBundle.
hasChanged(). Method in class java.util.Observable
Tests if this object has changed.
Hash(). Constructor for class COM.objectspace.jgl.Hash
hashCode(). Method in class COM.objectspace.jgl.Array
Return my hash code for support of hashing containers
hashCode(). Method in class COM.objectspace.jgl.ArrayAdapter
Return my hash code for support of hashing containers
hashCode(). Method in class java.util.BitSet
Gets the hashcode.
hashCode(). Method in class java.lang.Boolean
Returns a hash code for this Boolean.
hashCode(). Method in class java.lang.Byte
Returns a hashcode for this Byte.
hashCode(). Method in class java.lang.Character
Returns a hash code for this Character.
hashCode(). Method in class java.util.Date
Returns a hash code value for this object.
hashCode(). Method in class COM.objectspace.jgl.Deque
Return my hash code for support of hashing containers
hashCode(). Method in class COM.objectspace.jgl.DList
Return my hash code for support of hashing containers
hashCode(). Method in class java.lang.Double
Returns a hashcode for this Double.
hashCode(). Method in class java.lang.Float
Returns a hashcode for this Float.
hashCode(). Method in class CH.rubin.matching.Graph2DM
a hashCode of the graph; actually the hashcode of IntArray is used.
hashCode(). Method in class java.util.GregorianCalendar
Override hashCode.
hashCode(). Method in class COM.objectspace.jgl.HashMap
Return my hash code for support of hashing containers
hashCode(). Method in class COM.objectspace.jgl.HashSet
Return my hash code for support of hashing containers
hashCode(). Method in class java.lang.Integer
Returns a hashcode for this Integer.
hashCode(). Method in class java.util.Locale
Override hashCode.
hashCode(). Method in class java.lang.Long
Computes a hashcode for this Long.
hashCode(). Method in class java.lang.Object
Returns a hash code value for the object.
hashCode(). Method in class COM.objectspace.jgl.OrderedMap
Return my hash code for support of hashing containers
hashCode(). Method in class COM.objectspace.jgl.OrderedSet
Return my hash code for support of hashing containers
hashCode(). Method in class COM.objectspace.jgl.Pair
Return my hash code.
hashCode(). Method in class COM.objectspace.jgl.PriorityQueue
Return my hash code for support of hashing containers
hashCode(). Method in class COM.objectspace.jgl.Queue
Return my hash code for support of hashing containers
hashCode(). Method in class java.lang.Short
Returns a hashcode for this Short.
hashCode(). Method in class java.util.SimpleTimeZone
Override hashCode.
hashCode(). Method in class COM.objectspace.jgl.SList
Return my hash code for support of hashing containers
hashCode(). Method in class COM.objectspace.jgl.Stack
Return my hash code for support of hashing containers
hashCode(). Method in class java.lang.String
Returns a hashcode for this string.
HashComparator(). Constructor for class COM.objectspace.jgl.HashComparator
Hashing(). Constructor for class COM.objectspace.jgl.Hashing
HashMap(). Constructor for class COM.objectspace.jgl.HashMap
Construct myself to be an empty HashMap that compares key using equals() and does not allow duplicates.
HashMap(BinaryPredicate). Constructor for class COM.objectspace.jgl.HashMap
Construct myself to be an empty HashMap that compares keys using the specified binary predicate and does not allow duplicates.
HashMap(BinaryPredicate, boolean). Constructor for class COM.objectspace.jgl.HashMap
Construct myself to be an empty HashMap that compares keys using the specified binary predicate and conditionally allows duplicates.
HashMap(BinaryPredicate, boolean, int, float). Constructor for class COM.objectspace.jgl.HashMap
Construct myself to be an empty HashMap that compares keys using the specified binary predicate and conditionally allows duplicates.
HashMap(BinaryPredicate, int, float). Constructor for class COM.objectspace.jgl.HashMap
Construct myself to be an empty HashMap that compares keys using the specified binary predicate.
HashMap(boolean). Constructor for class COM.objectspace.jgl.HashMap
Construct myself to be an empty HashMap that compares keys using equals() and conditionally allows duplicates.
HashMap(HashMap). Constructor for class COM.objectspace.jgl.HashMap
Construct myself to be a shallow copy of an existing HashMap.
HashMapIterator(). Constructor for class COM.objectspace.jgl.HashMapIterator
Construct myself to be an iterator with no associated data structure or position.
HashMapIterator(HashMapIterator). Constructor for class COM.objectspace.jgl.HashMapIterator
Construct myself to be a copy of an existing iterator.
HashMultiMap(). Constructor for class COM.objectspace.jgl.HashMultiMap
Construct myself to be an empty HashMultiMap that compares key using equals().
HashMultiMap(BinaryPredicate). Constructor for class COM.objectspace.jgl.HashMultiMap
Construct myself to be an empty HashMultiMap that compares keys using the specified binary predicate.
HashMultiMap(BinaryPredicate, int, float). Constructor for class COM.objectspace.jgl.HashMultiMap
Construct myself to be an empty HashMultiMap that compares keys using the specified binary predicate.
HashMultiMap(HashMultiMap). Constructor for class COM.objectspace.jgl.HashMultiMap
Construct myself to be a shallow copy of an existing HashMultiMap.
HashMultiSet(). Constructor for class COM.objectspace.jgl.HashMultiSet
Construct myself to be an empty HashMultiSet that compares objects using equals().
HashMultiSet(BinaryPredicate). Constructor for class COM.objectspace.jgl.HashMultiSet
Construct myself to be an empty HashMultiSet that compares objects using the specified binary predicate.
HashMultiSet(BinaryPredicate, int, float). Constructor for class COM.objectspace.jgl.HashMultiSet
Construct myself to be an empty HashMultiSet that compares objects using the specified binary predicate.
HashMultiSet(HashMultiSet). Constructor for class COM.objectspace.jgl.HashMultiSet
Construct myself to be a shallow copy of an existing HashMultiSet.
HashSet(). Constructor for class COM.objectspace.jgl.HashSet
Construct myself to be an empty HashSet that compares objects using equals() and does not allow duplicates.
HashSet(BinaryPredicate). Constructor for class COM.objectspace.jgl.HashSet
Construct myself to be an empty HashSet that compares objects using the specified binary predicate and does not allow duplicates.
HashSet(BinaryPredicate, boolean). Constructor for class COM.objectspace.jgl.HashSet
Construct myself to be an empty HashSet that compares objects using the specified binary predicate and conditionally allows duplicates.
HashSet(BinaryPredicate, boolean, int, float). Constructor for class COM.objectspace.jgl.HashSet
Construct myself to be an empty HashSet that compares objects using the specified binary predicate and conditionally allows duplicates.
HashSet(BinaryPredicate, int, float). Constructor for class COM.objectspace.jgl.HashSet
Construct myself to be an empty HashSet that compares objects using the specified binary predicate and conditionally allows duplicates.
HashSet(boolean). Constructor for class COM.objectspace.jgl.HashSet
Construct myself to be an empty HashSet that compares objects using equals() and that conditionally allows duplicates.
HashSet(HashSet). Constructor for class COM.objectspace.jgl.HashSet
Construct myself to be a shallow copy of an existing HashSet.
HashSetIterator(). Constructor for class COM.objectspace.jgl.HashSetIterator
Construct myself to be an iterator with no associated data structure or position.
HashSetIterator(HashSetIterator). Constructor for class COM.objectspace.jgl.HashSetIterator
Construct myself to be a copy of an existing iterator.
Hashtable(). Constructor for class java.util.Hashtable
Constructs a new, empty hashtable with a default capacity and load factor.
Hashtable(int). Constructor for class java.util.Hashtable
Constructs a new, empty hashtable with the specified initial capacity and default load factor.
Hashtable(int, float). Constructor for class java.util.Hashtable
Constructs a new, empty hashtable with the specified initial capacity and the specified load factor.
hasMoreElements(). Method in class COM.objectspace.jgl.ArrayIterator
Return true if there are more elements in my input stream.
hasMoreElements(). Method in class COM.objectspace.jgl.BooleanIterator
Return true if there are more elements in my input stream.
hasMoreElements(). Method in class COM.objectspace.jgl.ByteIterator
Return true if there are more elements in my input stream.
hasMoreElements(). Method in class COM.objectspace.jgl.CharIterator
Return true if there are more elements in my input stream.
hasMoreElements(). Method in class COM.objectspace.jgl.DequeIterator
Return true if there are more elements in my input stream.
hasMoreElements(). Method in class COM.objectspace.jgl.DListIterator
Return true if there are more elements in my input stream.
hasMoreElements(). Method in class COM.objectspace.jgl.DoubleIterator
Return true if there are more elements in my input stream.
hasMoreElements(). Method in interface java.util.Enumeration
Tests if this enumeration contains more elements.
hasMoreElements(). Method in class COM.objectspace.jgl.FloatIterator
Return true if there are more elements in my input stream.
hasMoreElements(). Method in class COM.objectspace.jgl.HashMapIterator
Return true if there are more elements in my input stream.
hasMoreElements(). Method in class COM.objectspace.jgl.HashSetIterator
Return true if there are more elements in my input stream.
hasMoreElements(). Method in class COM.objectspace.jgl.IntIterator
Return true if there are more elements in my input stream.
hasMoreElements(). Method in class COM.objectspace.jgl.LongIterator
Return true if there are more elements in my input stream.
hasMoreElements(). Method in class COM.objectspace.jgl.ObjectIterator
Return true if there are more elements in my input stream.
hasMoreElements(). Method in class COM.objectspace.jgl.OrderedMapIterator
Return true if there are more elements in my input stream.
hasMoreElements(). Method in class COM.objectspace.jgl.OrderedSetIterator
Return true if there are more elements in my input stream.
hasMoreElements(). Method in class COM.objectspace.jgl.ReverseIterator
Return true if there are more elements in my input stream.
hasMoreElements(). Method in class COM.objectspace.jgl.ShortIterator
Return true if there are more elements in my input stream.
hasMoreElements(). Method in class COM.objectspace.jgl.SListIterator
Return true if there are more elements in my input stream.
hasMoreElements(). Method in class java.util.StringTokenizer
Returns the same value as the hasMoreTokens method.
hasMoreElements(). Method in class COM.objectspace.jgl.VectorIterator
Return true if there are more elements in my input stream.
hasMoreTokens(). Method in class java.util.StringTokenizer
Tests if there are more tokens available from this tokenizer's string.
HOUR. Static variable in class java.util.Calendar
Useful constant for date and time.
HOUR_OF_DAY. Static variable in class java.util.Calendar
Useful constant for date and time.

I

IdenticalTo(). Constructor for class COM.objectspace.jgl.IdenticalTo
identityHashCode(Object). Static method in class java.lang.System
Returns the same hashcode for the given object as would be returned by the default method hashCode(), whether or not the given object's class overrides hashCode().
IEEEremainder(double, double). Static method in class java.lang.Math
Computes the remainder operation on two arguments as prescribed by the IEEE 754 standard.
IllegalAccessError(). Constructor for class java.lang.IllegalAccessError
Constructs an IllegalAccessError with no detail message.
IllegalAccessError(String). Constructor for class java.lang.IllegalAccessError
Constructs an IllegalAccessError with the specified detail message.
IllegalAccessException(). Constructor for class java.lang.IllegalAccessException
Constructs an IllegalAccessException without a detail message.
IllegalAccessException(String). Constructor for class java.lang.IllegalAccessException
Constructs an IllegalAccessException with a detail message.
IllegalArgumentException(). Constructor for class java.lang.IllegalArgumentException
Constructs an IllegalArgumentException with no detail message.
IllegalArgumentException(String). Constructor for class java.lang.IllegalArgumentException
Constructs an IllegalArgumentException with the specified detail message.
IllegalMonitorStateException(). Constructor for class java.lang.IllegalMonitorStateException
Constructs an IllegalMonitorStateException with no detail message.
IllegalMonitorStateException(String). Constructor for class java.lang.IllegalMonitorStateException
Constructs an IllegalMonitorStateException with the specified detail message.
IllegalStateException(). Constructor for class java.lang.IllegalStateException
Constructs an IllegalStateException with no detail message.
IllegalStateException(String). Constructor for class java.lang.IllegalStateException
Constructs an IllegalStateException with the specified detail message.
IllegalThreadStateException(). Constructor for class java.lang.IllegalThreadStateException
Constructs an IllegalThreadStateException with no detail message.
IllegalThreadStateException(String). Constructor for class java.lang.IllegalThreadStateException
Constructs an IllegalThreadStateException with the specified detail message.
in. Static variable in class java.lang.System
The "standard" input stream.
inCheck. Variable in class java.lang.SecurityManager
This field is true if there is a security check in progress; false otherwise.
inClass(String). Method in class java.lang.SecurityManager
Tests if the specified String is in this Class.
inClassLoader(). Method in class java.lang.SecurityManager
Tests if the current ClassLoader is equal to null.
includes(Container, Container, BinaryPredicate). Static method in class COM.objectspace.jgl.OrderedSetOperations
Return true if every element in the second container is also in the first.
includes(Container, Container, BinaryPredicate). Static method in class COM.objectspace.jgl.SetOperations
Return true if every element in the second container is also in the first.
includes(InputIterator, InputIterator, InputIterator, InputIterator). Static method in class COM.objectspace.jgl.OrderedSetOperations
Return true if every element in the first sequence is also in the second.
includes(InputIterator, InputIterator, InputIterator, InputIterator). Static method in class COM.objectspace.jgl.SetOperations
Return true if every element in the first sequence is also in the second.
includes(InputIterator, InputIterator, InputIterator, InputIterator, BinaryPredicate). Static method in class COM.objectspace.jgl.OrderedSetOperations
Return true if every element in the second sequence is also in the first.
includes(InputIterator, InputIterator, InputIterator, InputIterator, BinaryPredicate). Static method in class COM.objectspace.jgl.SetOperations
Return true if every element in the second sequence is also in the first.
IncompatibleClassChangeError(). Constructor for class java.lang.IncompatibleClassChangeError
Constructs an IncompatibleClassChangeError with no detail message.
IncompatibleClassChangeError(String). Constructor for class java.lang.IncompatibleClassChangeError
Constructs an IncompatibleClassChangeError with the specified detail message.
inDaylightTime(Date). Method in class java.util.SimpleTimeZone
Overrides TimeZone Queries if the given date is in Daylight Savings Time.
inDaylightTime(Date). Method in class java.util.TimeZone
Queries if the given date is in Daylight Savings Time in this time zone.
index(). Method in class COM.objectspace.jgl.ArrayIterator
Return my current index.
index(). Method in class COM.objectspace.jgl.BooleanIterator
Return my current index.
index(). Method in class COM.objectspace.jgl.ByteIterator
Return my current index.
index(). Method in class COM.objectspace.jgl.CharIterator
Return my current index.
index(). Method in class COM.objectspace.jgl.DequeIterator
Return my current index.
index(). Method in class COM.objectspace.jgl.DListIterator
Return my current index.
index(). Method in class COM.objectspace.jgl.DoubleIterator
Return my current index.
index(). Method in class COM.objectspace.jgl.FloatIterator
Return my current index.
index(). Method in class COM.objectspace.jgl.IntIterator
Return my current index.
index(). Method in class COM.objectspace.jgl.LongIterator
Return my current index.
index(). Method in class COM.objectspace.jgl.ObjectIterator
Return my current index.
index(). Method in interface COM.objectspace.jgl.RandomAccessIterator
Return the index of my current position.
index(). Method in class COM.objectspace.jgl.ShortIterator
Return my current index.
index(). Method in class COM.objectspace.jgl.SListIterator
Return my current index.
index(). Method in class COM.objectspace.jgl.VectorIterator
Return my current index.
indexOf(int). Method in class java.lang.String
Returns the index within this string of the first occurrence of the specified character.
indexOf(int, int). Method in class java.lang.String
Returns the index within this string of the first occurrence of the specified character, starting the search at the specified index.
indexOf(int, int, Object). Method in class COM.objectspace.jgl.Array
Return the index of the first object within a range of indices that match a particular object, or -1 if the object is not found.
indexOf(int, int, Object). Method in class COM.objectspace.jgl.ArrayAdapter
Return an index positioned at the first object within a specified range that matches a particular object, or -1 if the object is not found.
indexOf(int, int, Object). Method in class COM.objectspace.jgl.Deque
Return the index of the first object within a range of indices that match a particular object, or -1 if the object is not found.
indexOf(int, int, Object). Method in class COM.objectspace.jgl.DList
Return an iterator positioned at the first object within a specified range that matches a particular object, or -1 if the object is not found.
indexOf(int, int, Object). Method in interface COM.objectspace.jgl.Sequence
Return an iterator positioned at the first object within a specified range that matches a particular object, or -1 if the object is not found.
indexOf(int, int, Object). Method in class COM.objectspace.jgl.SList
Return the index of the first object within a specified range that match a particular object, or -1 if the object is not found.
indexOf(Object). Method in class COM.objectspace.jgl.Array
Return the index of the first object that matches a particular value, or -1 if the object is not found.
indexOf(Object). Method in class COM.objectspace.jgl.ArrayAdapter
Return the index of the first object that matches a particular value, or -1 if the object is not found.
indexOf(Object). Method in class COM.objectspace.jgl.Deque
Return the index of the first object that matches a particular value, or -1 if the object is not found.
indexOf(Object). Method in class COM.objectspace.jgl.DList
Return the index of the first object that matches a particular value, or -1 if the object is not found.
indexOf(Object). Method in interface COM.objectspace.jgl.Sequence
Return the index of the first object that matches a particular value, or -1 if the object is not found.
indexOf(Object). Method in class COM.objectspace.jgl.SList
Return the index of the first object that matches a particular value, or -1 if the object is not found.
indexOf(Object). Method in class java.util.Vector
Searches for the first occurence of the given argument, testing for equality using the equals method.
indexOf(Object, int). Method in class java.util.Vector
Searches for the first occurence of the given argument, beginning the search at index, and testing for equality using the equals method.
indexOf(String). Method in class java.lang.String
Returns the index within this string of the first occurrence of the specified substring.
indexOf(String, int). Method in class java.lang.String
Returns the index within this string of the first occurrence of the specified substring, starting at the specified index.
IndexOutOfBoundsException(). Constructor for class java.lang.IndexOutOfBoundsException
Constructs an IndexOutOfBoundsException with no detail message.
IndexOutOfBoundsException(String). Constructor for class java.lang.IndexOutOfBoundsException
Constructs an IndexOutOfBoundsException with the specified detail message.
initialPoints. Variable in class CH.rubin.matching.GraphBipartiteEqual
holds the number of points per dimension
inject(Container, Object, BinaryFunction). Static method in class COM.objectspace.jgl.Applying
Inject a container with a binary function and an initial value.
inject(ForwardIterator, ForwardIterator, Object, BinaryFunction). Static method in class COM.objectspace.jgl.Applying
Inject a specified range with a binary function and an initial value.
insert(ArrayIterator, ForwardIterator, ForwardIterator). Method in class COM.objectspace.jgl.Array
Insert a sequence of objects at a particular location.
insert(ArrayIterator, int, Object). Method in class COM.objectspace.jgl.Array
Insert multiple objects at a particular position.
insert(ArrayIterator, Object). Method in class COM.objectspace.jgl.Array
Insert an object at a particular position and return an iterator positioned at the new element.
insert(DequeIterator, BidirectionalIterator, BidirectionalIterator). Method in class COM.objectspace.jgl.Deque
Insert a sequence of objects at a particular location.
insert(DequeIterator, int, Object). Method in class COM.objectspace.jgl.Deque
Insert multiple objects at a particular position.
insert(DequeIterator, Object). Method in class COM.objectspace.jgl.Deque
Insert an object at a particular position and return an iterator positioned at the new element.
insert(DListIterator, InputIterator, InputIterator). Method in class COM.objectspace.jgl.DList
Insert a sequence of objects at a particular location.
insert(DListIterator, int, Object). Method in class COM.objectspace.jgl.DList
Insert multiple objects at a particular position.
insert(DListIterator, Object). Method in class COM.objectspace.jgl.DList
Insert an object at a particular position and return an iterator positioned at the new element.
insert(int, BidirectionalIterator, BidirectionalIterator). Method in class COM.objectspace.jgl.Deque
Insert a sequence of objects at a particular index.
insert(int, boolean). Method in class java.lang.StringBuffer
Inserts the string representation of the boolean argument into this string buffer.
insert(int, char). Method in class java.lang.StringBuffer
Inserts the string representation of the char argument into this string buffer.
insert(int, char[]). Method in class java.lang.StringBuffer
Inserts the string representation of the char array argument into this string buffer.
insert(int, double). Method in class java.lang.StringBuffer
Inserts the string representation of the double argument into this string buffer.
insert(int, float). Method in class java.lang.StringBuffer
Inserts the string representation of the float argument into this string buffer.
insert(int, ForwardIterator, ForwardIterator). Method in class COM.objectspace.jgl.Array
Insert a sequence of objects at a particular index.
insert(int, int). Method in class java.lang.StringBuffer
Inserts the string representation of the second int argument into this string buffer.
insert(int, int, Object). Method in class COM.objectspace.jgl.Array
Insert multiple objects at a particular index.
insert(int, int, Object). Method in class COM.objectspace.jgl.Deque
Insert multiple objects at a particular index.
insert(int, int, Object). Method in class COM.objectspace.jgl.DList
Insert multiple objects at a particular index.
insert(int, int, Object). Method in class COM.objectspace.jgl.SList
Insert multiple objects at a particular index.
insert(int, long). Method in class java.lang.StringBuffer
Inserts the string representation of the long argument into this string buffer.
insert(int, Object). Method in class COM.objectspace.jgl.Array
Insert an object at a particular index.
insert(int, Object). Method in class COM.objectspace.jgl.Deque
Insert an object at a particular index and return an iterator positioned at the new element.
insert(int, Object). Method in class COM.objectspace.jgl.DList
Insert an object at a particular index.
insert(int, Object). Method in class COM.objectspace.jgl.SList
Insert an object at a particular index.
insert(int, Object). Method in class java.lang.StringBuffer
Inserts the string representation of the Object argument into this string buffer.
insert(int, String). Method in class java.lang.StringBuffer
Inserts the string into this string buffer.
insert(SListIterator, InputIterator, InputIterator). Method in class COM.objectspace.jgl.SList
Insert a sequence of objects at a particular location.
insert(SListIterator, int, Object). Method in class COM.objectspace.jgl.SList
Insert multiple objects at a particular position.
insert(SListIterator, Object). Method in class COM.objectspace.jgl.SList
Insert an object at a particular position and return an iterator positioned at the new element.
insertEdgeXY(int, int). Method in class CH.rubin.matching.Graph2DM
Insert an edge between the points x and y.
insertElementAt(Object, int). Method in class java.util.Vector
Inserts the specified object as a component in this vector at the specified index.
InsertIterator(Container). Constructor for class COM.objectspace.jgl.InsertIterator
Construct myself so that current( object ) inserts the object into a container using add().
InsertIterator(InsertIterator). Constructor for class COM.objectspace.jgl.InsertIterator
Construct myself to be a copy of the specified iterator.
InstanceOf(Class). Constructor for class COM.objectspace.jgl.InstanceOf
Construct myself to perform the equivalent of the instanceof operator for the given class.
InstantiationError(). Constructor for class java.lang.InstantiationError
Constructs an InstantiationError with no detail message.
InstantiationError(String). Constructor for class java.lang.InstantiationError
Constructs an InstantiationError with the specified detail message.
InstantiationException(). Constructor for class java.lang.InstantiationException
Constructs an InstantiationException with no detail message.
InstantiationException(String). Constructor for class java.lang.InstantiationException
Constructs an InstantiationException with the specified detail message.
IntArray(). Constructor for class COM.objectspace.jgl.IntArray
IntArray(int[]). Constructor for class COM.objectspace.jgl.IntArray
IntArray(IntArray). Constructor for class COM.objectspace.jgl.IntArray
intBitsToFloat(int). Static method in class java.lang.Float
Returns the single-float corresponding to a given bit represention.
Integer(int). Constructor for class java.lang.Integer
Constructs a newly allocated Integer object that represents the primitive int argument.
Integer(String). Constructor for class java.lang.Integer
Constructs a newly allocated Integer object that represents the value represented by the string.
INTEGRITY_CHECK. Static variable in class CH.rubin.matching.Constants
perform some integrity check to detect programming errors.
intern(). Method in class java.lang.String
Returns a canonical representation for the string object.
InternalError(). Constructor for class java.lang.InternalError
Constructs an InternalError with no detail message.
InternalError(String). Constructor for class java.lang.InternalError
Constructs an InternalError with the specified detail message.
internalGet(int). Method in class java.util.Calendar
Gets the value for a given time field.
interrupt(). Method in class java.lang.Thread
Interrupts this thread.
interrupted(). Static method in class java.lang.Thread
Tests if the current thread has been interrupted.
InterruptedException(). Constructor for class java.lang.InterruptedException
Constructs an InterruptedException with no detail message.
InterruptedException(String). Constructor for class java.lang.InterruptedException
Constructs an InterruptedException with the specified detail message.
intersection(HashSet). Method in class COM.objectspace.jgl.HashSet
Return a new HashSet that contains the elements that are both in me and in a specified set.
intersection(OrderedSet). Method in class COM.objectspace.jgl.OrderedSet
Return a new OrderedSet that contains the elements that are both in me and in a specified set.
IntIterator(). Constructor for class COM.objectspace.jgl.IntIterator
Construct myself to be an iterator with no associated data structure or position.
IntIterator(int[]). Constructor for class COM.objectspace.jgl.IntIterator
Construct myself to be an iterator positioned at the first element of a specified array.
IntIterator(int[], int). Constructor for class COM.objectspace.jgl.IntIterator
Construct myself to be positioned at a particular index of a specific int[].
IntIterator(int[], int, IntArray). Constructor for class COM.objectspace.jgl.IntIterator
Construct myself to be positioned at a particular index of a specific int[].
IntIterator(int[], IntArray). Constructor for class COM.objectspace.jgl.IntIterator
Construct myself to be an iterator positioned at the first element of a specified array.
IntIterator(IntIterator). Constructor for class COM.objectspace.jgl.IntIterator
Construct myself to be a copy of an existing iterator.
intValue(). Method in class java.lang.Byte
Returns the value of this Byte as an int.
intValue(). Method in class java.lang.Double
Returns the integer value of this Double (by casting to an int).
intValue(). Method in class java.lang.Float
Returns the integer value of this Float (by casting to an int).
intValue(). Method in class java.lang.Integer
Returns the value of this Integer as an int.
intValue(). Method in class java.lang.Long
Returns the value of this Long as an int.
intValue(). Method in class java.lang.Number
Returns the value of the specified number as an int.
intValue(). Method in class java.lang.Short
Returns the value of this Short as an int.
InvalidOperationException(). Constructor for class COM.objectspace.jgl.InvalidOperationException
Constructs a InvalidOperationException with no detail message.
InvalidOperationException(String). Constructor for class COM.objectspace.jgl.InvalidOperationException
Constructs a InvalidOperationException with the specified detail message.
isAlive(). Method in class java.lang.Thread
Tests if this thread is alive.
isArray(). Method in class java.lang.Class
If this Class object represents an array type, returns true, otherwise returns false.
isAssignableFrom(Class). Method in class java.lang.Class
Determines if the class or interface represented by this Class object is either the same as, or is a superclass or superinterface of, the class or interface represented by the specified Class parameter.
isDaemon(). Method in class java.lang.Thread
Tests if this thread is a daemon thread.
isDaemon(). Method in class java.lang.ThreadGroup
Tests if this thread group is a daemon thread group.
isDefined(char). Static method in class java.lang.Character
Determines if a character has a defined meaning in Unicode.
isDestroyed(). Method in class java.lang.ThreadGroup
Tests if this thread group has been destroyed.
isDigit(char). Static method in class java.lang.Character
Determines if the specified character is a digit.
isEmpty(). Method in class COM.objectspace.jgl.Array
Return true if I contain no entries.
isEmpty(). Method in class COM.objectspace.jgl.ArrayAdapter
Return true if I contain no objects.
isEmpty(). Method in interface COM.objectspace.jgl.Container
Return true if I contain no objects.
isEmpty(). Method in class COM.objectspace.jgl.Deque
Return true if I contain no entries.
isEmpty(). Method in class java.util.Dictionary
Tests if this dictionary maps no keys to value.
isEmpty(). Method in class COM.objectspace.jgl.DList
Return true if I contain no entries.
isEmpty(). Method in class COM.objectspace.jgl.HashMap
Return true if I contain no entries.
isEmpty(). Method in class COM.objectspace.jgl.HashSet
Return true if I contain no entries.
isEmpty(). Method in class java.util.Hashtable
Tests if this hashtable maps no keys to values.
isEmpty(). Method in class COM.objectspace.jgl.Map
Return true if I contain no objects.
isEmpty(). Method in class COM.objectspace.jgl.OrderedMap
Return true if I contain no entries.
isEmpty(). Method in class COM.objectspace.jgl.OrderedSet
Return true if I contain no entries.
isEmpty(). Method in class COM.objectspace.jgl.PriorityQueue
Return true if I contain no objects.
isEmpty(). Method in class COM.objectspace.jgl.Queue
Return true if I contain no objects.
isEmpty(). Method in class COM.objectspace.jgl.SList
Return true if I contain no entries.
isEmpty(). Method in class COM.objectspace.jgl.Stack
Return true if I contain no objects.
isEmpty(). Method in class java.util.Vector
Tests if this vector has no components.
isIdentifierIgnorable(char). Static method in class java.lang.Character
Determines if the specified character should be regarded as an ignorable character in a Java identifier or a Unicode identifier.
isInfinite(). Method in class java.lang.Double
Returns true if this Double value is infinitely large in magnitude.
isInfinite(). Method in class java.lang.Float
Returns true if this Float value is infinitely large in magnitude.
isInfinite(double). Static method in class java.lang.Double
Returns true if the specified number is infinitely large in magnitude.
isInfinite(float). Static method in class java.lang.Float
Returns true if the specified number is infinitely large in magnitude.
isInstance(Object). Method in class java.lang.Class
This method is the dynamic equivalent of the Java language instanceof operator.
isInterface(). Method in class java.lang.Class
Determines if the specified Class object represents an interface type.
isInterrupted(). Method in class java.lang.Thread
Tests if the current thread has been interrupted.
isISOControl(char). Static method in class java.lang.Character
Determines if the specified character is an ISO control character.
isJavaIdentifierPart(char). Static method in class java.lang.Character
Determines if the specified character may be part of a Java identifier as other than the first character.
isJavaIdentifierStart(char). Static method in class java.lang.Character
Determines if the specified character is permissible as the first character in a Java identifier.
isJavaLetter(char). Static method in class java.lang.Character
Determines if the specified character is a "Java" letter, that is, the character is permissible as the first character in an identifier in the Java language.
isJavaLetterOrDigit(char). Static method in class java.lang.Character
Determines if the specified character is a "Java" letter or digit, that is, the character is permissible as a non-initial character in an identifier in the Java language.
isLeapYear(int). Method in class java.util.GregorianCalendar
Determines if the given year is a leap year.
isLenient(). Method in class java.util.Calendar
Tell whether date/time interpretation is to be lenient.
isLetter(char). Static method in class java.lang.Character
Determines if the specified character is a letter.
isLetterOrDigit(char). Static method in class java.lang.Character
Determines if the specified character is a letter or digit.
isLowerCase(char). Static method in class java.lang.Character
Determines if the specified character is a lowercase character.
isNaN(). Method in class java.lang.Double
Returns true if this Double value is the special Not-a-Number (NaN) value.
isNaN(). Method in class java.lang.Float
Returns true if this Float value is Not-a-Number (NaN).
isNaN(double). Static method in class java.lang.Double
Returns true if the specified number is the special Not-a-Number (NaN) value.
isNaN(float). Static method in class java.lang.Float
Returns true if the specified number is the special Not-a-Number (NaN) value.
isPrimitive(). Method in class java.lang.Class
Determines if the specified Class object represents a primitive Java type.
isSet. Variable in class java.util.Calendar
The flags which tell if a specified time field for the calendar is set.
isSet(int). Method in class java.util.Calendar
Determines if the given time field has a value set.
isSpace(char). Static method in class java.lang.Character
Determines if the specified character is ISO-LATIN-1 white space.
isSpaceChar(char). Static method in class java.lang.Character
Determines if the specified character is a Unicode space character.
isTimeSet. Variable in class java.util.Calendar
The flag which indicates if the current time is set for the calendar.
isTitleCase(char). Static method in class java.lang.Character
Determines if the specified character is a titlecase character.
isUnicodeIdentifierPart(char). Static method in class java.lang.Character
Determines if the specified character may be part of a Unicode identifier as other than the first character.
isUnicodeIdentifierStart(char). Static method in class java.lang.Character
Determines if the specified character is permissible as the first character in a Unicode identifier.
isUpperCase(char). Static method in class java.lang.Character
Determines if the specified character is an uppercase character.
isWhitespace(char). Static method in class java.lang.Character
Determines if the specified character is white space according to Java.
ITALIAN. Static variable in class java.util.Locale
Useful constant for language.
ITALY. Static variable in class java.util.Locale
Useful constant for country.
iterSwap(ForwardIterator, ForwardIterator). Static method in class COM.objectspace.jgl.Swapping
Swap the objects referenced by two iterators.

J

JANUARY. Static variable in class java.util.Calendar
Useful constant for month.
JAPAN. Static variable in class java.util.Locale
Useful constant for country.
JAPANESE. Static variable in class java.util.Locale
Useful constant for language.
join(). Method in class java.lang.Thread
Waits for this thread to die.
join(long). Method in class java.lang.Thread
Waits at most millis milliseconds for this thread to die.
join(long, int). Method in class java.lang.Thread
Waits at most millis milliseconds plus nanos nanoseconds for this thread to die.
JULY. Static variable in class java.util.Calendar
Useful constant for month.
JUNE. Static variable in class java.util.Calendar
Useful constant for month.

K

KEY. Static variable in class COM.objectspace.jgl.HashMapIterator
KEY. Static variable in class COM.objectspace.jgl.OrderedMapIterator
key(). Method in class COM.objectspace.jgl.HashMapIterator
Return the key of my current key/value pair.
key(). Method in class COM.objectspace.jgl.OrderedMapIterator
Return the key of my current key/value pair.
keys(). Method in class java.util.Dictionary
Returns an enumeration of the keys in this dictionary.
keys(). Method in class COM.objectspace.jgl.HashMap
Return an Enumeration of all my keys.
keys(). Method in class java.util.Hashtable
Returns an enumeration of the keys in this hashtable.
keys(). Method in class COM.objectspace.jgl.OrderedMap
Return an Enumeration of all my keys.
keys(Object). Method in class COM.objectspace.jgl.HashMap
Return an Enumeration of all my keys that are associated with a particular value.
keys(Object). Method in class COM.objectspace.jgl.Map
Return an Enumeration of all my keys that are associated with a particular value.
keys(Object). Method in class COM.objectspace.jgl.OrderedMap
Return an Enumeration of all my keys that are associated with a particular value.
KOREA. Static variable in class java.util.Locale
Useful constant for country.
KOREAN. Static variable in class java.util.Locale
Useful constant for language.

L

lastElement(). Method in class java.util.Vector
Returns the last component of the vector.
lastIndexOf(int). Method in class java.lang.String
Returns the index within this string of the last occurrence of the specified character.
lastIndexOf(int, int). Method in class java.lang.String
Returns the index within this string of the last occurrence of the specified character, searching backward starting at the specified index.
lastIndexOf(Object). Method in class java.util.Vector
Returns the index of the last occurrence of the specified object in this vector.
lastIndexOf(Object, int). Method in class java.util.Vector
Searches backwards for the specified object, starting from the specified index, and returns an index to it.
lastIndexOf(String). Method in class java.lang.String
Returns the index within this string of the rightmost occurrence of the specified substring.
lastIndexOf(String, int). Method in class java.lang.String
Returns the index within this string of the last occurrence of the specified substring.
length(). Method in class java.lang.String
Returns the length of this string.
length(). Method in class java.lang.StringBuffer
Returns the length (character count) of this string buffer.
LengthString(). Constructor for class COM.objectspace.jgl.LengthString
less(RandomAccessIterator). Method in class COM.objectspace.jgl.ArrayIterator
Return true if I'm before a specified iterator.
less(RandomAccessIterator). Method in class COM.objectspace.jgl.BooleanIterator
Return true if I'm before a specified iterator.
less(RandomAccessIterator). Method in class COM.objectspace.jgl.ByteIterator
Return true if I'm before a specified iterator.
less(RandomAccessIterator). Method in class COM.objectspace.jgl.CharIterator
Return true if I'm before a specified iterator.
less(RandomAccessIterator). Method in class COM.objectspace.jgl.DequeIterator
Return true if I'm before a specified iterator.
less(RandomAccessIterator). Method in class COM.objectspace.jgl.DoubleIterator
Return true if I'm before a specified iterator.
less(RandomAccessIterator). Method in class COM.objectspace.jgl.FloatIterator
Return true if I'm before a specified iterator.
less(RandomAccessIterator). Method in class COM.objectspace.jgl.IntIterator
Return true if I'm before a specified iterator.
less(RandomAccessIterator). Method in class COM.objectspace.jgl.LongIterator
Return true if I'm before a specified iterator.
less(RandomAccessIterator). Method in class COM.objectspace.jgl.ObjectIterator
Return true if I'm before a specified iterator.
less(RandomAccessIterator). Method in interface COM.objectspace.jgl.RandomAccessIterator
Return true if I'm before a specified iterator.
less(RandomAccessIterator). Method in class COM.objectspace.jgl.ShortIterator
Return true if I'm before a specified iterator.
less(RandomAccessIterator). Method in class COM.objectspace.jgl.VectorIterator
Return true if I'm before a specified iterator.
LessCollationKey(). Constructor for class COM.objectspace.jgl.LessCollationKey
Construct a LessCollationKey function object that uses the collator object for the current default locale to compare objects.
LessCollationKey(Collator). Constructor for class COM.objectspace.jgl.LessCollationKey
Construct a LessCollationKey function object that uses the given collator object to compare objects.
LessCollator(). Constructor for class COM.objectspace.jgl.LessCollator
Construct a LessCollator function object that uses the collator object for the current default locale to compare objects.
LessCollator(Collator). Constructor for class COM.objectspace.jgl.LessCollator
Construct a LessCollator function object that uses the given collator object to compare objects.
lessEqual(float, float). Static method in class CH.rubin.util.Assert
If the first parameter is not less or equal the second, the program prints a stack trace and exits with System.exit(1).
lessEqual(int, int). Static method in class CH.rubin.util.Assert
If the first parameter is not less or equal the second, the program prints a stack trace and exits with System.exit(1).
LessEqualCollationKey(). Constructor for class COM.objectspace.jgl.LessEqualCollationKey
Construct a LessEqualCollationKey function object that uses the collator object for the current default locale to compare objects.
LessEqualCollationKey(Collator). Constructor for class COM.objectspace.jgl.LessEqualCollationKey
Construct a LessEqualCollationKey function object that uses the given collator object to compare objects.
LessEqualCollator(). Constructor for class COM.objectspace.jgl.LessEqualCollator
Construct a LessEqualCollator function object that uses the collator object for the current default locale to compare objects.
LessEqualCollator(Collator). Constructor for class COM.objectspace.jgl.LessEqualCollator
Construct a LessEqualCollator function object that uses the given collator object to compare objects.
LessEqualInteger(). Constructor for class COM.objectspace.jgl.LessEqualInteger
LessEqualNumber(). Constructor for class COM.objectspace.jgl.LessEqualNumber
Construct myself to use intValue() for comparisons.
LessEqualNumber(Class). Constructor for class COM.objectspace.jgl.LessEqualNumber
Construct myself to compare objects of the given class.
LessEqualString(). Constructor for class COM.objectspace.jgl.LessEqualString
LessInteger(). Constructor for class COM.objectspace.jgl.LessInteger
LessNumber(). Constructor for class COM.objectspace.jgl.LessNumber
Construct myself to use intValue() for comparisons.
LessNumber(Class). Constructor for class COM.objectspace.jgl.LessNumber
Construct myself to compare objects of the given class.
LessString(). Constructor for class COM.objectspace.jgl.LessString
LessThen(float, float). Static method in class CH.rubin.util.Assert
If the first parameter is not less then the second, the program prints a stack trace and exits with System.exit(1).
lessThen(int, int). Static method in class CH.rubin.util.Assert
If the first parameter is not less then the second, the program prints a stack trace and exits with System.exit(1).
LETTER_NUMBER. Static variable in class java.lang.Character
lexicographicalCompare(Container, Container). Static method in class COM.objectspace.jgl.Comparing
Return true if one container is lexicographically less than another.
lexicographicalCompare(Container, Container, BinaryPredicate). Static method in class COM.objectspace.jgl.Comparing
Return true if one container is lexicographically less than another.
lexicographicalCompare(InputIterator, InputIterator, InputIterator, InputIterator). Static method in class COM.objectspace.jgl.Comparing
Return true if one sequence is lexicographically less than another.
lexicographicalCompare(InputIterator, InputIterator, InputIterator, InputIterator, BinaryPredicate). Static method in class COM.objectspace.jgl.Comparing
Return true if one sequence is lexicographically less than another.
LINE_SEPARATOR. Static variable in class java.lang.Character
LinkageError(). Constructor for class java.lang.LinkageError
Constructs a LinkageError with no detail message.
LinkageError(String). Constructor for class java.lang.LinkageError
Constructs a LinkageError with the specified detail message.
list(). Method in class java.lang.ThreadGroup
Prints information about this thread group to the standard output.
list(PrintStream). Method in class java.util.Properties
Prints this property list out to the specified output stream.
list(PrintWriter). Method in class java.util.Properties
Prints this property list out to the specified output stream.
ListResourceBundle(). Constructor for class java.util.ListResourceBundle
load(InputStream). Method in class java.util.Properties
Reads a property list from an input stream.
load(String). Method in class java.lang.Runtime
Loads the specified filename as a dynamic library.
load(String). Static method in class java.lang.System
Loads the specified filename as a dynamic library.
loadClass(String). Method in class java.lang.ClassLoader
Requests the class loader to load a class with the specified name.
loadClass(String, boolean). Method in class java.lang.ClassLoader
Resolves the specified name to a Class.
loadLibrary(String). Method in class java.lang.Runtime
Loads the dynamic library with the specified library name.
loadLibrary(String). Static method in class java.lang.System
Loads the system library specified by the libname argument.
Locale(String, String). Constructor for class java.util.Locale
Construct a locale from language, country.
Locale(String, String, String). Constructor for class java.util.Locale
Construct a locale from language, country, variant.
log(double). Static method in class java.lang.Math
Returns the natural logarithm (base e) of a double value.
LogicalAnd(). Constructor for class COM.objectspace.jgl.LogicalAnd
LogicalNot(). Constructor for class COM.objectspace.jgl.LogicalNot
LogicalOr(). Constructor for class COM.objectspace.jgl.LogicalOr
Long(long). Constructor for class java.lang.Long
Constructs a newly allocated Long object that represents the primitive long argument.
Long(String). Constructor for class java.lang.Long
Constructs a newly allocated Long object that represents the value represented by the string.
LongArray(). Constructor for class COM.objectspace.jgl.LongArray
LongArray(long[]). Constructor for class COM.objectspace.jgl.LongArray
LongArray(LongArray). Constructor for class COM.objectspace.jgl.LongArray
longBitsToDouble(long). Static method in class java.lang.Double
Returns the double-float corresponding to a given bit represention.
LongIterator(). Constructor for class COM.objectspace.jgl.LongIterator
Construct myself to be an iterator with no associated data structure or position.
LongIterator(long[]). Constructor for class COM.objectspace.jgl.LongIterator
Construct myself to be an iterator positioned at the first element of a specified array.
LongIterator(long[], int). Constructor for class COM.objectspace.jgl.LongIterator
Construct myself to be positioned at a particular index of a specific array.
LongIterator(long[], int, LongArray). Constructor for class COM.objectspace.jgl.LongIterator
Construct myself to be positioned at a particular index of a specific array.
LongIterator(long[], LongArray). Constructor for class COM.objectspace.jgl.LongIterator
Construct myself to be an iterator positioned at the first element of a specified array.
LongIterator(LongIterator). Constructor for class COM.objectspace.jgl.LongIterator
Construct myself to be a copy of an existing iterator.
longValue(). Method in class java.lang.Byte
Returns the value of this Byte as a long.
longValue(). Method in class java.lang.Double
Returns the long value of this Double (by casting to a long).
longValue(). Method in class java.lang.Float
Returns the long value of this Float (by casting to a long).
longValue(). Method in class java.lang.Integer
Returns the value of this Integer as a long.
longValue(). Method in class java.lang.Long
Returns the value of this Long as a long.
longValue(). Method in class java.lang.Number
Returns the value of the specified number as a long.
longValue(). Method in class java.lang.Short
Returns the value of this Short as a long.
lowerBound(Object). Method in class COM.objectspace.jgl.HashMap
Return an iterator positioned at the first location that a pair with a specified key could be inserted without violating the ordering criteria.
lowerBound(Object). Method in class COM.objectspace.jgl.HashSet
Return an iterator positioned at the first location that a particular object could be inserted without violating the ordering criteria.
lowerBound(Object). Method in class COM.objectspace.jgl.OrderedMap
Return an iterator positioned at the first location that a pair with a specified key could be inserted without violating the ordering criteria.
lowerBound(Object). Method in class COM.objectspace.jgl.OrderedSet
Return an iterator positioned at the first location that a particular object could be inserted without violating the ordering criteria.
LOWERCASE_LETTER. Static variable in class java.lang.Character

M

makeHeap(BidirectionalIterator, BidirectionalIterator). Static method in class COM.objectspace.jgl.Heap
Arrange a sequence into a heap that is ordered according to the object's hash codes.
makeHeap(BidirectionalIterator, BidirectionalIterator, BinaryPredicate). Static method in class COM.objectspace.jgl.Heap
Arrange a sequence into a heap that is ordered according to a comparator.
Map(). Constructor for class COM.objectspace.jgl.Map
MARCH. Static variable in class java.util.Calendar
Useful constant for month.
matchings(). Method in class CH.rubin.matching.GraphBipartiteEqual
returns the number of matchings in the graph.
MATH_SYMBOL. Static variable in class java.lang.Character
max(double, double). Static method in class java.lang.Math
Returns the greater of two double values.
max(float, float). Static method in class java.lang.Math
Returns the greater of two float values.
max(int, int). Static method in class java.lang.Math
Returns the greater of two int values.
max(long, long). Static method in class java.lang.Math
Returns the greater of two long values.
MAX_PRIORITY. Static variable in class java.lang.Thread
The maximum priority that a thread can have.
MAX_RADIX. Static variable in class java.lang.Character
The maximum radix available for conversion to and from Strings.
MAX_VALUE. Static variable in class java.lang.Byte
The maximum value a Byte can have.
MAX_VALUE. Static variable in class java.lang.Character
The constant value of this field is the largest value of type char.
MAX_VALUE. Static variable in class java.lang.Double
The largest positive value of type double.
MAX_VALUE. Static variable in class java.lang.Float
The largest positive value of type float.
MAX_VALUE. Static variable in class java.lang.Integer
The largest value of type int.
MAX_VALUE. Static variable in class java.lang.Long
The largest value of type long.
MAX_VALUE. Static variable in class java.lang.Short
The maximum value a Short can have.
maxElement(Container). Static method in class COM.objectspace.jgl.MinMax
Find the maximum element in a container.
maxElement(Container, BinaryPredicate). Static method in class COM.objectspace.jgl.MinMax
Find the maximum element in a container.
maxElement(InputIterator, InputIterator). Static method in class COM.objectspace.jgl.MinMax
Find the maximum element in a sequence.
maxElement(InputIterator, InputIterator, BinaryPredicate). Static method in class COM.objectspace.jgl.MinMax
Find the maximum element in a sequence.
maxOutEdgesX. Variable in class CH.rubin.matching.GraphBipartiteEqual
the maximum of outgoing edges from all points in x; max(edgesInList[])
maxOutEdgesX(). Method in class CH.rubin.matching.GraphBipartiteEqual
returns the maximum number of outgoing edges from all points x.
maxSize(). Method in class COM.objectspace.jgl.Array
Return the maximum number of entries that I can contain.
maxSize(). Method in class COM.objectspace.jgl.BooleanArray
Return the maximum number of objects that I can contain.
maxSize(). Method in class COM.objectspace.jgl.ByteArray
Return the maximum number of objects that I can contain.
maxSize(). Method in class COM.objectspace.jgl.CharArray
Return the maximum number of objects that I can contain.
maxSize(). Method in interface COM.objectspace.jgl.Container
Return the maximum number of objects that I can contain.
maxSize(). Method in class COM.objectspace.jgl.Deque
Return the maximum number of entries that I can contain.
maxSize(). Method in class COM.objectspace.jgl.DList
Return the maximum number of entries that I can contain.
maxSize(). Method in class COM.objectspace.jgl.DoubleArray
Return the maximum number of objects that I can contain.
maxSize(). Method in class COM.objectspace.jgl.FloatArray
Return the maximum number of objects that I can contain.
maxSize(). Method in class COM.objectspace.jgl.HashMap
Return the maximum number of entries that I can contain.
maxSize(). Method in class COM.objectspace.jgl.HashSet
Return the maximum number of entries that I can contain.
maxSize(). Method in class COM.objectspace.jgl.IntArray
Return the maximum number of objects that I can contain.
maxSize(). Method in class COM.objectspace.jgl.LongArray
Return the maximum number of objects that I can contain.
maxSize(). Method in class COM.objectspace.jgl.Map
Return the maximum number of objects that I can contain.
maxSize(). Method in class COM.objectspace.jgl.ObjectArray
Return the maximum number of objects that I can contain.
maxSize(). Method in class COM.objectspace.jgl.OrderedMap
Return the maximum number of entries that I can contain.
maxSize(). Method in class COM.objectspace.jgl.OrderedSet
Return the maximum number of entries that I can contain.
maxSize(). Method in class COM.objectspace.jgl.PriorityQueue
Return the maximum number of objects that I can contain.
maxSize(). Method in class COM.objectspace.jgl.Queue
Return the maximum number of objects that I can contain.
maxSize(). Method in class COM.objectspace.jgl.ShortArray
Return the maximum number of objects that I can contain.
maxSize(). Method in class COM.objectspace.jgl.SList
Return the maximum number of entries that I can contain.
maxSize(). Method in class COM.objectspace.jgl.Stack
Return the maximum number of objects that I can contain.
maxSize(). Method in class COM.objectspace.jgl.VectorArray
Return the maximum number of objects that I can contain.
MAY. Static variable in class java.util.Calendar
Useful constant for month.
median(Object, Object, Object, BinaryPredicate). Static method in class COM.objectspace.jgl.Comparing
Return the median value of three objects, using a comparator to perform the comparisons.
MILLISECOND. Static variable in class java.util.Calendar
Useful constant for date and time.
min(double, double). Static method in class java.lang.Math
Returns the smaller of two double values.
min(float, float). Static method in class java.lang.Math
Returns the smaller of two float values.
min(int, int). Static method in class java.lang.Math
Returns the smaller of two int values.
min(long, long). Static method in class java.lang.Math
Returns the smaller of two long values.
MIN_PRIORITY. Static variable in class java.lang.Thread
The minimum priority that a thread can have.
MIN_RADIX. Static variable in class java.lang.Character
The minimum radix available for conversion to and from Strings.
MIN_VALUE. Static variable in class java.lang.Byte
The minimum value a Byte can have.
MIN_VALUE. Static variable in class java.lang.Character
The constant value of this field is the smallest value of type char.
MIN_VALUE. Static variable in class java.lang.Double
The smallest positive value of type double.
MIN_VALUE. Static variable in class java.lang.Float
The smallest positive value of type float.
MIN_VALUE. Static variable in class java.lang.Integer
The smallest value of type int.
MIN_VALUE. Static variable in class java.lang.Long
The smallest value of type long.
MIN_VALUE. Static variable in class java.lang.Short
The minimum value a Short can have.
minElement(Container). Static method in class COM.objectspace.jgl.MinMax
Find the minimum element in a container.
minElement(Container, BinaryPredicate). Static method in class COM.objectspace.jgl.MinMax
Find the minimum element in a container.
minElement(InputIterator, InputIterator). Static method in class COM.objectspace.jgl.MinMax
Find the minimum element in a sequence.
minElement(InputIterator, InputIterator, BinaryPredicate). Static method in class COM.objectspace.jgl.MinMax
Find the minimum element in a sequence.
MinusInteger(). Constructor for class COM.objectspace.jgl.MinusInteger
MinusNumber(). Constructor for class COM.objectspace.jgl.MinusNumber
Construct myself to use intValue() for operation.
MinusNumber(Class). Constructor for class COM.objectspace.jgl.MinusNumber
Construct myself to operate on objects of the given class.
MINUTE. Static variable in class java.util.Calendar
Useful constant for date and time.
mismatch(Container, Container). Static method in class COM.objectspace.jgl.Comparing
Scan two containers and return a pair of iterators that are positioned at the first mismatched elements.
mismatch(Container, Container, BinaryPredicate). Static method in class COM.objectspace.jgl.Comparing
Scan two containers and return a pair of iterators that are positioned at the first mismatched elements.
mismatch(InputIterator, InputIterator, InputIterator). Static method in class COM.objectspace.jgl.Comparing
Scan two sequences and return a pair of iterators that are positioned at the first mismatched elements.
mismatch(InputIterator, InputIterator, InputIterator, BinaryPredicate). Static method in class COM.objectspace.jgl.Comparing
Scan two sequences and return a pair of iterators that are positioned at the first mismatched elements.
MissingResourceException(String, String, String). Constructor for class java.util.MissingResourceException
Constructs a MissingResourceException with the specified information.
MODIFIER_LETTER. Static variable in class java.lang.Character
MODIFIER_SYMBOL. Static variable in class java.lang.Character
ModulusInteger(). Constructor for class COM.objectspace.jgl.ModulusInteger
ModulusNumber(). Constructor for class COM.objectspace.jgl.ModulusNumber
Construct myself to use intValue() for operation.
ModulusNumber(Class). Constructor for class COM.objectspace.jgl.ModulusNumber
Construct myself to operate on objects of the given class.
ModulusNumber(Class, int). Constructor for class COM.objectspace.jgl.ModulusNumber
Construct myself to operate on objects of the given class.
MONDAY. Static variable in class java.util.Calendar
Useful constant for days of week.
MONTH. Static variable in class java.util.Calendar
Useful constant for date and time.

N

NaN. Static variable in class java.lang.Double
A NaN value of type double.
NaN. Static variable in class java.lang.Float
The NaN value of type float.
NegateInteger(). Constructor for class COM.objectspace.jgl.NegateInteger
NegateNumber(). Constructor for class COM.objectspace.jgl.NegateNumber
Construct myself to use intValue() for operation.
NegateNumber(Class). Constructor for class COM.objectspace.jgl.NegateNumber
Construct myself to operate on objects of the given class.
NEGATIVE_INFINITY. Static variable in class java.lang.Double
The negative infinity of type double.
NEGATIVE_INFINITY. Static variable in class java.lang.Float
The negative infinity of type float.
NegativeArraySizeException(). Constructor for class java.lang.NegativeArraySizeException
Constructs a NegativeArraySizeException with no detail message.
NegativeArraySizeException(String). Constructor for class java.lang.NegativeArraySizeException
Constructs a NegativeArraySizeException with the specified detail message.
NegativeInteger(). Constructor for class COM.objectspace.jgl.NegativeInteger
NegativeNumber(). Constructor for class COM.objectspace.jgl.NegativeNumber
Construct myself to use intValue() for comparisons.
NegativeNumber(Class). Constructor for class COM.objectspace.jgl.NegativeNumber
Construct myself to compare objects of the given class.
newInstance(). Method in class java.lang.Class
Creates a new instance of a class.
next(int). Method in class java.util.Random
Generates the next pseudorandom number.
nextBytes(byte[]). Method in class java.util.Random
Generates a user specified number of random bytes.
nextDouble(). Method in class java.util.Random
Returns the next pseudorandom, uniformly distributed double value between 0.0 and 1.0 from this random number generator's sequence.
nextDouble(double). Method in class COM.objectspace.jgl.Randomizer
Generates a double value between 1.0 and the given limit.
nextDouble(double, double). Method in class COM.objectspace.jgl.Randomizer
Generates a double value between the given limits.
nextElement(). Method in class COM.objectspace.jgl.ArrayIterator
Return the next element in my input stream.
nextElement(). Method in class COM.objectspace.jgl.BooleanIterator
Return the next element in my input stream.
nextElement(). Method in class COM.objectspace.jgl.ByteIterator
Return the next element in my input stream.
nextElement(). Method in class COM.objectspace.jgl.CharIterator
Return the next element in my input stream.
nextElement(). Method in class COM.objectspace.jgl.DequeIterator
Return the next element in my input stream.
nextElement(). Method in class COM.objectspace.jgl.DListIterator
Return the next element in my input stream.
nextElement(). Method in class COM.objectspace.jgl.DoubleIterator
Return the next element in my input stream.
nextElement(). Method in interface java.util.Enumeration
Returns the next element of this enumeration.
nextElement(). Method in class COM.objectspace.jgl.FloatIterator
Return the next element in my input stream.
nextElement(). Method in class COM.objectspace.jgl.HashMapIterator
Return the next element in my input stream.
nextElement(). Method in class COM.objectspace.jgl.HashSetIterator
Return the next element in my input stream.
nextElement(). Method in class COM.objectspace.jgl.IntIterator
Return the next element in my input stream.
nextElement(). Method in class COM.objectspace.jgl.LongIterator
Return the next element in my input stream.
nextElement(). Method in class COM.objectspace.jgl.ObjectIterator
Return the next element in my input stream.
nextElement(). Method in class COM.objectspace.jgl.OrderedMapIterator
Return the next element in my input stream.
nextElement(). Method in class COM.objectspace.jgl.OrderedSetIterator
Return the next element in my input stream.
nextElement(). Method in class COM.objectspace.jgl.ReverseIterator
Return the next element in my input stream.
nextElement(). Method in class COM.objectspace.jgl.ShortIterator
Return the next element in my input stream.
nextElement(). Method in class COM.objectspace.jgl.SListIterator
Return the next element in my input stream.
nextElement(). Method in class java.util.StringTokenizer
Returns the same value as the nextToken method, except that its declared return value is Object rather than String.
nextElement(). Method in class COM.objectspace.jgl.VectorIterator
Return the next element in my input stream.
nextFloat(). Method in class java.util.Random
Returns the next pseudorandom, uniformly distributed float value between 0.0 and 1.0 from this random number generator's sequence.
nextFloat(float). Method in class COM.objectspace.jgl.Randomizer
Generates a float value between 1.0 and the given limit.
nextFloat(float, float). Method in class COM.objectspace.jgl.Randomizer
Generates a float value between the given limits.
nextGaussian(). Method in class java.util.Random
Returns the next pseudorandom, Gaussian ("normally") distributed double value with mean 0.0 and standard deviation 1.0 from this random number generator's sequence.
nextInt(). Method in class java.util.Random
Returns the next pseudorandom, uniformly distributed int value from this random number generator's sequence.
nextInt(int). Method in class CH.rubin.util.Random
returns an integer i for which 0 <= i < upto
nextInt(int). Method in class COM.objectspace.jgl.Randomizer
Generates an int value between 1 and the given limit.
nextInt(int, int). Method in class COM.objectspace.jgl.Randomizer
Generates an int value between the given limits.
nextLong(). Method in class java.util.Random
Returns the next pseudorandom, uniformly distributed long value from this random number generator's sequence.
nextLong(long). Method in class COM.objectspace.jgl.Randomizer
Generates a long value between 1 and the given limit.
nextLong(long, long). Method in class COM.objectspace.jgl.Randomizer
Generates a long value between the given limits.
nextPermutation(BidirectionalIterator, BidirectionalIterator, BinaryPredicate). Static method in class COM.objectspace.jgl.Permuting
Arrange a sequence to become its next permutation.
nextPermutation(Container, BinaryPredicate). Static method in class COM.objectspace.jgl.Permuting
Arrange a container to become its next permutation.
nextToken(). Method in class java.util.StringTokenizer
Returns the next token from this string tokenizer.
nextToken(String). Method in class java.util.StringTokenizer
Returns the next token in this string tokenizer's string.
NoClassDefFoundError(). Constructor for class java.lang.NoClassDefFoundError
Constructs a NoClassDefFoundError with no detail message.
NoClassDefFoundError(String). Constructor for class java.lang.NoClassDefFoundError
Constructs a NoClassDefFoundError with the specified detail message.
NON_SPACING_MARK. Static variable in class java.lang.Character
NORM_PRIORITY. Static variable in class java.lang.Thread
The default priority that is assigned to a thread.
NoSuchElementException(). Constructor for class java.util.NoSuchElementException
Constructs a NoSuchElementException with no detail message.
NoSuchElementException(String). Constructor for class java.util.NoSuchElementException
Constructs a NoSuchElementException with the specified detail message.
NoSuchFieldError(). Constructor for class java.lang.NoSuchFieldError
Constructs a NoSuchFieldException with no detail message.
NoSuchFieldError(String). Constructor for class java.lang.NoSuchFieldError
Constructs a NoSuchFieldException with the specified detail message.
NoSuchFieldException(). Constructor for class java.lang.NoSuchFieldException
Constructor.
NoSuchFieldException(String). Constructor for class java.lang.NoSuchFieldException
Constructor with a detail message.
NoSuchMethodError(). Constructor for class java.lang.NoSuchMethodError
NoSuchMethodError(String). Constructor for class java.lang.NoSuchMethodError
Constructs a NoSuchMethodException with the specified detail message.
NoSuchMethodException(). Constructor for class java.lang.NoSuchMethodException
Constructs a NoSuchMethodException without a detail message.
NoSuchMethodException(String). Constructor for class java.lang.NoSuchMethodException
Constructs a NoSuchMethodException with a detail message.
notEqual(float, float). Static method in class CH.rubin.util.Assert
If the two parameters are equal, the program prints a stack trace and exits with System.exit(1).
notEqual(int, int). Static method in class CH.rubin.util.Assert
If the two parameters are equal, the program prints a stack trace and exits with System.exit(1).
NotEqualCollationKey(). Constructor for class COM.objectspace.jgl.NotEqualCollationKey
Construct a NotEqualCollationKey function object that uses the collator object for the current default locale to compare operands that are not instances of CollationKey.
NotEqualCollationKey(Collator). Constructor for class COM.objectspace.jgl.NotEqualCollationKey
Construct a NotEqualCollationKey function object that uses the given collator object to compare operands that are not instances of CollationKey.
NotEqualCollator(). Constructor for class COM.objectspace.jgl.NotEqualCollator
Construct a NotEqualCollator function object that uses the collator object for the current default locale to compare objects.
NotEqualCollator(Collator). Constructor for class COM.objectspace.jgl.NotEqualCollator
Construct a NotEqualCollator function object that uses the given collator object to compare objects.
NotEqualNumber(). Constructor for class COM.objectspace.jgl.NotEqualNumber
Construct myself to use intValue() for comparisons.
NotEqualNumber(Class). Constructor for class COM.objectspace.jgl.NotEqualNumber
Construct myself to compare objects of the given class.
NotEqualString(). Constructor for class COM.objectspace.jgl.NotEqualString
NotEqualTo(). Constructor for class COM.objectspace.jgl.NotEqualTo
NotIdenticalTo(). Constructor for class COM.objectspace.jgl.NotIdenticalTo
notify(). Method in class java.lang.Object
Wakes up a single thread that is waiting on this object's monitor.
notifyAll(). Method in class java.lang.Object
Wakes up all threads that are waiting on this object's monitor.
notifyObservers(). Method in class java.util.Observable
If this object has changed, as indicated by the hasChanged method, then notify all of its observers and then call the clearChanged method to indicate that this object has no longer changed.
notifyObservers(Object). Method in class java.util.Observable
If this object has changed, as indicated by the hasChanged method, then notify all of its observers and then call the clearChanged method to indicate that this object has no longer changed.
NOVEMBER. Static variable in class java.util.Calendar
Useful constant for month.
NullPointerException(). Constructor for class java.lang.NullPointerException
Constructs a NullPointerException with no detail message.
NullPointerException(String). Constructor for class java.lang.NullPointerException
Constructs a NullPointerException with the specified detail message.
Number(). Constructor for class java.lang.Number
NumberFormatException(). Constructor for class java.lang.NumberFormatException
Constructs a NumberFormatException with no detail message.
NumberFormatException(String). Constructor for class java.lang.NumberFormatException
Constructs a NumberFormatException with the specified detail message.
numberOfMatchings. Variable in class CH.rubin.matching.GraphBipartiteEqual

O

Object(). Constructor for class java.lang.Object
ObjectArray(). Constructor for class COM.objectspace.jgl.ObjectArray
ObjectArray(Object[]). Constructor for class COM.objectspace.jgl.ObjectArray
ObjectArray(ObjectArray). Constructor for class COM.objectspace.jgl.ObjectArray
ObjectIterator(). Constructor for class COM.objectspace.jgl.ObjectIterator
Construct myself to be an iterator with no associated data structure or position.
ObjectIterator(Object[]). Constructor for class COM.objectspace.jgl.ObjectIterator
Construct myself to be an iterator positioned at the first element of a specified array.
ObjectIterator(Object[], int). Constructor for class COM.objectspace.jgl.ObjectIterator
Construct myself to be positioned at a particular index of a specific array.
ObjectIterator(Object[], int, ObjectArray). Constructor for class COM.objectspace.jgl.ObjectIterator
Construct myself to be positioned at a particular index of a specific array.
ObjectIterator(Object[], ObjectArray). Constructor for class COM.objectspace.jgl.ObjectIterator
Construct myself to be an iterator positioned at the first element of a specified array.
ObjectIterator(ObjectIterator). Constructor for class COM.objectspace.jgl.ObjectIterator
Construct myself to be a copy of an existing iterator.
ObjectOutputStreamIterator(ObjectOutputStream). Constructor for class COM.objectspace.jgl.ObjectOutputStreamIterator
Construct myself to print all objects to the specified stream.
ObjectOutputStreamIterator(ObjectOutputStreamIterator). Constructor for class COM.objectspace.jgl.ObjectOutputStreamIterator
Construct myself to be associated with the same stream as the specified iterator.
Observable(). Constructor for class java.util.Observable
Construct an Observable with zero Observers
OCTOBER. Static variable in class java.util.Calendar
Useful constant for month.
or(BitSet). Method in class java.util.BitSet
Logically ORs this bit set with the specified set of bits.
orderedHash(Container). Static method in class COM.objectspace.jgl.Hashing
Compute an hash value for an ordered container.
orderedHash(ForwardIterator, ForwardIterator). Static method in class COM.objectspace.jgl.Hashing
Compute a hash value for a range of elements in an ordered container Hashing on an ordered container requires that all elements in the container that are used in the hash have the position taken into account.
OrderedMap(). Constructor for class COM.objectspace.jgl.OrderedMap
Construct myself to be an empty OrderedMap that orders its keys based on their hash value and does not allow duplicates.
OrderedMap(BinaryPredicate). Constructor for class COM.objectspace.jgl.OrderedMap
Construct myself to be an empty OrderedMap that orders its keys using a specified binary predicate and does not allow duplicates.
OrderedMap(BinaryPredicate, boolean). Constructor for class COM.objectspace.jgl.OrderedMap
Construct myself to be an empty OrderedMap that orders its keys using a specified binary predicate and conditionally allows duplicates.
OrderedMap(boolean). Constructor for class COM.objectspace.jgl.OrderedMap
Construct myself to be an empty OrderedMap that orders its keys based on their hash value and conditionally allows duplicates.
OrderedMap(OrderedMap). Constructor for class COM.objectspace.jgl.OrderedMap
Construct myself to be a shallow copy of an existing OrderedMap.
OrderedMapIterator(). Constructor for class COM.objectspace.jgl.OrderedMapIterator
Construct myself to be an iterator with no associated data structure or position.
OrderedMapIterator(OrderedMapIterator). Constructor for class COM.objectspace.jgl.OrderedMapIterator
Construct myself to be a copy of an existing iterator.
OrderedMultiMap(). Constructor for class COM.objectspace.jgl.OrderedMultiMap
Construct myself to be an empty OrderedMultiMap that orders its keys based on their hash value.
OrderedMultiMap(BinaryPredicate). Constructor for class COM.objectspace.jgl.OrderedMultiMap
Construct myself to be an empty OrderedMultiMap that orders its keys using a specified binary predicate.
OrderedMultiMap(OrderedMultiMap). Constructor for class COM.objectspace.jgl.OrderedMultiMap
Construct myself to be a shallow copy of an existing OrderedMultiMap.
OrderedMultiSet(). Constructor for class COM.objectspace.jgl.OrderedMultiSet
Construct myself to be an empty OrderedMultiSet that orders elements based on their hash value.
OrderedMultiSet(BinaryPredicate). Constructor for class COM.objectspace.jgl.OrderedMultiSet
Construct myself to be an empty OrderedMultiSet that orders elements using a specified binary predicate.
OrderedMultiSet(OrderedMultiSet). Constructor for class COM.objectspace.jgl.OrderedMultiSet
Construct myself to be a shallow copy of an existing OrderedMultiSet.
OrderedSet(). Constructor for class COM.objectspace.jgl.OrderedSet
Construct myself to be an empty OrderedSet that orders elements based on their hash value and does not allow duplicates.
OrderedSet(BinaryPredicate). Constructor for class COM.objectspace.jgl.OrderedSet
Construct myself to be an empty OrderedSet that orders elements using a specified binary predicate and does not allow duplicates.
OrderedSet(BinaryPredicate, boolean). Constructor for class COM.objectspace.jgl.OrderedSet
Construct myself to be an empty OrderedSet that orders elements using a specified binary predicate and conditionally allows duplicates.
OrderedSet(boolean). Constructor for class COM.objectspace.jgl.OrderedSet
Construct myself to be an empty OrderedSet that orders elements based on their hash value and conditionally allows duplicates.
OrderedSet(OrderedSet). Constructor for class COM.objectspace.jgl.OrderedSet
Construct myself to be a shallow copy of an existing OrderedSet.
OrderedSetIterator(). Constructor for class COM.objectspace.jgl.OrderedSetIterator
Construct myself to be an iterator with no associated data structure or position.
OrderedSetIterator(OrderedSetIterator). Constructor for class COM.objectspace.jgl.OrderedSetIterator
Construct myself to be a copy of an existing iterator.
OrderedSetOperations(). Constructor for class COM.objectspace.jgl.OrderedSetOperations
OTHER_LETTER. Static variable in class java.lang.Character
OTHER_NUMBER. Static variable in class java.lang.Character
OTHER_PUNCTUATION. Static variable in class java.lang.Character
OTHER_SYMBOL. Static variable in class java.lang.Character
out. Static variable in class java.lang.System
The "standard" output stream.
outgoingEdgesFromX(int). Method in class CH.rubin.matching.GraphBipartiteEqual
returns the number of outgoing edges from point x.
OutOfMemoryError(). Constructor for class java.lang.OutOfMemoryError
Constructs an OutOfMemoryError with no detail message.
OutOfMemoryError(String). Constructor for class java.lang.OutOfMemoryError
Constructs an OutOfMemoryError with the specified detail message.
OutputStreamIterator(). Constructor for class COM.objectspace.jgl.OutputStreamIterator
Construct myself to print all objects to the standard output stream, System.out.
OutputStreamIterator(OutputStream). Constructor for class COM.objectspace.jgl.OutputStreamIterator
Construct myself to print all objects to the specified PrintStream.
OutputStreamIterator(OutputStream, String). Constructor for class COM.objectspace.jgl.OutputStreamIterator
Construct myself to print all objects to the specified PrintStream.
OutputStreamIterator(OutputStreamIterator). Constructor for class COM.objectspace.jgl.OutputStreamIterator
Construct myself to be associated with the same PrintStream as the specified iterator.
OutputStreamIterator(String). Constructor for class COM.objectspace.jgl.OutputStreamIterator
Construct myself to print all objects to the standard output stream, System.out.

P

PAIR. Static variable in class COM.objectspace.jgl.HashMapIterator
PAIR. Static variable in class COM.objectspace.jgl.OrderedMapIterator
Pair(). Constructor for class COM.objectspace.jgl.Pair
Construct myself to hold a pair of objects initially null.
Pair(Object, Object). Constructor for class COM.objectspace.jgl.Pair
Construct myself to hold a pair of objects.
Pair(Pair). Constructor for class COM.objectspace.jgl.Pair
Construct myself to be a copy of an existing Pair.
PARAGRAPH_SEPARATOR. Static variable in class java.lang.Character
parent. Variable in class java.util.ResourceBundle
The parent bundle is consulted by getObject when this bundle does not contain a particular resource.
parentOf(ThreadGroup). Method in class java.lang.ThreadGroup
Tests if this thread group is either the thread group argument or one of its ancestor thread groups.
parse(String). Static method in class java.util.Date
Given a string representing a time, parse it and return the time value.
parseByte(String). Static method in class java.lang.Byte
Assuming the specified String represents a byte, returns that byte's value.
parseByte(String, int). Static method in class java.lang.Byte
Assuming the specified String represents a byte, returns that byte's value.
parseInt(String). Static method in class java.lang.Integer
Parses the string argument as a signed decimal integer.
parseInt(String, int). Static method in class java.lang.Integer
Parses the string argument as a signed integer in the radix specified by the second argument.
parseLong(String). Static method in class java.lang.Long
Parses the string argument as a signed decimal long.
parseLong(String, int). Static method in class java.lang.Long
Parses the string argument as a signed long in the radix specified by the second argument.
parseShort(String). Static method in class java.lang.Short
Assuming the specified String represents a short, returns that short's value.
parseShort(String, int). Static method in class java.lang.Short
Assuming the specified String represents a short, returns that short's value.
peek(). Method in class java.util.Stack
Looks at the object at the top of this stack without removing it from the stack.
PI. Static variable in class java.lang.Math
The double value that is closer than any other to pi, the ratio of the circumference of a circle to its diameter.
PlusInteger(). Constructor for class COM.objectspace.jgl.PlusInteger
PlusNumber(). Constructor for class COM.objectspace.jgl.PlusNumber
Construct myself to use intValue() for operation.
PlusNumber(Class). Constructor for class COM.objectspace.jgl.PlusNumber
Construct myself to operate on objects of the given class.
PlusString(). Constructor for class COM.objectspace.jgl.PlusString
PM. Static variable in class java.util.Calendar
Useful constant for hour in 12-hour clock.
points(). Method in class CH.rubin.matching.Graph2DM
returns the points per dimension in this graph.
points(). Method in class CH.rubin.matching.Graph3DM
returns the points per dimension in this graph.
points(). Method in class CH.rubin.matching.GraphBipartiteEqual
returns the number of points in the graph.
points(). Method in class CH.rubin.matching.Triplets
returns the points per dimension in this graph.
pop(). Method in class COM.objectspace.jgl.PriorityQueue
Pop the last object that was pushed onto me.
pop(). Method in class COM.objectspace.jgl.Queue
Remove an object from my front and return it.
pop(). Method in class COM.objectspace.jgl.Stack
Pop the last object that was pushed onto me.
pop(). Method in class java.util.Stack
Removes the object at the top of this stack and returns that object as the value of this function.
popBack(). Method in class COM.objectspace.jgl.Array
Remove and return my last element.
popBack(). Method in class COM.objectspace.jgl.ArrayAdapter
Remove and return my last element.
popBack(). Method in class COM.objectspace.jgl.Deque
Remove and return my last element.
popBack(). Method in class COM.objectspace.jgl.DList
Remove and return my last element.
popBack(). Method in interface COM.objectspace.jgl.Sequence
Remove and return my last element.
popBack(). Method in class COM.objectspace.jgl.SList
Remove my last element.
popBack(). Method in class COM.objectspace.jgl.VectorArray
Remove and return my last element.
popFront(). Method in class COM.objectspace.jgl.Array
Remove and return my first element.
popFront(). Method in class COM.objectspace.jgl.ArrayAdapter
Remove and return my first element.
popFront(). Method in class COM.objectspace.jgl.Deque
Remove and return my first element.
popFront(). Method in class COM.objectspace.jgl.DList
Remove and return my first element.
popFront(). Method in interface COM.objectspace.jgl.Sequence
Remove and return my first element.
popFront(). Method in class COM.objectspace.jgl.SList
Remove my first element.
popFront(). Method in class COM.objectspace.jgl.VectorArray
Remove and return my first element.
popHeap(BidirectionalIterator, BidirectionalIterator). Static method in class COM.objectspace.jgl.Heap
Assuming that a sequence is organized as a heap, swap its first and last elements and then reorganize every element except for the last element to be a heap.
popHeap(BidirectionalIterator, BidirectionalIterator, BinaryPredicate). Static method in class COM.objectspace.jgl.Heap
Assuming that a sequence is organized as a heap, swap its first and last elements and then reorganize every element except for the last element to be a heap.
POSITIVE_INFINITY. Static variable in class java.lang.Double
The positive infinity of type double.
POSITIVE_INFINITY. Static variable in class java.lang.Float
The positive infinity of type float.
PositiveInteger(). Constructor for class COM.objectspace.jgl.PositiveInteger
PositiveNumber(). Constructor for class COM.objectspace.jgl.PositiveNumber
Construct myself to use intValue() for comparisons.
PositiveNumber(Class). Constructor for class COM.objectspace.jgl.PositiveNumber
Construct myself to compare objects of the given class.
pow(double, double). Static method in class java.lang.Math
Returns of value of the first argument raised to the power of the second argument.
PRC. Static variable in class java.util.Locale
Useful constant for country.
prevPermutation(BidirectionalIterator, BidirectionalIterator, BinaryPredicate). Static method in class COM.objectspace.jgl.Permuting
Arrange a sequence to become its previous permutation.
prevPermutation(Container, BinaryPredicate). Static method in class COM.objectspace.jgl.Permuting
Arrange a container to become its previous permutation.
Print(). Constructor for class COM.objectspace.jgl.Print
Construct myself to print all objects to the standard output stream, System.out.
print(Container). Static method in class COM.objectspace.jgl.Printing
Print the contents of the container to the standard output stream, System.out.
print(InputIterator, InputIterator). Static method in class COM.objectspace.jgl.Printing
Print the contents of the data structure associated with a particular iterator to the standard output stream, System.out.
Print(PrintStream). Constructor for class COM.objectspace.jgl.Print
Construct myself to print all objects to the specified PrintStream.
println(Container). Static method in class COM.objectspace.jgl.Printing
Print the contents of the container to the standard output stream, System.out, followed by a newline.
println(InputIterator, InputIterator). Static method in class COM.objectspace.jgl.Printing
Print the contents of the data structure associated with a particular iterator to the standard output stream, System.out, followed by a newline.
printStackTrace(). Method in class java.lang.Throwable
Prints this Throwable and its backtrace to the standard error stream.
printStackTrace(PrintStream). Method in class java.lang.Throwable
Prints this Throwable and its backtrace to the specified print stream.
printStackTrace(PrintWriter). Method in class java.lang.Throwable
Prints this Throwable and its backtrace to the specified print writer.
PriorityQueue(). Constructor for class COM.objectspace.jgl.PriorityQueue
Construct myself to be an empty PriorityQueue.
PriorityQueue(BinaryPredicate). Constructor for class COM.objectspace.jgl.PriorityQueue
Construct myself to be an empty PriorityQueue.
PriorityQueue(PriorityQueue). Constructor for class COM.objectspace.jgl.PriorityQueue
Construct myself to be a shallow copy of a specified PriorityQueue.
PRIVATE_USE. Static variable in class java.lang.Character
Process(). Constructor for class java.lang.Process
PROGRESS_INFO. Static variable in class CH.rubin.matching.Constants
to see if the program works it could print out from time to time something about the current possition in the program.
properSubsetOf(HashSet). Method in class COM.objectspace.jgl.HashSet
Return true if every element in me is also in a specified HashSet and I'm smaller than the specified HashSet.
properSubsetOf(OrderedSet). Method in class COM.objectspace.jgl.OrderedSet
Return true if every element in me is also in a specified OrderedSet and I'm smaller than the specified OrderedSet.
Properties(). Constructor for class java.util.Properties
Creates an empty property list with no default values.
Properties(Properties). Constructor for class java.util.Properties
Creates an empty property list with the specified defaults.
propertyNames(). Method in class java.util.Properties
Returns an enumeration of all the keys in this property list, including the keys in the default property list.
PropertyResourceBundle(InputStream). Constructor for class java.util.PropertyResourceBundle
Creates a property resource
push(Object). Method in class COM.objectspace.jgl.PriorityQueue
Push an object.
push(Object). Method in class COM.objectspace.jgl.Queue
Add an object to my back.
push(Object). Method in class COM.objectspace.jgl.Stack
Push an object.
push(Object). Method in class java.util.Stack
Pushes an item onto the top of this stack.
pushBack(Object). Method in class COM.objectspace.jgl.Array
Add an object after my last element.
pushBack(Object). Method in class COM.objectspace.jgl.ArrayAdapter
Add an object at my end.
pushBack(Object). Method in class COM.objectspace.jgl.Deque
Add an object after my last element.
pushBack(Object). Method in class COM.objectspace.jgl.DList
Add an object after my last element.
pushBack(Object). Method in interface COM.objectspace.jgl.Sequence
Add an object at my end.
pushBack(Object). Method in class COM.objectspace.jgl.SList
Add an object after my last element.
pushBack(Object). Method in class COM.objectspace.jgl.VectorArray
Add an object at my end.
pushFront(Object). Method in class COM.objectspace.jgl.Array
Insert an object in front of my first element.
pushFront(Object). Method in class COM.objectspace.jgl.ArrayAdapter
Insert an object in front of my first element.
pushFront(Object). Method in class COM.objectspace.jgl.Deque
Insert an object in front of my first element.
pushFront(Object). Method in class COM.objectspace.jgl.DList
Insert an object in front of my first element.
pushFront(Object). Method in interface COM.objectspace.jgl.Sequence
Insert an object in front of my first element.
pushFront(Object). Method in class COM.objectspace.jgl.SList
Insert an object in front of my first element.
pushFront(Object). Method in class COM.objectspace.jgl.VectorArray
Insert an object in front of my first element.
pushHeap(BidirectionalIterator, BidirectionalIterator). Static method in class COM.objectspace.jgl.Heap
Assuming that a sequence is already organized as a heap, insert the element that is immediately after the sequence into the heap.
pushHeap(BidirectionalIterator, BidirectionalIterator, BinaryPredicate). Static method in class COM.objectspace.jgl.Heap
Assuming that a sequence is already organized as a heap, insert the element that is immediately after the sequence into the heap.
put(int, Object). Method in class COM.objectspace.jgl.Array
Set the element at the specified index to a particular object.
put(int, Object). Method in class COM.objectspace.jgl.ArrayIterator
Write an object at a specified distance from my current position.
put(int, Object). Method in interface COM.objectspace.jgl.BidirectionalIterator
Replace the object at a specified distance from my current position.
put(int, Object). Method in class COM.objectspace.jgl.BooleanArray
Set the object at a specified index.
put(int, Object). Method in class COM.objectspace.jgl.BooleanIterator
Write an object at a specified distance from my current position.
put(int, Object). Method in class COM.objectspace.jgl.ByteArray
Set the object at a specified index.
put(int, Object). Method in class COM.objectspace.jgl.ByteIterator
Write an object at a specified distance from my current position.
put(int, Object). Method in class COM.objectspace.jgl.CharArray
Set the object at a specified index.
put(int, Object). Method in class COM.objectspace.jgl.CharIterator
Write an object at a specified distance from my current position.
put(int, Object). Method in class COM.objectspace.jgl.Deque
Set the element at the specified index to a particular object.
put(int, Object). Method in class COM.objectspace.jgl.DequeIterator
Write an object at a specified distance from my current position.
put(int, Object). Method in class COM.objectspace.jgl.DList
Set the element at the specified index to a particular object.
put(int, Object). Method in class COM.objectspace.jgl.DListIterator
Write an object at a specified distance from my current position.
put(int, Object). Method in class COM.objectspace.jgl.DoubleArray
Set the object at a specified index.
put(int, Object). Method in class COM.objectspace.jgl.DoubleIterator
Write an object at a specified distance from my current position.
put(int, Object). Method in class COM.objectspace.jgl.FloatArray
Set the object at a specified index.
put(int, Object). Method in class COM.objectspace.jgl.FloatIterator
Write an object at a specified distance from my current position.
put(int, Object). Method in class COM.objectspace.jgl.IntArray
Set the object at a specified index.
put(int, Object). Method in class COM.objectspace.jgl.IntIterator
Write an object at a specified distance from my current position.
put(int, Object). Method in class COM.objectspace.jgl.LongArray
Set the object at a specified index.
put(int, Object). Method in class COM.objectspace.jgl.LongIterator
Write an object at a specified distance from my current position.
put(int, Object). Method in class COM.objectspace.jgl.ObjectArray
Set the object at a specified index.
put(int, Object). Method in class COM.objectspace.jgl.ObjectIterator
Write an object at a specified distance from my current position.
put(int, Object). Method in class COM.objectspace.jgl.OrderedMapIterator
Write an object at a specified distance from my current position.
put(int, Object). Method in class COM.objectspace.jgl.OrderedSetIterator
Write an object at a specified distance from my current position.
put(int, Object). Method in class COM.objectspace.jgl.ReverseIterator
Write an object at a specified distance from my current position.
put(int, Object). Method in interface COM.objectspace.jgl.Sequence
Set the object at a specified index.
put(int, Object). Method in class COM.objectspace.jgl.ShortArray
Set the object at a specified index.
put(int, Object). Method in class COM.objectspace.jgl.ShortIterator
Write an object at a specified distance from my current position.
put(int, Object). Method in class COM.objectspace.jgl.SList
Set the element at the specified index to a particular object.
put(int, Object). Method in class COM.objectspace.jgl.VectorArray
Set the object at a specified index.
put(int, Object). Method in class COM.objectspace.jgl.VectorIterator
Write an object at a specified distance from my current position.
put(Object). Method in class COM.objectspace.jgl.ArrayIterator
Set the object at my current position to a specified value.
put(Object). Method in class COM.objectspace.jgl.BooleanIterator
Set the object at my current position to a specified value.
put(Object). Method in class COM.objectspace.jgl.ByteIterator
Set the object at my current position to a specified value.
put(Object). Method in class COM.objectspace.jgl.CharIterator
Set the object at my current position to a specified value.
put(Object). Method in class COM.objectspace.jgl.DequeIterator
Set the object at my current position to a specified value.
put(Object). Method in class COM.objectspace.jgl.DListIterator
Set the object at my current position to a specified value.
put(Object). Method in class COM.objectspace.jgl.DoubleIterator
Set the object at my current position to a specified value.
put(Object). Method in class COM.objectspace.jgl.FloatIterator
Set the object at my current position to a specified value.
put(Object). Method in class COM.objectspace.jgl.HashMapIterator
Set the object at my current position to a specified value.
put(Object). Method in class COM.objectspace.jgl.HashSet
If the object doesn't exist, add the object and return null, otherwise replace the first object that matches and return the old object.
put(Object). Method in class COM.objectspace.jgl.HashSetIterator
HashSet the object at my current position to a specified value.
put(Object). Method in class COM.objectspace.jgl.InsertIterator
Insert the object to my associated container using add().
put(Object). Method in class COM.objectspace.jgl.IntIterator
Set the object at my current position to a specified value.
put(Object). Method in class COM.objectspace.jgl.LongIterator
Set the object at my current position to a specified value.
put(Object). Method in class COM.objectspace.jgl.ObjectIterator
Set the object at my current position to a specified value.
put(Object). Method in class COM.objectspace.jgl.ObjectOutputStreamIterator
Print the object to my ObjectOutputStream.
put(Object). Method in class COM.objectspace.jgl.OrderedMapIterator
Set the object at my current position to a specified value.
put(Object). Method in class COM.objectspace.jgl.OrderedSet
If the object doesn't exist, add the object and return null, otherwise replace the first object that matches and return the old object.
put(Object). Method in class COM.objectspace.jgl.OrderedSetIterator
OrderedSet the object at my current position to a specified value.
put(Object). Method in interface COM.objectspace.jgl.OutputIterator
Set the object at my current position to a specified value.
put(Object). Method in class COM.objectspace.jgl.OutputStreamIterator
Print the object to my OutputStream.
put(Object). Method in class COM.objectspace.jgl.ReverseIterator
Set the object at my current position to a specified value.
put(Object). Method in interface COM.objectspace.jgl.Set
If the object doesn't exist, add the object and return null, otherwise replace the first object that matches and return the old object.
put(Object). Method in class COM.objectspace.jgl.ShortIterator
Set the object at my current position to a specified value.
put(Object). Method in class COM.objectspace.jgl.SListIterator
Set the object at my current position to a specified value.
put(Object). Method in class COM.objectspace.jgl.VectorIterator
Set the object at my current position to a specified value.
put(Object, Object). Method in class java.util.Dictionary
Maps the specified key to the specified value in this dictionary.
put(Object, Object). Method in class COM.objectspace.jgl.HashMap
If the key doesn't exist, associate the value with the key and return null, otherwise replace the first value associated with the key and return the old value.
put(Object, Object). Method in class java.util.Hashtable
Maps the specified key to the specified value in this hashtable.
put(Object, Object). Method in class COM.objectspace.jgl.OrderedMap
If the key doesn't exist, associate the value with the key and return null, otherwise replace the first value associated with the key and return the old value.

Q

Queue(). Constructor for class COM.objectspace.jgl.Queue
Construct myself to be an empty Queue.
Queue(Queue). Constructor for class COM.objectspace.jgl.Queue
Construct myself to be a shallow copy of a specified Queue.
Queue(Sequence). Constructor for class COM.objectspace.jgl.Queue
Construct myself with a specified Sequence as my underlying implementation.

R

random(). Static method in class java.lang.Math
Returns a random number between 0.0 and 1.0.
Random(). Constructor for class CH.rubin.util.Random
The same as the original java.util.Random(), but does save the used seed for later reuse.
Random(). Constructor for class java.util.Random
Creates a new random number generator.
Random(long). Constructor for class CH.rubin.util.Random
The same as the original java.util.Random(long), but does save the used seed for later reuse.
Random(long). Constructor for class java.util.Random
Creates a new random number generator using a single long seed.
Randomizer(). Constructor for class COM.objectspace.jgl.Randomizer
Initializes the generator using a seed based on the current time.
Randomizer(long). Constructor for class COM.objectspace.jgl.Randomizer
Initializes the generator using a specific seed; useful for generating a repeatable stream of random numbers.
randomShuffle(BidirectionalIterator, BidirectionalIterator). Static method in class CH.rubin.util.Shuffling
Shuffle a sequence with uniform distribution by performing as many random swaps as there are elements.
randomShuffle(BidirectionalIterator, BidirectionalIterator). Static method in class COM.objectspace.jgl.Shuffling
Shuffle a sequence with uniform distribution by performing as many random swaps as there are elements.
randomShuffle(Container). Static method in class CH.rubin.util.Shuffling
Shuffle a random access container with uniform distribution by performing as many random swaps as there are elements.
randomShuffle(Container). Static method in class COM.objectspace.jgl.Shuffling
Shuffle a random access container with uniform distribution by performing as many random swaps as there are elements.
Range(). Constructor for class COM.objectspace.jgl.Range
Construct myself to hold a pair of iterators initially null.
Range(ForwardIterator, ForwardIterator). Constructor for class COM.objectspace.jgl.Range
Construct myself to hold a pair of iterators.
regionMatches(boolean, int, String, int, int). Method in class java.lang.String
Tests if two string regions are equal.
regionMatches(int, String, int, int). Method in class java.lang.String
Tests if two string regions are equal.
rehash(). Method in class java.util.Hashtable
Rehashes the contents of the hashtable into a hashtable with a larger capacity.
reject(Container, UnaryPredicate). Static method in class COM.objectspace.jgl.Filtering
Reject elements in a container.
reject(ForwardIterator, ForwardIterator, UnaryPredicate). Static method in class COM.objectspace.jgl.Filtering
Reject elements in a range.
remove(Enumeration). Method in class COM.objectspace.jgl.Array
Remove the element at a particular position.
remove(Enumeration). Method in class COM.objectspace.jgl.ArrayAdapter
Remove the element at a particular position.
remove(Enumeration). Method in interface COM.objectspace.jgl.Container
Remove the element at a particular position.
remove(Enumeration). Method in class COM.objectspace.jgl.Deque
Remove the element at a particular position.
remove(Enumeration). Method in class COM.objectspace.jgl.DList
Remove the element at a particular position.
remove(Enumeration). Method in class COM.objectspace.jgl.HashMap
Remove the element at a particular position.
remove(Enumeration). Method in class COM.objectspace.jgl.HashSet
Remove the element at a particular position.
remove(Enumeration). Method in class COM.objectspace.jgl.OrderedMap
Remove the element at a particular position and return its value.
remove(Enumeration). Method in class COM.objectspace.jgl.OrderedSet
Remove the element at a particular position.
remove(Enumeration). Method in class COM.objectspace.jgl.PriorityQueue
Remove the element at a particular position.
remove(Enumeration). Method in class COM.objectspace.jgl.Queue
Remove the element at a particular position.
remove(Enumeration). Method in class COM.objectspace.jgl.SList
Remove the element at a particular position.
remove(Enumeration). Method in class COM.objectspace.jgl.Stack
Remove the element at a particular position.
remove(Enumeration, Enumeration). Method in class COM.objectspace.jgl.Array
Remove the elements in the specified range.
remove(Enumeration, Enumeration). Method in class COM.objectspace.jgl.ArrayAdapter
Remove the elements in the specified range.
remove(Enumeration, Enumeration). Method in interface COM.objectspace.jgl.Container
Remove the elements in the specified range.
remove(Enumeration, Enumeration). Method in class COM.objectspace.jgl.Deque
Remove the elements in the range [ first..last ).
remove(Enumeration, Enumeration). Method in class COM.objectspace.jgl.DList
Remove the elements in the range [ first..last ).
remove(Enumeration, Enumeration). Method in class COM.objectspace.jgl.HashMap
Remove the elements within a specified range.
remove(Enumeration, Enumeration). Method in class COM.objectspace.jgl.HashSet
Remove the elements within a specified range.
remove(Enumeration, Enumeration). Method in class COM.objectspace.jgl.OrderedMap
Remove the elements within a specified range, returning the first value of the key in that range.
remove(Enumeration, Enumeration). Method in class COM.objectspace.jgl.OrderedSet
Remove the elements within a specified range.
remove(Enumeration, Enumeration). Method in class COM.objectspace.jgl.PriorityQueue
Remove the elements in the specified range.
remove(Enumeration, Enumeration). Method in class COM.objectspace.jgl.Queue
Remove the elements in the specified range.
remove(Enumeration, Enumeration). Method in class COM.objectspace.jgl.SList
Remove the elements in the range [ first..last ).
remove(Enumeration, Enumeration). Method in class COM.objectspace.jgl.Stack
Remove the elements in the specified range.
remove(Enumeration, Enumeration, Object). Method in class COM.objectspace.jgl.DList
Remove all elements within a specified range that match a particular object and return the number of objects that were removed.
remove(Enumeration, Enumeration, Object). Method in class COM.objectspace.jgl.SList
Remove all elements within a specified range that match a particular object and return the number of objects that were removed.
remove(ForwardIterator, ForwardIterator, Object). Static method in class COM.objectspace.jgl.Removing
Remove all occurrences of an object from a sequence.
remove(int). Method in class COM.objectspace.jgl.Array
Remove the element at a particular index.
remove(int). Method in class COM.objectspace.jgl.Deque
Remove the element at a particular index.
remove(int). Method in class COM.objectspace.jgl.DList
Remove the element at a particular index.
remove(int). Method in class COM.objectspace.jgl.SList
Remove the element at a particular index.
remove(int, int). Method in class COM.objectspace.jgl.Array
Remove the elements within a range of indices.
remove(int, int). Method in class COM.objectspace.jgl.Deque
Remove the elements within a range of indices.
remove(int, int). Method in class COM.objectspace.jgl.DList
Remove the elements within a range of indices.
remove(int, int). Method in class COM.objectspace.jgl.SList
Remove the elements in the specified range.
remove(int, int, Object). Method in class COM.objectspace.jgl.Array
Remove all elements within a range of indices that match a particular object and return the number of objects that were removed.
remove(int, int, Object). Method in class COM.objectspace.jgl.ArrayAdapter
Remove all elements within a specified range that match a particular object and return the number of objects that were removed.
remove(int, int, Object). Method in class COM.objectspace.jgl.Deque
Remove all elements within a range of indices that match a particular object and return the number of objects that were removed.
remove(int, int, Object). Method in class COM.objectspace.jgl.DList
Remove all elements within a specified range that match a particular object and return the number of objects that were removed.
remove(int, int, Object). Method in interface COM.objectspace.jgl.Sequence
Remove all elements within a specified range that match a particular object and return the number of objects that were removed.
remove(int, int, Object). Method in class COM.objectspace.jgl.SList
Remove all elements within a specified range that match a particular object and return the number of objects that were removed.
remove(int, int, Object). Method in class COM.objectspace.jgl.VectorArray
Remove all elements within a specified range that match a particular object and return the number of objects that were removed.
remove(Object). Method in class COM.objectspace.jgl.Array
Remove all elements that match a particular object and return the number of objects that were removed.
remove(Object). Method in class COM.objectspace.jgl.ArrayAdapter
Remove all elements that match a specified object and return the number of objects that were removed.
remove(Object). Method in class COM.objectspace.jgl.Deque
Remove all elements that match a particular object and return the numbers of objects that were removed.
remove(Object). Method in class java.util.Dictionary
Removes the key (and its corresponding value) from this dictionary.
remove(Object). Method in class COM.objectspace.jgl.DList
Remove all elements that match a particular object and return the numbers of objects that were removed.
remove(Object). Method in class COM.objectspace.jgl.HashMap
Remove all key/value pairs that match a particular key.
remove(Object). Method in class COM.objectspace.jgl.HashSet
Remove all objects that match the given object.
remove(Object). Method in class java.util.Hashtable
Removes the key (and its corresponding value) from this hashtable.
remove(Object). Method in class COM.objectspace.jgl.OrderedMap
If I contain key/value pair(s) that matches a particular key, remove them all and return the number of pairs removed.
remove(Object). Method in class COM.objectspace.jgl.OrderedSet
Remove all objects that match the given object.
remove(Object). Method in interface COM.objectspace.jgl.Sequence
Remove all elements that match a specified object and return the number of objects that were removed.
remove(Object). Method in interface COM.objectspace.jgl.Set
Remove all objects that match the given object.
remove(Object). Method in class COM.objectspace.jgl.SList
Remove all elements that match a particular object and return the numbers of objects that were removed.
remove(Object). Method in class COM.objectspace.jgl.VectorArray
Remove all elements that match a specified object and return the number of objects that were removed.
remove(Object, int). Method in class COM.objectspace.jgl.Array
Remove at most a given number of elements that match a particular object and return the number of objects that were removed.
remove(Object, int). Method in class COM.objectspace.jgl.ArrayAdapter
Remove at most a given number of elements that match a specified object and return the number of objects that were removed.
remove(Object, int). Method in class COM.objectspace.jgl.Deque
Remove at most a given number of elements that match a particular object and return the number of objects that were removed.
remove(Object, int). Method in class COM.objectspace.jgl.DList
Remove at most a given number of elements that match a particular object and return the number of objects that were removed.
remove(Object, int). Method in class COM.objectspace.jgl.HashMap
Remove at most a given number of key/value pairs that match a particular key.
remove(Object, int). Method in class COM.objectspace.jgl.HashSet
Remove at most a given number of objects that match the given object.
remove(Object, int). Method in class COM.objectspace.jgl.OrderedMap
If I contain key/value pair(s) that matches a particular key, remove at most a given number and return the number of pairs removed.
remove(Object, int). Method in class COM.objectspace.jgl.OrderedSet
Remove at most a given number of objects that match the given object.
remove(Object, int). Method in interface COM.objectspace.jgl.Sequence
Remove at most a given number of elements that match a specified object and return the number of objects that were removed.
remove(Object, int). Method in interface COM.objectspace.jgl.Set
Remove at most a given number of objects that match the given object.
remove(Object, int). Method in class COM.objectspace.jgl.SList
Remove at most a given number of elements that match a particular object and return the number of objects that were removed.
remove(Object, int). Method in class COM.objectspace.jgl.VectorArray
Remove at most a given number of elements that match a specified object and return the number of objects that were removed.
remove(Sequence, Object). Static method in class COM.objectspace.jgl.Removing
Remove all occurrences of an object from a sequence.
removeAllElements(). Method in class java.util.Vector
Removes all components from this vector and sets its size to zero.
removeCopy(Container, Container, Object). Static method in class COM.objectspace.jgl.Removing
Copy one container to another container, skipping any occurrences of a particular object.
removeCopy(Container, OutputIterator, Object). Static method in class COM.objectspace.jgl.Removing
Copy a container to a sequence, skipping any occurrences of a particular object.
removeCopy(InputIterator, InputIterator, OutputIterator, Object). Static method in class COM.objectspace.jgl.Removing
Copy one sequence to another sequence, skipping any occurrences of a particular object.
removeCopyIf(Container, Container, UnaryPredicate). Static method in class COM.objectspace.jgl.Removing
Copy one container to another container, skipping all objects that satisfy a predicate.
removeCopyIf(Container, OutputIterator, UnaryPredicate). Static method in class COM.objectspace.jgl.Removing
Copy a container to a sequence, skipping all objects that satisfy a predicate.
removeCopyIf(InputIterator, InputIterator, OutputIterator, UnaryPredicate). Static method in class COM.objectspace.jgl.Removing
Copy one sequence to another sequence, skipping all objects that satisfy a predicate.
removeEdgeXY(int, int). Method in class CH.rubin.matching.Graph2DM
Remove the edge between the points x and y.
removeElement(Object). Method in class java.util.Vector
Removes the first occurrence of the argument from this vector.
removeElementAt(int). Method in class java.util.Vector
Deletes the component at the specified index.
removeIf(ForwardIterator, ForwardIterator, UnaryPredicate). Static method in class COM.objectspace.jgl.Removing
Remove all objects in a sequence that satisfy a predicate from a sequence.
removeIf(Sequence, UnaryPredicate). Static method in class COM.objectspace.jgl.Removing
Remove all objects in a sequence that satisfy a predicate from a container.
replace(char, char). Method in class java.lang.String
Returns a new string resulting from replacing all occurrences of oldChar in this string with newChar.
replace(Container, Object, Object). Static method in class COM.objectspace.jgl.Replacing
Traverse a container and replace every occurrence of a particular object with another.
replace(DListIterator, DListIterator, Object, Object). Method in class COM.objectspace.jgl.DList
Replace all elements within a specified range that match a particular object with a new value and return the number of objects that were replaced.
replace(ForwardIterator, ForwardIterator, Object, Object). Static method in class COM.objectspace.jgl.Replacing
Traverse a sequence and replace every occurrence of a particular object with another.
replace(int, int, Object, Object). Method in class COM.objectspace.jgl.Array
Replace all elements within a range of indices that match a particular object with a new value and return the number of objects that were replaced.
replace(int, int, Object, Object). Method in class COM.objectspace.jgl.ArrayAdapter
Replace all elements within a specified range that match a particular object with a new value and return the number of objects that were replaced.
replace(int, int, Object, Object). Method in class COM.objectspace.jgl.Deque
Replace all elements within a range of indices that match a particular object with a new value and return the number of objects that were replaced.
replace(int, int, Object, Object). Method in class COM.objectspace.jgl.DList
Replace all elements within a specified range that match a particular object with a new value and return the number of objects that were replaced.
replace(int, int, Object, Object). Method in interface COM.objectspace.jgl.Sequence
Replace all elements within a specified range that match a particular object with a new value and return the number of objects that were replaced.
replace(int, int, Object, Object). Method in class COM.objectspace.jgl.SList
Replace all elements within a specified range that match a particular object with a new value and return the number of objects that were replaced.
replace(Object, Object). Method in class COM.objectspace.jgl.Array
Replace all elements that match a particular object with a new value and return the number of objects that were replaced.
replace(Object, Object). Method in class COM.objectspace.jgl.ArrayAdapter
Replace all elements that match a particular object with a new value and return the number of objects that were replaced.
replace(Object, Object). Method in class COM.objectspace.jgl.Deque
Replace all elements that match a particular object with a new value and return the number of objects that were replaced.
replace(Object, Object). Method in class COM.objectspace.jgl.DList
Replace all elements that match a particular object with a new value and return the number of objects that were replaced.
replace(Object, Object). Method in interface COM.objectspace.jgl.Sequence
Replace all elements that match a particular object with a new value and return the number of objects that were replaced.
replace(Object, Object). Method in class COM.objectspace.jgl.SList
Replace all elements that match a particular object with a new value and return the number of objects that were replaced.
replace(SListIterator, SListIterator, Object, Object). Method in class COM.objectspace.jgl.SList
Replace all elements within a specified range that match a particular object with a new value and return the number of objects that were replaced.
replaceCopy(Container, Container, Object, Object). Static method in class COM.objectspace.jgl.Replacing
Copy a container to another container, replacing all occurrences of a particular object with another.
replaceCopy(Container, OutputIterator, Object, Object). Static method in class COM.objectspace.jgl.Replacing
Copy a container to a sequence, replacing all occurrences of a particular object with another.
replaceCopy(InputIterator, InputIterator, OutputIterator, Object, Object). Static method in class COM.objectspace.jgl.Replacing
Copy one sequence to another of the same size, replacing all occurrences of a particular object with another.
replaceCopyIf(Container, Container, UnaryPredicate, Object). Static method in class COM.objectspace.jgl.Replacing
Copy a container to another container, replacing all objects that satisfy a predicate with another.
replaceCopyIf(Container, OutputIterator, UnaryPredicate, Object). Static method in class COM.objectspace.jgl.Replacing
Copy a container to a sequence, replacing all objects that satisfy a predicate with another.
replaceCopyIf(InputIterator, InputIterator, OutputIterator, UnaryPredicate, Object). Static method in class COM.objectspace.jgl.Replacing
Copy one sequence to another of the same size, replacing all objects that satisfy a predicate with another.
replaceIf(Container, UnaryPredicate, Object). Static method in class COM.objectspace.jgl.Replacing
Traverse a container and replace every object that satisfies a predicate with another.
replaceIf(ForwardIterator, ForwardIterator, UnaryPredicate, Object). Static method in class COM.objectspace.jgl.Replacing
Traverse a sequence and replace every object that satisfies a predicate with another.
resetStatInfo(). Method in class CH.rubin.matching.Triplets
Reset the statistical information which are different for the different solution methods.
Solution methods are:
resolveClass(Class). Method in class java.lang.ClassLoader
Resolves the class so that an instance of the class can be created, or so that one of its methods can be called.
ResourceBundle(). Constructor for class java.util.ResourceBundle
resume(). Method in class java.lang.Thread
Resumes a suspended thread.
resume(). Method in class java.lang.ThreadGroup
Resumes all processes in this thread group.
retreat(). Method in class COM.objectspace.jgl.ArrayIterator
Retreat by one.
retreat(). Method in interface COM.objectspace.jgl.BidirectionalIterator
Retreat by one.
retreat(). Method in class COM.objectspace.jgl.BooleanIterator
Retreat by one.
retreat(). Method in class COM.objectspace.jgl.ByteIterator
Retreat by one.
retreat(). Method in class COM.objectspace.jgl.CharIterator
Retreat by one.
retreat(). Method in class COM.objectspace.jgl.DequeIterator
Retreat by one.
retreat(). Method in class COM.objectspace.jgl.DListIterator
Retreat by one.
retreat(). Method in class COM.objectspace.jgl.DoubleIterator
Retreat by one.
retreat(). Method in class COM.objectspace.jgl.FloatIterator
Retreat by one.
retreat(). Method in class COM.objectspace.jgl.IntIterator
Retreat by one.
retreat(). Method in class COM.objectspace.jgl.LongIterator
Retreat by one.
retreat(). Method in class COM.objectspace.jgl.ObjectIterator
Retreat by one.
retreat(). Method in class COM.objectspace.jgl.OrderedMapIterator
Retreat by one.
retreat(). Method in class COM.objectspace.jgl.OrderedSetIterator
Retreat by one.
retreat(). Method in class COM.objectspace.jgl.ReverseIterator
Retreat by one.
retreat(). Method in class COM.objectspace.jgl.ShortIterator
Retreat by one.
retreat(). Method in class COM.objectspace.jgl.VectorIterator
Retreat by one.
retreat(int). Method in class COM.objectspace.jgl.ArrayIterator
Retreat by a specified amount.
retreat(int). Method in interface COM.objectspace.jgl.BidirectionalIterator
Retreat by a specified amount.
retreat(int). Method in class COM.objectspace.jgl.BooleanIterator
Retreat by a specified amount.
retreat(int). Method in class COM.objectspace.jgl.ByteIterator
Retreat by a specified amount.
retreat(int). Method in class COM.objectspace.jgl.CharIterator
Retreat by a specified amount.
retreat(int). Method in class COM.objectspace.jgl.DequeIterator
Retreat by a specified amount.
retreat(int). Method in class COM.objectspace.jgl.DListIterator
Retreat by a specified amount.
retreat(int). Method in class COM.objectspace.jgl.DoubleIterator
Retreat by a specified amount.
retreat(int). Method in class COM.objectspace.jgl.FloatIterator
Retreat by a specified amount.
retreat(int). Method in class COM.objectspace.jgl.IntIterator
Retreat by a specified amount.
retreat(int). Method in class COM.objectspace.jgl.LongIterator
Retreat by a specified amount.
retreat(int). Method in class COM.objectspace.jgl.ObjectIterator
Retreat by a specified amount.
retreat(int). Method in class COM.objectspace.jgl.OrderedMapIterator
Retreat by a specified amount.
retreat(int). Method in class COM.objectspace.jgl.OrderedSetIterator
Retreat by a specified amount.
retreat(int). Method in class COM.objectspace.jgl.ReverseIterator
Retreat by a specified amount.
retreat(int). Method in class COM.objectspace.jgl.ShortIterator
Retreat by a specified amount.
retreat(int). Method in class COM.objectspace.jgl.VectorIterator
Retreat by a specified amount.
reverse(). Method in class COM.objectspace.jgl.DList
Reverse the order of my elements.
reverse(). Method in class java.lang.StringBuffer
The character sequence contained in this string buffer is replaced by the reverse of the sequence.
reverse(BidirectionalIterator, BidirectionalIterator). Static method in class COM.objectspace.jgl.Reversing
Reverse a sequence.
reverse(Container). Static method in class COM.objectspace.jgl.Reversing
Reverse a container.
reverseCopy(BidirectionalIterator, BidirectionalIterator, OutputIterator). Static method in class COM.objectspace.jgl.Reversing
Copy the reverse of a sequence into another sequence of the same size.
reverseCopy(Container, Container). Static method in class COM.objectspace.jgl.Reversing
Copy the reverse of a container into another container.
reverseCopy(Container, OutputIterator). Static method in class COM.objectspace.jgl.Reversing
Copy the reverse of a container into a sequence.
ReverseIterator(BidirectionalIterator). Constructor for class COM.objectspace.jgl.ReverseIterator
Construct myself to operate using a bidirectional iterator.
ReverseIterator(ReverseIterator). Constructor for class COM.objectspace.jgl.ReverseIterator
Construct myself to be a copy of an existing iterator.
rint(double). Static method in class java.lang.Math
returns the closest integer to the argument.
roll(int, boolean). Method in class java.util.Calendar
Time Field Rolling function.
roll(int, boolean). Method in class java.util.GregorianCalendar
Overrides Calendar Time Field Rolling function.
rotate(ForwardIterator, ForwardIterator, ForwardIterator). Static method in class COM.objectspace.jgl.Rotating
Rotate a sequence to the left.
rotateCopy(ForwardIterator, ForwardIterator, ForwardIterator, OutputIterator). Static method in class COM.objectspace.jgl.Rotating
Perform the same operations as rotate(), except that that the result is placed into a separate sequence.
round(double). Static method in class java.lang.Math
Returns the closest long to the argument.
round(float). Static method in class java.lang.Math
Returns the closest int to the argument.
run(). Method in interface java.lang.Runnable
When an object implementing interface Runnable is used to create a thread, starting the thread causes the object's run method to be called in that separately executing thread.
run(). Method in class java.lang.Thread
If this thread was constructed using a separate Runnable run object, then that Runnable object's run method is called; otherwise, this method does nothing and returns.
runFinalization(). Method in class java.lang.Runtime
Runs the finalization methods of any objects pending finalization.
runFinalization(). Static method in class java.lang.System
Runs the finalization methods of any objects pending finalization.
runFinalizersOnExit(boolean). Static method in class java.lang.Runtime
Enable or disable finalization on exit; doing so specifies that the finalizers of all objects that have finalizers that have not yet been automatically invoked are to be run before the Java runtime exits.
runFinalizersOnExit(boolean). Static method in class java.lang.System
Enable or disable finalization on exit; doing so specifies that the finalizers of all objects that have finalizers that have not yet been automatically invoked are to be run before the Java runtime exits.
RuntimeException(). Constructor for class java.lang.RuntimeException
Constructs a RuntimeException with no detail message.
RuntimeException(String). Constructor for class java.lang.RuntimeException
Constructs a RuntimeException with the specified detail message.

S

SATURDAY. Static variable in class java.util.Calendar
Useful constant for days of week.
save(OutputStream, String). Method in class java.util.Properties
Stores this property list to the specified output stream.
search(Object). Method in class java.util.Stack
Returns where an object is on this stack.
SECOND. Static variable in class java.util.Calendar
Useful constant for date and time.
second. Variable in class COM.objectspace.jgl.Pair
The second object.
SecurityException(). Constructor for class java.lang.SecurityException
Constructs a SecurityException with no detail message.
SecurityException(String). Constructor for class java.lang.SecurityException
Constructs a SecurityException with the specified detail message.
SecurityManager(). Constructor for class java.lang.SecurityManager
Constructs a new SecurityManager.
seed(). Method in class CH.rubin.matching.GraphBipartiteEqual
Get the seed which has been used to generate this graph, if it was generated randomly
seed(). Method in class CH.rubin.util.Random
Gives the seed which was used to initialise the random generator.
seed(). Method in class CH.rubin.matching.Triplets
Returns the seed which was used during construction of this class.
select(Container, UnaryPredicate). Static method in class COM.objectspace.jgl.Filtering
Select elements in a container.
select(ForwardIterator, ForwardIterator, UnaryPredicate). Static method in class COM.objectspace.jgl.Filtering
Select elements in a range.
SelectFirst(). Constructor for class COM.objectspace.jgl.SelectFirst
SelectSecond(). Constructor for class COM.objectspace.jgl.SelectSecond
SEPTEMBER. Static variable in class java.util.Calendar
Useful constant for month.
set(int). Method in class java.util.BitSet
Sets a bit.
set(int, int). Method in class java.util.Calendar
Sets the time field with the given value.
set(int, int, int). Method in class java.util.Calendar
Sets the values for the fields year, month, and date.
set(int, int, int, int, int). Method in class java.util.Calendar
Sets the values for the fields year, month, date, hour, and minute.
set(int, int, int, int, int, int). Method in class java.util.Calendar
Sets the values for the fields year, month, date, hour, minute, and second.
setChanged(). Method in class java.util.Observable
Indicates that this object has changed.
setCharAt(int, char). Method in class java.lang.StringBuffer
The character at the specified index of this string buffer is set to ch.
setDaemon(boolean). Method in class java.lang.Thread
Marks this thread as either a daemon thread or a user thread.
setDaemon(boolean). Method in class java.lang.ThreadGroup
Changes the daemon status of this thread group.
setDate(int). Method in class java.util.Date
Sets the day of the month of this date to the specified value.
setDefault(Locale). Static method in class java.util.Locale
Sets the default.
setDefault(TimeZone). Static method in class java.util.TimeZone
Sets time zone to using the given TimeZone.
setDifference(Container, Container, OutputIterator, BinaryPredicate). Static method in class COM.objectspace.jgl.OrderedSetOperations
Place the sorted difference of two containers into a sequence.
setDifference(Container, Container, OutputIterator, BinaryPredicate). Static method in class COM.objectspace.jgl.SetOperations
Place the sorted difference of two containers into a sequence.
setDifference(InputIterator, InputIterator, InputIterator, InputIterator, OutputIterator). Static method in class COM.objectspace.jgl.OrderedSetOperations
Place the sorted difference of two sequences into another sequence.
setDifference(InputIterator, InputIterator, InputIterator, InputIterator, OutputIterator). Static method in class COM.objectspace.jgl.SetOperations
Place the sorted difference of two sequences into another sequence.
setDifference(InputIterator, InputIterator, InputIterator, InputIterator, OutputIterator, BinaryPredicate). Static method in class COM.objectspace.jgl.OrderedSetOperations
Place the sorted difference of two sequences into another sequence.
setDifference(InputIterator, InputIterator, InputIterator, InputIterator, OutputIterator, BinaryPredicate). Static method in class COM.objectspace.jgl.SetOperations
Place the sorted difference of two sequences into another sequence.
setEdgeXY(int, int). Method in class CH.rubin.matching.GraphBipartiteEqual
Inserts a new edge in the graph
setElementAt(Object, int). Method in class java.util.Vector
Sets the component at the specified index of this vector to be the specified object.
setEndRule(int, int, int, int). Method in class java.util.SimpleTimeZone
Sets the daylight savings ending rule.
setErr(PrintStream). Static method in class java.lang.System
Reassigns the "standard" error output stream.
setFirstDayOfWeek(int). Method in class java.util.Calendar
Sets what the first day of the week is; e.g., Sunday in US, Monday in France.
setGregorianChange(Date). Method in class java.util.GregorianCalendar
Sets the GregorianCalendar change date.
setHours(int). Method in class java.util.Date
Sets the hour of this date to the specified value.
setID(String). Method in class java.util.TimeZone
Sets the time zone ID.
setIn(InputStream). Static method in class java.lang.System
Reassigns the "standard" input stream.
setIntersection(Container, Container, OutputIterator, BinaryPredicate). Static method in class COM.objectspace.jgl.OrderedSetOperations
Place the sorted intersection of two containers into a sequence.
setIntersection(Container, Container, OutputIterator, BinaryPredicate). Static method in class COM.objectspace.jgl.SetOperations
Place the sorted intersection of two containers into a sequence.
setIntersection(InputIterator, InputIterator, InputIterator, InputIterator, OutputIterator). Static method in class COM.objectspace.jgl.OrderedSetOperations
Place the sorted intersection of two sequences into another sequence.
setIntersection(InputIterator, InputIterator, InputIterator, InputIterator, OutputIterator). Static method in class COM.objectspace.jgl.SetOperations
Place the sorted intersection of two sequences into another sequence.
setIntersection(InputIterator, InputIterator, InputIterator, InputIterator, OutputIterator, BinaryPredicate). Static method in class COM.objectspace.jgl.OrderedSetOperations
Place the sorted intersection of two sequences into another sequence.
setIntersection(InputIterator, InputIterator, InputIterator, InputIterator, OutputIterator, BinaryPredicate). Static method in class COM.objectspace.jgl.SetOperations
Place the sorted intersection of two sequences into another sequence.
setLength(int). Method in class java.lang.StringBuffer
Sets the length of this String buffer.
setLenient(boolean). Method in class java.util.Calendar
Specify whether or not date/time interpretation is to be lenient.
setMaxPriority(int). Method in class java.lang.ThreadGroup
Sets the maximum priority of the group.
setMinimalDaysInFirstWeek(int). Method in class java.util.Calendar
Sets what the minimal days required in the first week of the year are; For example, if the first week is defined as one that contains the first day of the first month of a year, call the method with value 1.
setMinutes(int). Method in class java.util.Date
Sets the minutes of this date to the specified value.
setMonth(int). Method in class java.util.Date
Sets the month of this date to the specified value.
setName(String). Method in class java.lang.Thread
Changes the name of this thread to be equal to the argument name.
SetOperations(). Constructor for class COM.objectspace.jgl.SetOperations
setOut(PrintStream). Static method in class java.lang.System
Reassigns the "standard" output stream.
setParent(ResourceBundle). Method in class java.util.ResourceBundle
Set the parent bundle of this bundle.
setPriority(int). Method in class java.lang.Thread
Changes the priority of this thread.
setProperties(Properties). Static method in class java.lang.System
Sets the system properties to the Properties argument.
setRawOffset(int). Method in class java.util.SimpleTimeZone
Overrides TimeZone Sets the base time zone offset to GMT.
setRawOffset(int). Method in class java.util.TimeZone
Sets the base time zone offset to GMT.
setSeconds(int). Method in class java.util.Date
Sets the seconds of this date to the specified value.
setSecurityManager(SecurityManager). Static method in class java.lang.System
Sets the System security.
setSeed(long). Method in class CH.rubin.matching.GraphBipartiteEqual
sets the internal random generator to the given seed
setSeed(long). Method in class CH.rubin.util.Random
The same as the original java.util.Random.setSeed(long), but does save the used seed for later reuse.
setSeed(long). Method in class java.util.Random
Sets the seed of this random number generator using a single long seed.
setSeed(long). Static method in class CH.rubin.util.Shuffling
Set the seed which will be use for shuffling.
setSigners(Class, Object[]). Method in class java.lang.ClassLoader
Sets the signers of a class.
setSize(int). Method in class COM.objectspace.jgl.Array
Sets the size of the Array.
setSize(int). Method in class java.util.Vector
Sets the size of this vector.
setStartRule(int, int, int, int). Method in class java.util.SimpleTimeZone
Sets the daylight savings starting rule.
setStartYear(int). Method in class java.util.SimpleTimeZone
Sets the daylight savings starting year.
setSymmetricDifference(Container, Container, OutputIterator, BinaryPredicate). Static method in class COM.objectspace.jgl.OrderedSetOperations
Place the sorted symmetric difference of two containers into a sequence.
setSymmetricDifference(Container, Container, OutputIterator, BinaryPredicate). Static method in class COM.objectspace.jgl.SetOperations
Place the sorted symmetric difference of two containers into a sequence.
setSymmetricDifference(InputIterator, InputIterator, InputIterator, InputIterator, OutputIterator). Static method in class COM.objectspace.jgl.OrderedSetOperations
Place the sorted symmetric difference of two sequences into another sequence.
setSymmetricDifference(InputIterator, InputIterator, InputIterator, InputIterator, OutputIterator). Static method in class COM.objectspace.jgl.SetOperations
Place the sorted symmetric difference of two sequences into another sequence.
setSymmetricDifference(InputIterator, InputIterator, InputIterator, InputIterator, OutputIterator, BinaryPredicate). Static method in class COM.objectspace.jgl.OrderedSetOperations
Place the sorted symmetric difference of two sequences into another sequence.
setSymmetricDifference(InputIterator, InputIterator, InputIterator, InputIterator, OutputIterator, BinaryPredicate). Static method in class COM.objectspace.jgl.SetOperations
Place the sorted symmetric difference of two sequences into another sequence.
setTime(Date). Method in class java.util.Calendar
Sets this Calendar's current time with the given Date.
setTime(long). Method in class java.util.Date
Sets this date to represent the specified number of milliseconds since January 1, 1970 00:00:00 GMT.
setTimeInMillis(long). Method in class java.util.Calendar
Sets this Calendar's current time from the given long value.
setTimeZone(TimeZone). Method in class java.util.Calendar
Sets the time zone with the given time zone value.
setTriple(int[]). Method in class CH.rubin.matching.Graph3DM
Sets a triplet in the graph.
setTripleXYZ(int, int, int). Method in class CH.rubin.matching.Graph3DM
Sets the triplets (x,y,z) in the graph.
setUnion(Container, Container, OutputIterator, BinaryPredicate). Static method in class COM.objectspace.jgl.OrderedSetOperations
Place the sorted union of two containers into a sequence.
setUnion(Container, Container, OutputIterator, BinaryPredicate). Static method in class COM.objectspace.jgl.SetOperations
Place the sorted union of two containers into a sequence.
setUnion(InputIterator, InputIterator, InputIterator, InputIterator, OutputIterator). Static method in class COM.objectspace.jgl.OrderedSetOperations
Place the sorted union of two sequences into another sequence.
setUnion(InputIterator, InputIterator, InputIterator, InputIterator, OutputIterator). Static method in class COM.objectspace.jgl.SetOperations
Place the sorted union of two sequences into another sequence.
setUnion(InputIterator, InputIterator, InputIterator, InputIterator, OutputIterator, BinaryPredicate). Static method in class COM.objectspace.jgl.OrderedSetOperations
Place the sorted union of two sequences into another sequence.
setUnion(InputIterator, InputIterator, InputIterator, InputIterator, OutputIterator, BinaryPredicate). Static method in class COM.objectspace.jgl.SetOperations
Place the sorted union of two sequences into another sequence.
setYear(int). Method in class java.util.Date
Sets the year of this date to be the specified value plus 1900.
Short(short). Constructor for class java.lang.Short
Constructs a Short object initialized to the specified short value.
Short(String). Constructor for class java.lang.Short
Constructs a Short object initialized to the value specified by the String parameter.
ShortArray(). Constructor for class COM.objectspace.jgl.ShortArray
ShortArray(short[]). Constructor for class COM.objectspace.jgl.ShortArray
ShortArray(ShortArray). Constructor for class COM.objectspace.jgl.ShortArray
ShortIterator(). Constructor for class COM.objectspace.jgl.ShortIterator
Construct myself to be an iterator with no associated data structure or position.
ShortIterator(short[]). Constructor for class COM.objectspace.jgl.ShortIterator
Construct myself to be an iterator positioned at the first element of a specified array.
ShortIterator(short[], int). Constructor for class COM.objectspace.jgl.ShortIterator
Construct myself to be positioned at a particular index of a specific array.
ShortIterator(short[], int, ShortArray). Constructor for class COM.objectspace.jgl.ShortIterator
Construct myself to be positioned at a particular index of a specific array.
ShortIterator(short[], ShortArray). Constructor for class COM.objectspace.jgl.ShortIterator
Construct myself to be an iterator positioned at the first element of a specified array.
ShortIterator(ShortIterator). Constructor for class COM.objectspace.jgl.ShortIterator
Construct myself to be a copy of an existing iterator.
shortValue(). Method in class java.lang.Byte
Returns the value of this Byte as a short.
shortValue(). Method in class java.lang.Double
Returns the value of this Double as a short (by casting to a short).
shortValue(). Method in class java.lang.Float
Returns the value of this Float as a short (by casting to a short).
shortValue(). Method in class java.lang.Integer
Returns the value of this Integer as a short.
shortValue(). Method in class java.lang.Long
Returns the value of this Long as a short.
shortValue(). Method in class java.lang.Number
Returns the value of the specified number as a short.
shortValue(). Method in class java.lang.Short
Returns the value of this Short as a short.
SimpleTimeZone(int, String). Constructor for class java.util.SimpleTimeZone
Constructs a SimpleTimeZone with the given base time zone offset from GMT and time zone ID.
SimpleTimeZone(int, String, int, int, int, int, int, int, int, int). Constructor for class java.util.SimpleTimeZone
Constructs a SimpleTimeZone with the given base time zone offset from GMT, time zone ID, time to start and end the daylight time.
SIMPLIFIED_CHINESE. Static variable in class java.util.Locale
Useful constant for language.
sin(double). Static method in class java.lang.Math
Returns the trigonometric sine of an angle.
size(). Method in class COM.objectspace.jgl.Array
Return the number of entries that I contain.
size(). Method in class java.util.BitSet
Calculates and returns the set's size in bits.
size(). Method in class COM.objectspace.jgl.BooleanArray
Return the number of objects that I contain.
size(). Method in class COM.objectspace.jgl.ByteArray
Return the number of objects that I contain.
size(). Method in class COM.objectspace.jgl.CharArray
Return the number of objects that I contain.
size(). Method in interface COM.objectspace.jgl.Container
Return the number of objects that I contain.
size(). Method in class COM.objectspace.jgl.Deque
Return the number of entries that I contain.
size(). Method in class java.util.Dictionary
Returns the number of keys in this dictionary.
size(). Method in class COM.objectspace.jgl.DList
Return the number of entries that I contain.
size(). Method in class COM.objectspace.jgl.DoubleArray
Return the number of objects that I contain.
size(). Method in class COM.objectspace.jgl.FloatArray
Return the number of objects that I contain.
size(). Method in class COM.objectspace.jgl.HashMap
Return the number of entries that I contain.
size(). Method in class COM.objectspace.jgl.HashSet
Return the number of entries that I contain.
size(). Method in class java.util.Hashtable
Returns the number of keys in this hashtable.
size(). Method in class COM.objectspace.jgl.IntArray
Return the number of objects that I contain.
size(). Method in class COM.objectspace.jgl.LongArray
Return the number of objects that I contain.
size(). Method in class COM.objectspace.jgl.Map
Return the number of objects that I contain.
size(). Method in class COM.objectspace.jgl.ObjectArray
Return the number of objects that I contain.
size(). Method in class COM.objectspace.jgl.OrderedMap
Return the number of entries that I contain.
size(). Method in class COM.objectspace.jgl.OrderedSet
Return the number of entries that I contain.
size(). Method in class COM.objectspace.jgl.PriorityQueue
Return the number of objects that I contain.
size(). Method in class COM.objectspace.jgl.Queue
Return the number of objects that I contain.
size(). Method in class COM.objectspace.jgl.ShortArray
Return the number of objects that I contain.
size(). Method in class COM.objectspace.jgl.SList
Return the number of entries that I contain.
size(). Method in class COM.objectspace.jgl.Stack
Return the number of objects that I contain.
size(). Method in class java.util.Vector
Returns the number of components in this vector.
size(). Method in class COM.objectspace.jgl.VectorArray
Return the number of objects that I contain.
sleep(long). Static method in class java.lang.Thread
Causes the currently executing thread to sleep (temporarily cease execution) for the specified number of milliseconds.
sleep(long, int). Static method in class java.lang.Thread
Causes the currently executing thread to sleep (cease execution) for the specified number of milliseconds plus the specified number of nanoseconds.
SList(). Constructor for class COM.objectspace.jgl.SList
Construct myself to be an empty SList.
SList(int). Constructor for class COM.objectspace.jgl.SList
Construct myself to contain a specified number of null elements.
SList(int, Object). Constructor for class COM.objectspace.jgl.SList
Construct myself to contain a specified number of elements set to a particular object.
SList(SList). Constructor for class COM.objectspace.jgl.SList
Construct myself to be a shallow copy of an existing SList.
SListIterator(). Constructor for class COM.objectspace.jgl.SListIterator
Construct myself to be an iterator with no associated data structure or position.
SListIterator(SListIterator). Constructor for class COM.objectspace.jgl.SListIterator
Construct myself to be a copy of an existing iterator.
some(Container, UnaryPredicate). Static method in class COM.objectspace.jgl.Finding
Return true if at least one object in the container satisfies the specified unary predicate.
some(ForwardIterator, ForwardIterator, UnaryPredicate). Static method in class COM.objectspace.jgl.Finding
Return true if at least one object in the given range satisfies the specified unary predicate.
sort(ForwardIterator, ForwardIterator). Static method in class COM.objectspace.jgl.Sorting
Sort the elements in a sequence according to their hash code.
sort(ForwardIterator, ForwardIterator, BinaryPredicate). Static method in class COM.objectspace.jgl.Sorting
Sort the elements in a sequence using a comparator.
sort(Sequence). Static method in class COM.objectspace.jgl.Sorting
Sort the elements in a Sequence container according to their hash code.
sort(Sequence, BinaryPredicate). Static method in class COM.objectspace.jgl.Sorting
Sort the elements in a random access container using a comparator.
sortHeap(BidirectionalIterator, BidirectionalIterator). Static method in class COM.objectspace.jgl.Heap
Sort a heap according to the object's hash codes.
sortHeap(BidirectionalIterator, BidirectionalIterator, BinaryPredicate). Static method in class COM.objectspace.jgl.Heap
Sort a heap according to a comparator.
source. Variable in class java.util.EventObject
SPACE_SEPARATOR. Static variable in class java.lang.Character
splice(DListIterator, DList). Method in class COM.objectspace.jgl.DList
Remove all of the elements in a specified DList and insert them at a particular position.
splice(DListIterator, DList, DListIterator). Method in class COM.objectspace.jgl.DList
Remove a specified element from a DList and insert it at a particular position.
splice(DListIterator, DList, DListIterator, DListIterator). Method in class COM.objectspace.jgl.DList
Splice a range of elements from a DList into a particular position.
splice(int, DList). Method in class COM.objectspace.jgl.DList
Remove all of the elements in a specified DList and insert them at a particular position.
splice(int, DList, int). Method in class COM.objectspace.jgl.DList
Remove a specified element from a DList and insert it at a particular position.
splice(int, DList, int, int). Method in class COM.objectspace.jgl.DList
Splice a range of elements from a DList and insert them at a particular position.
splice(int, SList). Method in class COM.objectspace.jgl.SList
Remove all of the elements in a specified list and insert them at a particular index.
splice(int, SList, int). Method in class COM.objectspace.jgl.SList
Remove a specified element from a list and insert it at a particular position.
splice(int, SList, int, int). Method in class COM.objectspace.jgl.SList
Remove a range of elements from a list and insert them at a particular position.
splice(SListIterator, SList). Method in class COM.objectspace.jgl.SList
Remove all of the elements in a specified list and insert them at a particular position.
splice(SListIterator, SList, SListIterator). Method in class COM.objectspace.jgl.SList
Remove a specified element from a list and insert it at a particular position.
splice(SListIterator, SList, SListIterator, SListIterator). Method in class COM.objectspace.jgl.SList
Remove a range of elements from a list and insert them at a particular position.
sqrt(double). Static method in class java.lang.Math
Returns the square root of a double value.
Stack(). Constructor for class COM.objectspace.jgl.Stack
Construct myself to be an empty Stack.
Stack(). Constructor for class java.util.Stack
Stack(Sequence). Constructor for class COM.objectspace.jgl.Stack
Construct myself with a specified Sequence as my underlying implementation.
Stack(Stack). Constructor for class COM.objectspace.jgl.Stack
Construct myself to be a shallow copy of a specified Stack.
StackOverflowError(). Constructor for class java.lang.StackOverflowError
Constructs a StackOverflowError with no detail message.
StackOverflowError(String). Constructor for class java.lang.StackOverflowError
Constructs a StackOverflowError with the specified detail message.
start(). Method in class COM.objectspace.jgl.Array
Return an iterator positioned at my first item.
start(). Method in class COM.objectspace.jgl.Benchmark
Start/resume the benchmark clock.
start(). Method in class COM.objectspace.jgl.BooleanArray
Return an iterator positioned at my first item.
start(). Method in class COM.objectspace.jgl.ByteArray
Return an iterator positioned at my first item.
start(). Method in class COM.objectspace.jgl.CharArray
Return an iterator positioned at my first item.
start(). Method in interface COM.objectspace.jgl.Container
Return an iterator positioned at my first item.
start(). Method in class COM.objectspace.jgl.Deque
Return an iterator positioned at my first item
start(). Method in class COM.objectspace.jgl.DList
Return an iterator positioned at my first item.
start(). Method in class COM.objectspace.jgl.DoubleArray
Return an iterator positioned at my first item.
start(). Method in class COM.objectspace.jgl.FloatArray
Return an iterator positioned at my first item.
start(). Method in class COM.objectspace.jgl.HashMap
Return an iterator positioned at my first pair.
start(). Method in class COM.objectspace.jgl.HashSet
Return an iterator positioned at my first item.
start(). Method in class COM.objectspace.jgl.IntArray
Return an iterator positioned at my first item.
start(). Method in class COM.objectspace.jgl.LongArray
Return an iterator positioned at my first item.
start(). Method in class COM.objectspace.jgl.Map
Return an iterator positioned at my first item.
start(). Method in class COM.objectspace.jgl.ObjectArray
Return an iterator positioned at my first item.
start(). Method in class COM.objectspace.jgl.OrderedMap
Return an iterator positioned at my first pair.
start(). Method in class COM.objectspace.jgl.OrderedSet
Return an iterator positioned at my first item.
start(). Method in class COM.objectspace.jgl.PriorityQueue
Return an iterator positioned at my first item.
start(). Method in class COM.objectspace.jgl.Queue
Return an iterator positioned at my first item.
start(). Method in class COM.objectspace.jgl.ShortArray
Return an iterator positioned at my first item.
start(). Method in class COM.objectspace.jgl.SList
Return an iterator positioned at my first item.
start(). Method in class COM.objectspace.jgl.Stack
Return an iterator positioned at my first item.
start(). Method in class java.lang.Thread
Causes this thread to begin execution; the Java Virtual Machine calls the run method of this thread.
start(). Method in class COM.objectspace.jgl.VectorArray
Return an iterator positioned at my first item.
START_PUNCTUATION. Static variable in class java.lang.Character
startsWith(String). Method in class java.lang.String
Tests if this string starts with the specified prefix.
startsWith(String, int). Method in class java.lang.String
Tests if this string starts with the specified prefix.
STATISTICAL_INFO. Static variable in class CH.rubin.matching.Constants
Print some statistical information about the processed data.
statNumberOfMatchings(). Method in class CH.rubin.matching.Triplets
The number of perfect matchings in the Triplet graph.
Is generated in getAll3DMSolutionsBruteForce().
statTestedGraphs(). Method in class CH.rubin.matching.Triplets
The number of bipartite Graphs which have been tested by testing all all possibilities in getAll3DMSolutionsBruteForce().
This is actually how much subgraphs of the XY bipartite graph have been tested.
statTestedGraphsToFirst3DM(). Method in class CH.rubin.matching.Triplets
The number of bipartite Graphs which have been tested until the first 3DM has been found.
statTripletsInAny3DM(). Method in class CH.rubin.matching.Triplets
The probability in this specific graph, that a triplet occures in any 3DM solutions of this graph.
statTripletsInInitial3DM(). Method in class CH.rubin.matching.Triplets
The probability in this specific graph, that a triplet occures in the 3DM solution which was used generating this graph (see constructor Triplets()).
statXY2DMSolutionCount(). Method in class CH.rubin.matching.Triplets
The number of bipartite matchings in the XY part of the Triplet graph.
Is generated in getAll3DMSolutionsBruteForce().
statXY2DMTestsToFirst3DM(). Method in class CH.rubin.matching.Triplets
The number of bipartite matchings in the XY part of the Triplet graph that had to been tested until a 3DM solution has been found.
It is generated in one of which must be called befor calling this method- If no 3DM is found, the total number of tests is given.
statYZ2DMTestsToFirst3DM(). Method in class CH.rubin.matching.Triplets
The number of bipartite matchings in the YZ part of the Triplet graph that had to been tested until a 3DM solution has been found.
stop(). Method in class COM.objectspace.jgl.Benchmark
Stop the benchmark clock.
stop(). Method in class java.lang.Thread
Forces the thread to stop executing.
stop(). Method in class java.lang.ThreadGroup
Stops all processes in this thread group.
stop(Throwable). Method in class java.lang.Thread
Forces the thread to stop executing.
String(). Constructor for class java.lang.String
Allocates a new String containing no characters.
String(byte[]). Constructor for class java.lang.String
Construct a new String by converting the specified array of bytes using the platform's default character encoding.
String(byte[], int). Constructor for class java.lang.String
Allocates a new String containing characters constructed from an array of 8-bit integer values.
String(byte[], int, int). Constructor for class java.lang.String
Construct a new String by converting the specified subarray of bytes using the platform's default character encoding.
String(byte[], int, int, int). Constructor for class java.lang.String
Allocates a new String constructed from a subarray of an array of 8-bit integer values.
String(byte[], int, int, String). Constructor for class java.lang.String
Construct a new String by converting the specified subarray of bytes using the specified character encoding.
String(byte[], String). Constructor for class java.lang.String
Construct a new String by converting the specified array of bytes using the specified character encoding.
String(char[]). Constructor for class java.lang.String
Allocates a new String so that it represents the sequence of characters currently contained in the character array argument.
String(char[], int, int). Constructor for class java.lang.String
Allocates a new String that contains characters from a subarray of the character array argument.
String(String). Constructor for class java.lang.String
Allocates a new string that contains the same sequence of characters as the string argument.
String(StringBuffer). Constructor for class java.lang.String
Allocates a new string that contains the sequence of characters currently contained in the string buffer argument.
StringBuffer(). Constructor for class java.lang.StringBuffer
Constructs a string buffer with no characters in it and an initial capacity of 16 characters.
StringBuffer(int). Constructor for class java.lang.StringBuffer
Constructs a string buffer with no characters in it and an initial capacity specified by the length argument.
StringBuffer(String). Constructor for class java.lang.StringBuffer
Constructs a string buffer so that it represents the same sequence of characters as the string argument.
StringIndexOutOfBoundsException(). Constructor for class java.lang.StringIndexOutOfBoundsException
Constructs a StringIndexOutOfBoundsException with no detail message.
StringIndexOutOfBoundsException(int). Constructor for class java.lang.StringIndexOutOfBoundsException
Constructs a new StringIndexOutOfBoundsException class with an argument indicating the illegal index.
StringIndexOutOfBoundsException(String). Constructor for class java.lang.StringIndexOutOfBoundsException
Constructs a StringIndexOutOfBoundsException with the specified detail message.
StringTokenizer(String). Constructor for class java.util.StringTokenizer
Constructs a string tokenizer for the specified string.
StringTokenizer(String, String). Constructor for class java.util.StringTokenizer
Constructs a string tokenizer for the specified string.
StringTokenizer(String, String, boolean). Constructor for class java.util.StringTokenizer
Constructs a string tokenizer for the specified string.
subsetOf(HashSet). Method in class COM.objectspace.jgl.HashSet
Return true if every element in me is also in a specified HashSet.
subsetOf(OrderedSet). Method in class COM.objectspace.jgl.OrderedSet
Return true if every element in me is also in a specified OrderedSet.
substring(int). Method in class java.lang.String
Returns a new string that is a substring of this string.
substring(int, int). Method in class java.lang.String
Returns a new string that is a substring of this string.
SUNDAY. Static variable in class java.util.Calendar
Useful constant for days of week.
SURROGATE. Static variable in class java.lang.Character
suspend(). Method in class java.lang.Thread
Suspends this thread.
suspend(). Method in class java.lang.ThreadGroup
Suspends all processes in this thread group.
swap(Array). Method in class COM.objectspace.jgl.Array
Swap my contents with another Array.
swap(Deque). Method in class COM.objectspace.jgl.Deque
Swap my contents with another Deque.
swap(DList). Method in class COM.objectspace.jgl.DList
Swap my contents with another DList.
swap(HashMap). Method in class COM.objectspace.jgl.HashMap
Swap my contents with another HashMap.
swap(HashMultiMap). Method in class COM.objectspace.jgl.HashMultiMap
Swap my contents with another HashMultiMap.
swap(HashMultiSet). Method in class COM.objectspace.jgl.HashMultiSet
Swap my contents with another HashMultiSet.
swap(HashSet). Method in class COM.objectspace.jgl.HashSet
Swap my contents with another HashSet.
swap(OrderedMap). Method in class COM.objectspace.jgl.OrderedMap
Swap my contents with another OrderedMap.
swap(OrderedMultiMap). Method in class COM.objectspace.jgl.OrderedMultiMap
Swap my contents with another OrderedMultiMap.
swap(OrderedMultiSet). Method in class COM.objectspace.jgl.OrderedMultiSet
Swap my contents with another OrderedMultiSet.
swap(OrderedSet). Method in class COM.objectspace.jgl.OrderedSet
Swap my contents with another OrderedSet.
swap(PriorityQueue). Method in class COM.objectspace.jgl.PriorityQueue
Swap my contents with another PriorityQueue.
swap(Queue). Method in class COM.objectspace.jgl.Queue
Swap my contents with another Queue.
swap(SList). Method in class COM.objectspace.jgl.SList
Swap my contents with another SList.
swap(Stack). Method in class COM.objectspace.jgl.Stack
Swap my contents with another Stack.
SwappedBinaryPredicate(BinaryPredicate). Constructor for class COM.objectspace.jgl.SwappedBinaryPredicate
Construct myself with a binary predicate object.
swapRanges(Container, Container). Static method in class COM.objectspace.jgl.Swapping
Swap the elements in one container with the elements in another container of the same size.
swapRanges(ForwardIterator, ForwardIterator, ForwardIterator). Static method in class COM.objectspace.jgl.Swapping
Swap the elements in one sequence with the elements in another sequence of the same size.
symmetricDifference(HashSet). Method in class COM.objectspace.jgl.HashSet
Return a new HashSet that contains the elements that are either in me or in a specified HashSet, but not both.
symmetricDifference(OrderedSet). Method in class COM.objectspace.jgl.OrderedSet
Return a new OrderedSet that contains the elements that are either in me or in a specified OrderedSet, but not both.

T

TAIWAN. Static variable in class java.util.Locale
Useful constant for country.
tan(double). Static method in class java.lang.Math
Returns the trigonometric tangent of an angle.
Thread(). Constructor for class java.lang.Thread
Allocates a new Thread object.
Thread(Runnable). Constructor for class java.lang.Thread
Allocates a new Thread object.
Thread(Runnable, String). Constructor for class java.lang.Thread
Allocates a new Thread object.
Thread(String). Constructor for class java.lang.Thread
Allocates a new Thread object.
Thread(ThreadGroup, Runnable). Constructor for class java.lang.Thread
Allocates a new Thread object.
Thread(ThreadGroup, Runnable, String). Constructor for class java.lang.Thread
Allocates a new Thread object so that it has target as its run object, has the specified name as its name, and belongs to the thread group referred to by group.
Thread(ThreadGroup, String). Constructor for class java.lang.Thread
Allocates a new Thread object.
ThreadDeath(). Constructor for class java.lang.ThreadDeath
ThreadGroup(String). Constructor for class java.lang.ThreadGroup
Constructs a new thread group.
ThreadGroup(ThreadGroup, String). Constructor for class java.lang.ThreadGroup
Creates a new thread group.
Throwable(). Constructor for class java.lang.Throwable
Constructs a new Throwable with no detail message.
Throwable(String). Constructor for class java.lang.Throwable
Constructs a new Throwable with the specified detail message.
THURSDAY. Static variable in class java.util.Calendar
Useful constant for days of week.
time. Variable in class java.util.Calendar
The current time set for the calendar.
TimesInteger(). Constructor for class COM.objectspace.jgl.TimesInteger
TimesNumber(). Constructor for class COM.objectspace.jgl.TimesNumber
Construct myself to use intValue() for operation.
TimesNumber(Class). Constructor for class COM.objectspace.jgl.TimesNumber
Construct myself to operate on objects of the given class.
TimeZone(). Constructor for class java.util.TimeZone
TITLECASE_LETTER. Static variable in class java.lang.Character
toBinaryString(int). Static method in class java.lang.Integer
Creates a string representation of the integer argument as an unsigned integer in base 2.
toBinaryString(long). Static method in class java.lang.Long
Creates a string representation of the long argument as an unsigned integer in base 2.
toCharArray(). Method in class java.lang.String
Converts this string to a new character array.
toGMTString(). Method in class java.util.Date
Creates a string representation of this date.
toHexString(int). Static method in class java.lang.Integer
Creates a string representation of the integer argument as an unsigned integer in base 16.
toHexString(long). Static method in class java.lang.Long
Creates a string representation of the long argument as an unsigned integer in base 16.
toLocaleString(). Method in class java.util.Date
Creates a string representation of this date in an implementation-dependent form.
toLowerCase(). Method in class java.lang.String
Converts this String to lowercase.
toLowerCase(char). Static method in class java.lang.Character
The given character is mapped to its lowercase equivalent; if the character has no lowercase equivalent, the character itself is returned.
toLowerCase(Locale). Method in class java.lang.String
Converts all of the characters in this String to lower case using the rules of the given locale.
toOctalString(int). Static method in class java.lang.Integer
Creates a string representation of the integer argument as an unsigned integer in base 8.
toOctalString(long). Static method in class java.lang.Long
Creates a string representation of the long argument as an unsigned integer in base 8.
TooManyListenersException(). Constructor for class java.util.TooManyListenersException
Constructs a TooManyListenersException with no detail message.
TooManyListenersException(String). Constructor for class java.util.TooManyListenersException
Constructs a TooManyListenersException with the specified detail message.
top(). Method in class COM.objectspace.jgl.PriorityQueue
Return my top object.
top(). Method in class COM.objectspace.jgl.Stack
Return the last object that was pushed onto me.
toString(). Method in class COM.objectspace.jgl.Array
Return a string that describes me.
toString(). Method in class COM.objectspace.jgl.Benchmark
Return a string that describes me.
toString(). Method in class test.Benchmark
Return a string that describes me.
toString(). Method in class java.util.BitSet
Converts the BitSet to a String.
toString(). Method in class java.lang.Boolean
Returns a String object representing this Boolean's value.
toString(). Method in class COM.objectspace.jgl.BooleanArray
Return a string that describes me.
toString(). Method in class java.lang.Byte
Returns a String object representing this Byte's value.
toString(). Method in class COM.objectspace.jgl.ByteArray
Return a string that describes me.
toString(). Method in class java.lang.Character
Returns a String object representing this character's value.
toString(). Method in class COM.objectspace.jgl.CharArray
Return a string that describes me.
toString(). Method in class java.lang.Class
Converts the object to a string.
toString(). Method in interface COM.objectspace.jgl.Container
Return a string that describes me.
toString(). Method in class java.util.Date
Creates a canonical string representation of the date.
toString(). Method in class COM.objectspace.jgl.Deque
Return a string that describes me.
toString(). Method in class COM.objectspace.jgl.DList
Return a string that describes me.
toString(). Method in class java.lang.Double
Returns a String representation of this Double object.
toString(). Method in class COM.objectspace.jgl.DoubleArray
Return a string that describes me.
toString(). Method in class java.util.EventObject
Returns a string representation of the object.
toString(). Method in class java.lang.Float
Returns a String representation of this Float object.
toString(). Method in class COM.objectspace.jgl.FloatArray
Return a string that describes me.
toString(). Method in class CH.rubin.matching.Graph2DM
gives the String representing the graph
toString(). Method in class CH.rubin.matching.Graph3DM
String representation of the tripartite matching.
toString(). Method in class CH.rubin.matching.GraphBipartiteEqual
String representation
toString(). Method in class COM.objectspace.jgl.HashMap
Return a string that describes me.
toString(). Method in class COM.objectspace.jgl.HashMultiMap
Return a string that describes me.
toString(). Method in class COM.objectspace.jgl.HashMultiSet
Return a string that describes me.
toString(). Method in class COM.objectspace.jgl.HashSet
Return a string that describes me.
toString(). Method in class java.util.Hashtable
Returns a rather long string representation of this hashtable.
toString(). Method in class COM.objectspace.jgl.IntArray
Return a string that describes me.
toString(). Method in class java.lang.Integer
Returns a String object representing this Integer's value.
toString(). Method in class java.util.Locale
Getter for the programmatic name of the entire locale, with the language, country and variant separated by underbars.
toString(). Method in class java.lang.Long
Returns a String object representing this Long's value.
toString(). Method in class COM.objectspace.jgl.LongArray
Return a string that describes me.
toString(). Method in class COM.objectspace.jgl.Map
Return a string that describes me.
toString(). Method in class java.lang.Object
Returns a string representation of the object.
toString(). Method in class COM.objectspace.jgl.ObjectArray
Return a string that describes me.
toString(). Method in class COM.objectspace.jgl.OrderedMap
Return a string that describes me.
toString(). Method in class COM.objectspace.jgl.OrderedMultiMap
Return a string that describes me.
toString(). Method in class COM.objectspace.jgl.OrderedMultiSet
Return a string that describes me.
toString(). Method in class COM.objectspace.jgl.OrderedSet
Return a string that describes me.
toString(). Method in class COM.objectspace.jgl.Pair
Return a string that describes me.
toString(). Method in class COM.objectspace.jgl.PriorityQueue
Return a string that describes me.
toString(). Method in class COM.objectspace.jgl.Queue
Return a string that describes me.
toString(). Method in class COM.objectspace.jgl.Range
Return a string that describes me.
toString(). Method in class java.lang.Short
Returns a String object representing this Short's value.
toString(). Method in class COM.objectspace.jgl.ShortArray
Return a string that describes me.
toString(). Method in class COM.objectspace.jgl.SList
Return a string that describes me.
toString(). Method in class COM.objectspace.jgl.Stack
Return a string that describes me.
toString(). Method in class java.lang.String
This object (which is already a string!) is itself returned.
toString(). Method in class java.lang.StringBuffer
Converts to a string representing the data in this string buffer.
toString(). Method in class java.lang.Thread
Returns a string representation of this thread, including the thread's name, priority, and thread group.
toString(). Method in class java.lang.ThreadGroup
Returns a string representation of this Thread group.
toString(). Method in class java.lang.Throwable
Returns a short description of this throwable object.
ToString(). Constructor for class COM.objectspace.jgl.ToString
toString(). Method in class CH.rubin.matching.Triplets
gives the string representation using 3 lines of output
toString(). Method in class java.util.Vector
Returns a string representation of this vector.
toString(). Method in class COM.objectspace.jgl.VectorArray
Return a string that describes me.
toString(byte). Static method in class java.lang.Byte
Returns a new String object representing the specified Byte.
toString(Container, String). Static method in class COM.objectspace.jgl.Printing
Return a string that describes a container.
toString(double). Static method in class java.lang.Double
Creates a string representation of the double argument.
toString(float). Static method in class java.lang.Float
Returns a String representation for the specified float value.
toString(InputIterator, InputIterator). Static method in class COM.objectspace.jgl.Printing
Return a string that describes the contents of the sequence associated with an iterator.
toString(int). Static method in class java.lang.Integer
Returns a new String object representing the specified integer.
toString(int, int). Static method in class java.lang.Integer
Creates a string representation of the first argument in the radix specified by the second argument.
toString(long). Static method in class java.lang.Long
Returns a new String object representing the specified integer.
toString(long, int). Static method in class java.lang.Long
Creates a string representation of the first argument in the radix specified by the second argument.
toString(short). Static method in class java.lang.Short
Returns a new String object representing the specified Short.
totalMemory(). Method in class java.lang.Runtime
Returns the total amount of memory in the Java Virtual Machine.
toTitleCase(char). Static method in class java.lang.Character
Converts the character argument to titlecase.
toUpperCase(). Method in class java.lang.String
Converts this string to uppercase.
toUpperCase(char). Static method in class java.lang.Character
Converts the character argument to uppercase.
toUpperCase(Locale). Method in class java.lang.String
Converts all of the characters in this String to upper case using the rules of the given locale.
traceInstructions(boolean). Method in class java.lang.Runtime
Enables/Disables tracing of instructions.
traceMethodCalls(boolean). Method in class java.lang.Runtime
Enables/Disables tracing of method calls.
TRADITIONAL_CHINESE. Static variable in class java.util.Locale
Useful constant for language.
transform(Container, Container, Container, BinaryFunction). Static method in class COM.objectspace.jgl.Transforming
Traverse two containers and add the results of invoking a BinaryFunction on corresponding elements to another container.
transform(Container, Container, OutputIterator, BinaryFunction). Static method in class COM.objectspace.jgl.Transforming
Traverse two containers and store the results of invoking a BinaryFunction on corresponding elements into a sequence.
transform(Container, Container, UnaryFunction). Static method in class COM.objectspace.jgl.Transforming
Traverse a container and add the results of invoking a UnaryFunction on each element into another container.
transform(Container, OutputIterator, UnaryFunction). Static method in class COM.objectspace.jgl.Transforming
Traverse a container and store the results of invoking a UnaryFunction on each element into a sequence.
transform(InputIterator, InputIterator, InputIterator, OutputIterator, BinaryFunction). Static method in class COM.objectspace.jgl.Transforming
Traverse two sequences and store the results of invoking a BinaryFunction on corresponding elements into another sequence of the same size.
transform(InputIterator, InputIterator, OutputIterator, UnaryFunction). Static method in class COM.objectspace.jgl.Transforming
Traverse a sequence and store the results of invoking a UnaryFunction on each element into another sequence of the same size.
trim(). Method in class java.lang.String
Removes white space from both ends of this string.
trimToSize(). Method in class COM.objectspace.jgl.Array
If my storage space is currently larger than my total number of elements, reallocate the elements into a storage space that is exactly the right size.
trimToSize(). Method in class java.util.Vector
Trims the capacity of this vector to be the vector's current size.
tripletList(). Method in class CH.rubin.matching.Graph3DM
returns all triplets in the graph as a two dimensional list.
triplets(). Method in class CH.rubin.matching.Graph3DM
returns the the number of triplets in the graph.
triplets(). Method in class CH.rubin.matching.Triplets
returns the the number of triplets in the graph
Triplets(int, int, int). Constructor for class CH.rubin.matching.Triplets
Generates triplets Triplets, with points points in every dimension (X, Y, Z), so that matchingTriplets triplets form a matching.
Triplets(int, int, int, long). Constructor for class CH.rubin.matching.Triplets
Same as Triplets(int, int, int) but additionaly the seed used for the random generator is given by the forth parameter long.
TRUE. Static variable in class java.lang.Boolean
The Boolean object corresponding to the primitive value true.
True(boolean). Static method in class CH.rubin.util.Assert
If the parameter toBeTrue is not true, the program prints a stack trace and exits with System.exit(1).
TrySettingTriple(int[]). Method in class CH.rubin.matching.Graph3DM
Tries to sets a triplet in the graph.
TUESDAY. Static variable in class java.util.Calendar
Useful constant for days of week.
TYPE. Static variable in class java.lang.Boolean
The Class object representing the primitive type boolean.
TYPE. Static variable in class java.lang.Byte
The Class object representing the primitive type byte.
TYPE. Static variable in class java.lang.Character
The Class object representing the primitive type char.
TYPE. Static variable in class java.lang.Double
The Class object representing the primitive type double.
TYPE. Static variable in class java.lang.Float
The Class object representing the primitive type float.
TYPE. Static variable in class java.lang.Integer
The Class object representing the primitive type int.
TYPE. Static variable in class java.lang.Long
The Class object representing the primitive type long.
TYPE. Static variable in class java.lang.Short
The Class object representing the primitive type short.
TYPE. Static variable in class java.lang.Void
The Class object representing the primitive Java type void.

U

UK. Static variable in class java.util.Locale
Useful constant for country.
UnaryCompose(UnaryFunction, UnaryFunction). Constructor for class COM.objectspace.jgl.UnaryCompose
Construct myself with two unary function objects.
UnaryComposePredicate(UnaryPredicate, UnaryFunction). Constructor for class COM.objectspace.jgl.UnaryComposePredicate
Construct myself with a unary predicate object and a unary function object.
UnaryNot(UnaryPredicate). Constructor for class COM.objectspace.jgl.UnaryNot
Construct myself with a single unary predicate object.
UnaryPredicateFunction(UnaryPredicate). Constructor for class COM.objectspace.jgl.UnaryPredicateFunction
Construct myself with a unary predicate object.
UNASSIGNED. Static variable in class java.lang.Character
uncaughtException(Thread, Throwable). Method in class java.lang.ThreadGroup
Called by the Java Virtual Machine when a thread in this thread group stops because of an uncaught exception.
UNDECIMBER. Static variable in class java.util.Calendar
Useful constant for month.
union(HashSet). Method in class COM.objectspace.jgl.HashSet
Return a new HashSet that contains all of my elements and all of the elements in a specified HashSet.
union(OrderedSet). Method in class COM.objectspace.jgl.OrderedSet
Return a new OrderedSet that contains all of my elements and all of the elements in a specified OrderedSet.
unique(). Method in class COM.objectspace.jgl.DList
Replace all repeating sequences of a single element by a single occurrence of that element.
unique(Container). Static method in class COM.objectspace.jgl.Filtering
Replace all consecutive occurrences of an object in a container by a single instance of that object.
unique(Container, BinaryPredicate). Static method in class COM.objectspace.jgl.Filtering
Replace all consecutive occurrences of an object in a container by a single instance of that object.
unique(ForwardIterator, ForwardIterator). Static method in class COM.objectspace.jgl.Filtering
Replace all consecutive occurrences of an object in a sequence by a single instance of that object.
unique(ForwardIterator, ForwardIterator, BinaryPredicate). Static method in class COM.objectspace.jgl.Filtering
Replace all consecutive occurrences of an object in a sequence by a single instance of that object.
uniqueCopy(Container, Container). Static method in class COM.objectspace.jgl.Filtering
Copy the contents of one container into another container, replacing all consecutive occurrences of an object by a single instance of that object.
uniqueCopy(Container, Container, BinaryPredicate). Static method in class COM.objectspace.jgl.Filtering
Copy the contents of one container into another container, replacing all consecutive occurrences of an object by a single instance of that object.
uniqueCopy(Container, OutputIterator). Static method in class COM.objectspace.jgl.Filtering
Copy a container into another sequence, replacing all consecutive occurrences of an object by a single instance of that object.
uniqueCopy(Container, OutputIterator, BinaryPredicate). Static method in class COM.objectspace.jgl.Filtering
Copy a container into another sequence, replacing all consecutive occurrences of an object by a single instance of that object.
uniqueCopy(InputIterator, InputIterator, OutputIterator). Static method in class COM.objectspace.jgl.Filtering
Copy a sequence into another sequence, replacing all consecutive occurrences of an object by a single instance of that object.
uniqueCopy(InputIterator, InputIterator, OutputIterator, BinaryPredicate). Static method in class COM.objectspace.jgl.Filtering
Copy a sequence into another sequence, replacing all consecutive occurrences of an object by a single instance of that object.
UnknownError(). Constructor for class java.lang.UnknownError
Constructs an UnknownError with no detail message.
UnknownError(String). Constructor for class java.lang.UnknownError
Constructs an UnknownError with the specified detail message.
unorderedHash(Container). Static method in class COM.objectspace.jgl.Hashing
Compute an hash value for an unordered container.
unorderedHash(ForwardIterator, ForwardIterator). Static method in class COM.objectspace.jgl.Hashing
Compute a hash value for a range of elements in an uordered container.
UnsatisfiedLinkError(). Constructor for class java.lang.UnsatisfiedLinkError
Constructs an UnsatisfiedLinkError with no detail message.
UnsatisfiedLinkError(String). Constructor for class java.lang.UnsatisfiedLinkError
Constructs an UnsatisfiedLinkError with the specified detail message.
update(Observable, Object). Method in interface java.util.Observer
This method is called whenever the observed object is changed.
upperBound(Object). Method in class COM.objectspace.jgl.HashMap
Return an iterator positioned at the last location that a pair with a specified key could be inserted without violating the ordering criteria.
upperBound(Object). Method in class COM.objectspace.jgl.HashSet
Return an iterator positioned at the last location that a particular object could be inserted without violating the ordering criteria.
upperBound(Object). Method in class COM.objectspace.jgl.OrderedMap
Return an iterator positioned at the last location that a pair with a specified key could be inserted without violating the ordering criteria.
upperBound(Object). Method in class COM.objectspace.jgl.OrderedSet
Return an iterator positioned at the last location that a particular object could be inserted without violating the ordering criteria.
UPPERCASE_LETTER. Static variable in class java.lang.Character
US. Static variable in class java.util.Locale
Useful constant for country.
useDaylightTime(). Method in class java.util.SimpleTimeZone
Overrides TimeZone Queries if this time zone uses Daylight Savings Time.
useDaylightTime(). Method in class java.util.TimeZone
Queries if this time zone uses Daylight Savings Time.
UTC(int, int, int, int, int, int). Static method in class java.util.Date
Determines the date and time based on the arguments.

V

VALUE. Static variable in class COM.objectspace.jgl.HashMapIterator
VALUE. Static variable in class COM.objectspace.jgl.OrderedMapIterator
value(). Method in class COM.objectspace.jgl.HashMapIterator
Return the value of my current key/value pair.
value(). Method in class COM.objectspace.jgl.OrderedMapIterator
Return the value of my current key/value pair.
value(Object). Method in class COM.objectspace.jgl.HashMapIterator
Change the value of my current key/value pair.
value(Object). Method in class COM.objectspace.jgl.OrderedMapIterator
Change the value of my current key/value pair.
valueOf(boolean). Static method in class java.lang.String
Returns the string representation of the boolean argument.
valueOf(char). Static method in class java.lang.String
Returns the string representation of the char * argument.
valueOf(char[]). Static method in class java.lang.String
Returns the string representation of the char array argument.
valueOf(char[], int, int). Static method in class java.lang.String
Returns the string representation of a specific subarray of the char array argument.
valueOf(double). Static method in class java.lang.String
Returns the string representation of the double argument.
valueOf(float). Static method in class java.lang.String
Returns the string representation of the float argument.
valueOf(int). Static method in class java.lang.String
Returns the string representation of the int argument.
valueOf(long). Static method in class java.lang.String
Returns the string representation of the long argument.
valueOf(Object). Static method in class java.lang.String
Returns the string representation of the Object argument.
valueOf(String). Static method in class java.lang.Boolean
Returns the boolean value represented by the specified String.
valueOf(String). Static method in class java.lang.Byte
Assuming the specified String represents a byte, returns a new Byte object initialized to that value.
valueOf(String). Static method in class java.lang.Double
Returns a new Double value initialized to the value represented by the specified String.
valueOf(String). Static method in class java.lang.Float
Returns the floating point value represented by the specified String.
valueOf(String). Static method in class java.lang.Integer
Returns a new Integer object initialized to the value of the specified String.
valueOf(String). Static method in class java.lang.Long
Returns a new long object initialized to the value of the specified String.
valueOf(String). Static method in class java.lang.Short
Assuming the specified String represents a short, returns a new Short object initialized to that value.
valueOf(String, int). Static method in class java.lang.Byte
Assuming the specified String represents a byte, returns a new Byte object initialized to that value.
valueOf(String, int). Static method in class java.lang.Integer
Returns a new Integer object initialized to the value of the specified String.
valueOf(String, int). Static method in class java.lang.Long
Returns a new long object initialized to the value of the specified String.
valueOf(String, int). Static method in class java.lang.Short
Assuming the specified String represents a short, returns a new Short object initialized to that value.
values(Object). Method in class COM.objectspace.jgl.HashMap
Return an Enumeration of all my values that are associated with a particular key.
values(Object). Method in class COM.objectspace.jgl.Map
Return an Enumeration of all my values that are associated with a particular key.
values(Object). Method in class COM.objectspace.jgl.OrderedMap
Return an Enumeration of all my values that are associated with a particular key.
Vector(). Constructor for class java.util.Vector
Constructs an empty vector.
Vector(int). Constructor for class java.util.Vector
Constructs an empty vector with the specified initial capacity.
Vector(int, int). Constructor for class java.util.Vector
Constructs an empty vector with the specified initial capacity and capacity increment.
VectorArray(). Constructor for class COM.objectspace.jgl.VectorArray
VectorArray(Vector). Constructor for class COM.objectspace.jgl.VectorArray
VectorArray(VectorArray). Constructor for class COM.objectspace.jgl.VectorArray
VectorIterator(). Constructor for class COM.objectspace.jgl.VectorIterator
Construct myself to be an iterator with no associated data structure or position.
VectorIterator(Vector, int). Constructor for class COM.objectspace.jgl.VectorIterator
Construct myself to be positioned at a particular index of a specific Vector.
VectorIterator(Vector, int, VectorArray). Constructor for class COM.objectspace.jgl.VectorIterator
Construct myself to be positioned at a particular index of a specific Vector.
VectorIterator(VectorIterator). Constructor for class COM.objectspace.jgl.VectorIterator
Construct myself to be a copy of an existing iterator.
VerifyError(). Constructor for class java.lang.VerifyError
Constructs an VerifyError with no detail message.
VerifyError(String). Constructor for class java.lang.VerifyError
Constructs an VerifyError with the specified detail message.
VirtualMachineError(). Constructor for class java.lang.VirtualMachineError
Constructs a VirtualMachineError with no detail message.
VirtualMachineError(String). Constructor for class java.lang.VirtualMachineError
Constructs a VirtualMachineError with the specified detail message.

W

wait(). Method in class java.lang.Object
Waits to be notified by another thread of a change in this object.
wait(long). Method in class java.lang.Object
Waits to be notified by another thread of a change in this object.
wait(long, int). Method in class java.lang.Object
Waits to be notified by another thread of a change in this object.
waitFor(). Method in class java.lang.Process
Waits for the subprocess to complete.
WEDNESDAY. Static variable in class java.util.Calendar
Useful constant for days of week.
WEEK_OF_MONTH. Static variable in class java.util.Calendar
Useful constant for date and time.
WEEK_OF_YEAR. Static variable in class java.util.Calendar
Useful constant for date and time.

X

xor(BitSet). Method in class java.util.BitSet
Logically XORs this bit set with the specified set of bits.
xPoint(int). Method in class CH.rubin.matching.Graph2DM
Returns the point in dimension x which is connected to the point y.
XYPart(). Method in class CH.rubin.matching.Triplets
Gives the XY part of the triplets.

Y

YEAR. Static variable in class java.util.Calendar
Useful constant for date and time.
yield(). Static method in class java.lang.Thread
Causes the currently executing thread object to temporarily pause and allow other threads to execute.
yPoint(int). Method in class CH.rubin.matching.Graph2DM
Returns the point in dimension y which is connected to the point x.
yPoint(int, int). Method in class CH.rubin.matching.GraphBipartiteEqual
to which point in dimension Y the edge edge starting in point x is connected.
yPointList(). Method in class CH.rubin.matching.Graph2DM
Returns the y points in the order x1, x2, ...