- tan(double) - Static method in class java.lang.Math
-
Returns the trigonometric tangent of an angle.
- tanh(double) - Static method in class java.lang.Math
-
Returns the hyperbolic tangent of a double
value.
- Target - Annotation Type in java.lang.annotation
-
Indicates the kinds of program element to which an annotation type is applicable.
- Thread - Class in java.lang
-
A thread is a thread of execution in a program.
- 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 with a specific target object whose run method is called.
- 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.State - Enum in java.lang
-
A thread state.
- Thread.UncaughtExceptionHandler - Interface in java.lang
-
Interface for handlers invoked when a Thread
abruptly terminates due to an uncaught
exception.
- Throwable - Class in java.lang
-
The Throwable
class is the superclass of all errors and exceptions in the Java language.
- Throwable() - Constructor for class java.lang.Throwable
-
Constructs a new throwable with null
as its detail message.
- Throwable(String) - Constructor for class java.lang.Throwable
-
Constructs a new throwable with the specified detail message.
- Throwable(String, Throwable) - Constructor for class java.lang.Throwable
-
Constructs a new throwable with the specified detail message and cause.
- Throwable(Throwable) - Constructor for class java.lang.Throwable
-
Constructs a new throwable with the specified cause and a detail message of
(cause==null ? null : cause.toString())
(which typically contains the class and detail
message of cause
).
- THURSDAY - Static variable in class java.util.Calendar
-
- time - Variable in class java.util.Calendar
-
The currently set time for this calendar, expressed in milliseconds after January 1, 1970,
0:00:00 GMT.
- Timer - Class in java.util
-
- Timer() - Constructor for class java.util.Timer
-
Deprecated.
Creates a new timer.
- Timer(String) - Constructor for class java.util.Timer
-
Deprecated.
Creates a new timer whose associated thread has the specified name.
- TimerTask - Class in java.util
-
- TimerTask() - Constructor for class java.util.TimerTask
-
Deprecated.
Creates a new timer task.
- TimeZone - Class in java.util
-
TimeZone
represents a time zone offset, and also figures out daylight savings.
- TimeZone() - Constructor for class java.util.TimeZone
-
Sole constructor.
- toArray() - Method in class java.util.AbstractCollection
-
Returns an array containing all of the elements in this collection.
- toArray(T[]) - Method in class java.util.AbstractCollection
-
Returns an array containing all of the elements in this collection; the runtime type of the
returned array is that of the specified array.
- toArray() - Method in class java.util.ArrayList
-
Returns an array containing all of the elements in this list in proper sequence (from first to
last element).
- toArray(T[]) - Method in class java.util.ArrayList
-
Returns an array containing all of the elements in this list in proper sequence (from first to
last element); the runtime type of the returned array is that of the specified array.
- toArray() - Method in interface java.util.Collection
-
Returns an array containing all of the elements in this collection.
- toArray(T[]) - Method in interface java.util.Collection
-
Returns an array containing all of the elements in this collection; the runtime type of the
returned array is that of the specified array.
- toArray() - Method in interface java.util.List
-
Returns an array containing all of the elements in this list in proper sequence (from first to
last element).
- toArray(T[]) - Method in interface java.util.List
-
Returns an array containing all of the elements in this list in proper sequence (from first to
last element); the runtime type of the returned array is that of the specified array.
- toArray() - Method in interface java.util.Set
-
Returns an array containing all of the elements in this set.
- toArray(T[]) - Method in interface java.util.Set
-
Returns an array containing all of the elements in this set; the runtime type of the returned
array is that of the specified array.
- toArray() - Method in class java.util.Vector
-
Returns an array containing all of the elements in this Vector in the correct order.
- toArray(T[]) - Method in class java.util.Vector
-
Returns an array containing all of the elements in this Vector in the correct order; the runtime
type of the returned array is that of the specified array.
- toBinaryString(int) - Static method in class java.lang.Integer
-
Returns a string representation of the integer argument as an unsigned integer in base 2.
- toBinaryString(long) - Static method in class java.lang.Long
-
Returns a string representation of the long
argument as an unsigned integer in
base 2.
- toByteArray() - Method in class java.io.ByteArrayOutputStream
-
Creates a newly allocated byte array.
- toCharArray() - Method in class java.lang.String
-
Converts this string to a new character array.
- toDegrees(double) - Static method in class java.lang.Math
-
Converts an angle measured in radians to an approximately equivalent angle measured in degrees.
- toHexString(int) - Static method in class java.lang.Integer
-
Returns a string representation of the integer argument as an unsigned integer in base 16.
- toHexString(long) - Static method in class java.lang.Long
-
Returns a string representation of the long
argument as an unsigned integer in
base 16.
- toLowerCase(char) - Static method in class java.lang.Character
-
Converts the character argument to lowercase using case mapping information from the UnicodeData
file.
- toLowerCase() - Method in class java.lang.String
-
Converts all of the characters in this String
to lower case using the rules of the
default locale.
- toOctalString(int) - Static method in class java.lang.Integer
-
Returns a string representation of the integer argument as an unsigned integer in base 8.
- toRadians(double) - Static method in class java.lang.Math
-
Converts an angle measured in degrees to an approximately equivalent angle measured in radians.
- toString() - Method in class java.io.ByteArrayOutputStream
-
Converts the buffer's contents into a string decoding bytes using the platform's default
character set.
- toString() - Method in interface java.lang.annotation.Annotation
-
Returns a string representation of this annotation.
- toString(boolean) - Static method in class java.lang.Boolean
-
Returns a String
object representing the specified boolean.
- toString() - Method in class java.lang.Boolean
-
Returns a String
object representing this Boolean's value.
- toString(byte) - Static method in class java.lang.Byte
-
Returns a new String
object representing the specified byte
.
- toString() - Method in class java.lang.Byte
-
Returns a String
object representing this Byte
's value.
- toString(char) - Static method in class java.lang.Character
-
Returns a String
object representing the specified char
.
- toString() - Method in class java.lang.Character
-
Returns a String
object representing this Character
's value.
- toString() - Method in interface java.lang.CharSequence
-
Returns a string containing the characters in this sequence in the same order as this sequence.
- toString() - Method in class java.lang.Class
-
Converts the object to a string.
- toString(double) - Static method in class java.lang.Double
-
Returns a string representation of the double
argument.
- toString() - Method in class java.lang.Double
-
Returns a string representation of this Double
object.
- toString() - Method in class java.lang.Enum
-
Returns the name of this enum constant, as contained in the declaration.
- toString(float) - Static method in class java.lang.Float
-
Returns a string representation of the float
argument.
- toString() - Method in class java.lang.Float
-
Returns a string representation of this Float
object.
- toString(int) - Static method in class java.lang.Integer
-
Returns a String
object representing the specified integer.
- toString(int, int) - Static method in class java.lang.Integer
-
Returns a string representation of the first argument in the radix specified by the second
argument.
- toString() - Method in class java.lang.Integer
-
Returns a String
object representing this Integer
's value.
- toString(long) - Static method in class java.lang.Long
-
Returns a String
object representing the specified long
.
- toString(long, int) - Static method in class java.lang.Long
-
Returns a string representation of the first argument in the radix specified by the second
argument.
- toString() - Method in class java.lang.Long
-
Returns a String
object representing this Long
's value.
- toString() - Method in class java.lang.Object
-
Returns a string representation of the object.
- toString() - Method in class java.lang.Package
-
Returns the string representation of this Package.
- toString(short) - Static method in class java.lang.Short
-
Returns a new String
object representing the specified short
.
- toString() - Method in class java.lang.Short
-
Returns a String
object representing this Short
's value.
- toString() - Method in class java.lang.StackTraceElement
-
Returns a string representation of this stack trace element.
- toString() - Method in class java.lang.String
-
This object (which is already a string!) is itself returned.
- toString() - Method in class java.lang.StringBuffer
-
- toString() - Method in class java.lang.StringBuilder
-
- 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.Throwable
-
Returns a short description of this throwable.
- toString() - Method in class java.security.Permission
-
Returns a string describing this Permission.
- toString() - Method in class java.util.AbstractCollection
-
Returns a string representation of this collection.
- toString() - Method in class java.util.AbstractMap.SimpleEntry
-
Returns a String representation of this map entry.
- toString() - Method in class java.util.AbstractMap.SimpleImmutableEntry
-
Returns a String representation of this map entry.
- toString() - Method in class java.util.AbstractMap
-
Returns a string representation of this map.
- toString() - Method in class java.util.Calendar
-
Return a string representation of this calendar.
- toString() - Method in class java.util.Date
-
Converts this Date
object to a String
of the form:
- toString() - Method in class java.util.EventObject
-
Returns a String representation of this EventObject.
- toString() - Method in class java.util.Hashtable
-
Returns a string representation of this Hashtable
object in the form of a set of
entries, enclosed in braces and separated by the ASCII characters ",
" (comma and
space).
- toString() - Method in class java.util.Vector
-
Returns a string representation of this Vector, containing the String representation of each
element.
- totalMemory() - Method in class java.lang.Runtime
-
Returns the total amount of memory in the Java virtual machine.
- toUpperCase(char) - Static method in class java.lang.Character
-
Converts the character argument to uppercase using case mapping information from the UnicodeData
file.
- toUpperCase() - Method in class java.lang.String
-
Converts all of the characters in this String
to upper case using the rules of the
default locale.
- trim() - Method in class java.lang.String
-
Returns a copy of the string, with leading and trailing whitespace omitted.
- trimToSize() - Method in class java.lang.StringBuffer
-
Attempts to reduce storage used for the character sequence.
- trimToSize() - Method in class java.lang.StringBuilder
-
Attempts to reduce storage used for the character sequence.
- trimToSize() - Method in class java.util.ArrayList
-
Trims the capacity of this ArrayList
instance to be the list's current size.
- trimToSize() - Method in class java.util.Vector
-
Trims the capacity of this vector to be the vector's current size.
- TRUE - Static variable in class java.lang.Boolean
-
The Boolean
object corresponding to the primitive value true
.
- TUESDAY - Static variable in class java.util.Calendar
-
- Type - Interface in java.lang.reflect
-
Type is the common superinterface for all types in the Java programming language.