Known Direct Subclasses
| InheritableThreadLocal<T> |
A variable for which each thread has its own value; child threads will
inherit the value at thread creation time. |
|
Class Overview
A variable for which each thread has its own value. Supports null
values.
Summary
| Public Constructors |
|
|
ThreadLocal()
Creates a new thread local variable.
|
| Public Methods |
|
T
|
get()
Returns the value of this variable for the current thread.
|
|
void
|
remove()
Removes the entry for this variable in the current thread.
|
|
void
|
set(T value)
Sets the value of this variable for the current thread.
|
| Protected Methods |
|
T
|
initialValue()
Provides the initial value of this variable for the current thread.
|
|
[Expand]
Inherited Methods |
From class java.lang.Object
|
Object
|
clone()
Returns a new instance of the same class as the receiver, whose slots
have been filled in with the values in the slots of the receiver.
|
|
boolean
|
equals(Object o)
Compares the argument to the receiver, and returns true if they represent
the same object using a class specific comparison.
|
|
void
|
finalize()
Called by the virtual machine when there are no longer any (non-weak)
references to the receiver.
|
|
final
Class<? extends Object>
|
getClass()
Returns the unique instance of java.lang.Class which represents the class
of the receiver.
|
|
int
|
hashCode()
Returns an integer hash code for the receiver.
|
|
final
void
|
notify()
Causes one thread which is wait ing on the receiver to be
made ready to run.
|
|
final
void
|
notifyAll()
Causes all threads which are wait ing on the receiver to
be made ready to run.
|
|
String
|
toString()
Returns a string containing a concise, human-readable description of the
receiver.
|
|
final
void
|
wait(long time, int frac)
Causes the thread which sent this message to be made not ready to run
either pending some change in the receiver (as indicated by
notify or notifyAll) or the expiration of
the timeout.
|
|
final
void
|
wait(long time)
Causes the thread which sent this message to be made not ready to run
either pending some change in the receiver (as indicated by
notify or notifyAll) or the expiration of
the timeout.
|
|
final
void
|
wait()
Causes the thread which sent this message to be made not ready to run
pending some change in the receiver (as indicated by notify
or notifyAll).
|
|
Public Constructors
public
ThreadLocal
()
Creates a new thread local variable.
Public Methods
public
T
get
()
Returns the value of this variable for the current thread. If an entry
doesn't yet exist for this variable on this thread, this method will
create an entry, populating the value with the result of
initialValue().
public
void
remove
()
Removes the entry for this variable in the current thread. If this call
is followed by a get() before a set(T),
#get() will call initialValue() and create a new
entry with the resulting value.
public
void
set
(T value)
Sets the value of this variable for the current thread. If set to
null, the value will be set to null and the underlying entry will still
be present.
Protected Methods
protected
T
initialValue
()
Provides the initial value of this variable for the current thread.
The default implementation returns null.