Colt 1.0.3
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

W

WaitableBoolean - class edu.oswego.cs.dl.util.concurrent.WaitableBoolean.
A class useful for offloading synch for boolean instance variables.
WaitableBoolean(boolean) - Constructor for class edu.oswego.cs.dl.util.concurrent.WaitableBoolean
Make a new WaitableBoolean with the given initial value
WaitableBoolean(boolean, Object) - Constructor for class edu.oswego.cs.dl.util.concurrent.WaitableBoolean
Make a new WaitableBoolean with the given initial value, and using the supplied lock.
WaitableByte - class edu.oswego.cs.dl.util.concurrent.WaitableByte.
A class useful for offloading waiting and signalling operations on single byte variables.
WaitableByte(byte) - Constructor for class edu.oswego.cs.dl.util.concurrent.WaitableByte
Make a new WaitableByte with the given initial value, and using its own internal lock.
WaitableByte(byte, Object) - Constructor for class edu.oswego.cs.dl.util.concurrent.WaitableByte
Make a new WaitableByte with the given initial value, and using the supplied lock.
WaitableChar - class edu.oswego.cs.dl.util.concurrent.WaitableChar.
A class useful for offloading waiting and signalling operations on single char variables.
WaitableChar(char) - Constructor for class edu.oswego.cs.dl.util.concurrent.WaitableChar
Make a new WaitableChar with the given initial value, and using its own internal lock.
WaitableChar(char, Object) - Constructor for class edu.oswego.cs.dl.util.concurrent.WaitableChar
Make a new WaitableChar with the given initial value, and using the supplied lock.
WaitableDouble - class edu.oswego.cs.dl.util.concurrent.WaitableDouble.
A class useful for offloading waiting and signalling operations on single double variables.
WaitableDouble(double) - Constructor for class edu.oswego.cs.dl.util.concurrent.WaitableDouble
Make a new WaitableDouble with the given initial value, and using its own internal lock.
WaitableDouble(double, Object) - Constructor for class edu.oswego.cs.dl.util.concurrent.WaitableDouble
Make a new WaitableDouble with the given initial value, and using the supplied lock.
WaitableFloat - class edu.oswego.cs.dl.util.concurrent.WaitableFloat.
A class useful for offloading waiting and signalling operations on single float variables.
WaitableFloat(float) - Constructor for class edu.oswego.cs.dl.util.concurrent.WaitableFloat
Make a new WaitableFloat with the given initial value, and using its own internal lock.
WaitableFloat(float, Object) - Constructor for class edu.oswego.cs.dl.util.concurrent.WaitableFloat
Make a new WaitableFloat with the given initial value, and using the supplied lock.
WaitableInt - class edu.oswego.cs.dl.util.concurrent.WaitableInt.
A class useful for offloading waiting and signalling operations on single int variables.
WaitableInt(int) - Constructor for class edu.oswego.cs.dl.util.concurrent.WaitableInt
Make a new WaitableInt with the given initial value, and using its own internal lock.
WaitableInt(int, Object) - Constructor for class edu.oswego.cs.dl.util.concurrent.WaitableInt
Make a new WaitableInt with the given initial value, and using the supplied lock.
WaitableLong - class edu.oswego.cs.dl.util.concurrent.WaitableLong.
A class useful for offloading waiting and signalling operations on single long variables.
WaitableLong(long) - Constructor for class edu.oswego.cs.dl.util.concurrent.WaitableLong
Make a new WaitableLong with the given initial value, and using its own internal lock.
WaitableLong(long, Object) - Constructor for class edu.oswego.cs.dl.util.concurrent.WaitableLong
Make a new WaitableLong with the given initial value, and using the supplied lock.
WaitableRef - class edu.oswego.cs.dl.util.concurrent.WaitableRef.
A class useful for offloading synch for Object reference instance variables.
WaitableRef(Object) - Constructor for class edu.oswego.cs.dl.util.concurrent.WaitableRef
Create a WaitableRef initially holding the given reference and using its own internal lock.
WaitableRef(Object, Object) - Constructor for class edu.oswego.cs.dl.util.concurrent.WaitableRef
Make a new WaitableRef with the given initial value, and using the supplied lock.
WaitableShort - class edu.oswego.cs.dl.util.concurrent.WaitableShort.
A class useful for offloading waiting and signalling operations on single short variables.
WaitableShort(short) - Constructor for class edu.oswego.cs.dl.util.concurrent.WaitableShort
Make a new WaitableShort with the given initial value, and using its own internal lock.
WaitableShort(short, Object) - Constructor for class edu.oswego.cs.dl.util.concurrent.WaitableShort
Make a new WaitableShort with the given initial value, and using the supplied lock.
WaiterPreferenceSemaphore - class edu.oswego.cs.dl.util.concurrent.WaiterPreferenceSemaphore.
An implementation of counting Semaphores that enforces enough fairness for applications that need to avoid indefinite overtaking without necessarily requiring FIFO ordered access.
WaiterPreferenceSemaphore(long) - Constructor for class edu.oswego.cs.dl.util.concurrent.WaiterPreferenceSemaphore
Create a Semaphore with the given initial number of permits.
WaitFreeQueue - class edu.oswego.cs.dl.util.concurrent.WaitFreeQueue.
A wait-free linked list based queue implementation.
WaitFreeQueue() - Constructor for class edu.oswego.cs.dl.util.concurrent.WaitFreeQueue
 
waitWhenBlocked() - Method in class edu.oswego.cs.dl.util.concurrent.PooledExecutor
Set the policy for blocked execution to be to wait until a thread is available.
watt - Static variable in class cern.clhep.Units
 
weber - Static variable in class cern.clhep.Units
 
weightedMean(DoubleArrayList, DoubleArrayList) - Static method in class cern.jet.stat.Descriptive
Returns the weighted mean of a data sequence.
WeightedRandomSampler - class cern.jet.random.sampling.WeightedRandomSampler.
Conveniently computes a stable subsequence of elements from a given input sequence; Picks (samples) exactly one random element from successive blocks of weight input elements each.
WeightedRandomSampler() - Constructor for class cern.jet.random.sampling.WeightedRandomSampler
Calls BlockedRandomSampler(1,null).
WeightedRandomSampler(int, RandomElement) - Constructor for class cern.jet.random.sampling.WeightedRandomSampler
Chooses exactly one random element from successive blocks of weight input elements each.
weightedRMS(double, double) - Static method in class cern.jet.stat.Descriptive
Returns the weighted RMS (Root-Mean-Square) of a data sequence.
whenEqual(boolean, Runnable) - Method in class edu.oswego.cs.dl.util.concurrent.WaitableBoolean
Wait until value equals c, then run action if nonnull.
whenEqual(byte, Runnable) - Method in class edu.oswego.cs.dl.util.concurrent.WaitableByte
Wait until value equals c, then run action if nonnull.
whenEqual(char, Runnable) - Method in class edu.oswego.cs.dl.util.concurrent.WaitableChar
Wait until value equals c, then run action if nonnull.
whenEqual(double, Runnable) - Method in class edu.oswego.cs.dl.util.concurrent.WaitableDouble
Wait until value equals c, then run action if nonnull.
whenEqual(float, Runnable) - Method in class edu.oswego.cs.dl.util.concurrent.WaitableFloat
Wait until value equals c, then run action if nonnull.
whenEqual(int, Runnable) - Method in class edu.oswego.cs.dl.util.concurrent.WaitableInt
Wait until value equals c, then run action if nonnull.
whenEqual(long, Runnable) - Method in class edu.oswego.cs.dl.util.concurrent.WaitableLong
Wait until value equals c, then run action if nonnull.
whenEqual(Object, Runnable) - Method in class edu.oswego.cs.dl.util.concurrent.WaitableRef
Wait until value equals c, then run action if nonnull.
whenEqual(short, Runnable) - Method in class edu.oswego.cs.dl.util.concurrent.WaitableShort
Wait until value equals c, then run action if nonnull.
whenFalse(Runnable) - Method in class edu.oswego.cs.dl.util.concurrent.WaitableBoolean
Wait until value is false, then run action if nonnull.
whenGreater(byte, Runnable) - Method in class edu.oswego.cs.dl.util.concurrent.WaitableByte
wait until value greater than c, then run action if nonnull.
whenGreater(char, Runnable) - Method in class edu.oswego.cs.dl.util.concurrent.WaitableChar
wait until value greater than c, then run action if nonnull.
whenGreater(double, Runnable) - Method in class edu.oswego.cs.dl.util.concurrent.WaitableDouble
wait until value greater than c, then run action if nonnull.
whenGreater(float, Runnable) - Method in class edu.oswego.cs.dl.util.concurrent.WaitableFloat
wait until value greater than c, then run action if nonnull.
whenGreater(int, Runnable) - Method in class edu.oswego.cs.dl.util.concurrent.WaitableInt
wait until value greater than c, then run action if nonnull.
whenGreater(long, Runnable) - Method in class edu.oswego.cs.dl.util.concurrent.WaitableLong
wait until value greater than c, then run action if nonnull.
whenGreater(short, Runnable) - Method in class edu.oswego.cs.dl.util.concurrent.WaitableShort
wait until value greater than c, then run action if nonnull.
whenGreaterEqual(byte, Runnable) - Method in class edu.oswego.cs.dl.util.concurrent.WaitableByte
wait until value greater than or equal to c, then run action if nonnull.
whenGreaterEqual(char, Runnable) - Method in class edu.oswego.cs.dl.util.concurrent.WaitableChar
wait until value greater than or equal to c, then run action if nonnull.
whenGreaterEqual(double, Runnable) - Method in class edu.oswego.cs.dl.util.concurrent.WaitableDouble
wait until value greater than or equal to c, then run action if nonnull.
whenGreaterEqual(float, Runnable) - Method in class edu.oswego.cs.dl.util.concurrent.WaitableFloat
wait until value greater than or equal to c, then run action if nonnull.
whenGreaterEqual(int, Runnable) - Method in class edu.oswego.cs.dl.util.concurrent.WaitableInt
wait until value greater than or equal to c, then run action if nonnull.
whenGreaterEqual(long, Runnable) - Method in class edu.oswego.cs.dl.util.concurrent.WaitableLong
wait until value greater than or equal to c, then run action if nonnull.
whenGreaterEqual(short, Runnable) - Method in class edu.oswego.cs.dl.util.concurrent.WaitableShort
wait until value greater than or equal to c, then run action if nonnull.
whenLess(byte, Runnable) - Method in class edu.oswego.cs.dl.util.concurrent.WaitableByte
wait until value less than c, then run action if nonnull.
whenLess(char, Runnable) - Method in class edu.oswego.cs.dl.util.concurrent.WaitableChar
wait until value less than c, then run action if nonnull.
whenLess(double, Runnable) - Method in class edu.oswego.cs.dl.util.concurrent.WaitableDouble
wait until value less than c, then run action if nonnull.
whenLess(float, Runnable) - Method in class edu.oswego.cs.dl.util.concurrent.WaitableFloat
wait until value less than c, then run action if nonnull.
whenLess(int, Runnable) - Method in class edu.oswego.cs.dl.util.concurrent.WaitableInt
wait until value less than c, then run action if nonnull.
whenLess(long, Runnable) - Method in class edu.oswego.cs.dl.util.concurrent.WaitableLong
wait until value less than c, then run action if nonnull.
whenLess(short, Runnable) - Method in class edu.oswego.cs.dl.util.concurrent.WaitableShort
wait until value less than c, then run action if nonnull.
whenLessEqual(byte, Runnable) - Method in class edu.oswego.cs.dl.util.concurrent.WaitableByte
wait until value less than or equal to c, then run action if nonnull.
whenLessEqual(char, Runnable) - Method in class edu.oswego.cs.dl.util.concurrent.WaitableChar
wait until value less than or equal to c, then run action if nonnull.
whenLessEqual(double, Runnable) - Method in class edu.oswego.cs.dl.util.concurrent.WaitableDouble
wait until value less than or equal to c, then run action if nonnull.
whenLessEqual(float, Runnable) - Method in class edu.oswego.cs.dl.util.concurrent.WaitableFloat
wait until value less than or equal to c, then run action if nonnull.
whenLessEqual(int, Runnable) - Method in class edu.oswego.cs.dl.util.concurrent.WaitableInt
wait until value less than or equal to c, then run action if nonnull.
whenLessEqual(long, Runnable) - Method in class edu.oswego.cs.dl.util.concurrent.WaitableLong
wait until value less than or equal to c, then run action if nonnull.
whenLessEqual(short, Runnable) - Method in class edu.oswego.cs.dl.util.concurrent.WaitableShort
wait until value less than or equal to c, then run action if nonnull.
whenNotEqual(boolean, Runnable) - Method in class edu.oswego.cs.dl.util.concurrent.WaitableBoolean
wait until value not equal to c, then run action if nonnull.
whenNotEqual(byte, Runnable) - Method in class edu.oswego.cs.dl.util.concurrent.WaitableByte
wait until value not equal to c, then run action if nonnull.
whenNotEqual(char, Runnable) - Method in class edu.oswego.cs.dl.util.concurrent.WaitableChar
wait until value not equal to c, then run action if nonnull.
whenNotEqual(double, Runnable) - Method in class edu.oswego.cs.dl.util.concurrent.WaitableDouble
wait until value not equal to c, then run action if nonnull.
whenNotEqual(float, Runnable) - Method in class edu.oswego.cs.dl.util.concurrent.WaitableFloat
wait until value not equal to c, then run action if nonnull.
whenNotEqual(int, Runnable) - Method in class edu.oswego.cs.dl.util.concurrent.WaitableInt
wait until value not equal to c, then run action if nonnull.
whenNotEqual(long, Runnable) - Method in class edu.oswego.cs.dl.util.concurrent.WaitableLong
wait until value not equal to c, then run action if nonnull.
whenNotEqual(Object, Runnable) - Method in class edu.oswego.cs.dl.util.concurrent.WaitableRef
wait until value not equal to c, then run action if nonnull.
whenNotEqual(short, Runnable) - Method in class edu.oswego.cs.dl.util.concurrent.WaitableShort
wait until value not equal to c, then run action if nonnull.
whenNotNull(Runnable) - Method in class edu.oswego.cs.dl.util.concurrent.WaitableRef
wait until value is nonnull, then run action if nonnull.
whenNull(Runnable) - Method in class edu.oswego.cs.dl.util.concurrent.WaitableRef
Wait until value is null, then run action if nonnull.
whenTrue(Runnable) - Method in class edu.oswego.cs.dl.util.concurrent.WaitableBoolean
wait until value is true, then run action if nonnull.
winsorizedMean(DoubleArrayList, double, int, int) - Static method in class cern.jet.stat.Descriptive
Returns the winsorized mean of a sorted data sequence.
word(String, int) - Static method in class ViolinStrings.Strings
Returns the nth word in the string.
wordIndexOfPhrase(String, String, int) - Static method in class ViolinStrings.Strings
Returns the number of the first word of the first occurrence of the specified phrase within the string.
wordIndexOfPhrase(String, String, int, boolean) - Static method in class ViolinStrings.Strings
Returns the number of the first word of the first occurrence of the specified phrase within the string.
wordSpace(String, int) - Static method in class ViolinStrings.Strings
All whitespace between the words of the string is replaced by the specified number of blanks.
write(boolean[], int, byte[], int, int) - Static method in class cern.colt.io.Converting
 
write(boolean, byte[], int) - Static method in class cern.colt.io.Converting
 
write(byte[], int, byte[], int, int) - Static method in class cern.colt.io.Converting
 
write(byte, byte[], int) - Static method in class cern.colt.io.Converting
 
write(char[], int, byte[], int, int) - Static method in class cern.colt.io.Converting
 
write(char, byte[], int) - Static method in class cern.colt.io.Converting
 
write(double[], int, byte[], int, int) - Static method in class cern.colt.io.Converting
 
write(double, byte[], int) - Static method in class cern.colt.io.Converting
 
write(float[], int, byte[], int, int) - Static method in class cern.colt.io.Converting
 
write(float, byte[], int) - Static method in class cern.colt.io.Converting
 
write(int[], int, byte[], int, int) - Static method in class cern.colt.io.Converting
 
write(int, byte[], int) - Static method in class cern.colt.io.Converting
 
write(long[], int, byte[], int, int) - Static method in class cern.colt.io.Converting
 
write(long, byte[], int) - Static method in class cern.colt.io.Converting
 
write(short[], int, byte[], int, int) - Static method in class cern.colt.io.Converting
 
write(short, byte[], int) - Static method in class cern.colt.io.Converting
 
writeLock() - Method in interface edu.oswego.cs.dl.util.concurrent.ReadWriteLock
get the writeLock
writeLock() - Method in class edu.oswego.cs.dl.util.concurrent.WriterPreferenceReadWriteLock
 
writeLock() - Method in class edu.oswego.cs.dl.util.concurrent.FIFOReadWriteLock
 
WriterPreferenceReadWriteLock - class edu.oswego.cs.dl.util.concurrent.WriterPreferenceReadWriteLock.
A ReadWriteLock that prefers waiting writers over waiting readers when there is contention.
WriterPreferenceReadWriteLock() - Constructor for class edu.oswego.cs.dl.util.concurrent.WriterPreferenceReadWriteLock
 
writerSync() - Method in class edu.oswego.cs.dl.util.concurrent.SyncMap
Return the Sync object managing mutative operations
writerSync() - Method in class edu.oswego.cs.dl.util.concurrent.SyncCollection
Return the Sync object managing mutative operations

Colt 1.0.3
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
Submit a bug or feature. Check the Colt home page for the latest news.