Use is subject to License Terms. Your use of this web site or any of its content or software indicates your agreement to be bound by these License Terms.

Copyright © 2006 Sun Microsystems, Inc. All rights reserved.

Foundation 1.1.2
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

T

TAIWAN - Static variable in class java.util.Locale
Useful constant for country.
TAMIL - Static variable in class java.lang.Character.UnicodeBlock
Constant for the Unicode character block of the same name.
TCP_NODELAY - Static variable in interface java.net.SocketOptions
Disable Nagle's algorithm for this connection.
TC_ARRAY - Static variable in interface java.io.ObjectStreamConstants
new Array.
TC_BASE - Static variable in interface java.io.ObjectStreamConstants
First tag value.
TC_BLOCKDATA - Static variable in interface java.io.ObjectStreamConstants
Block of optional data.
TC_BLOCKDATALONG - Static variable in interface java.io.ObjectStreamConstants
long Block data.
TC_CLASS - Static variable in interface java.io.ObjectStreamConstants
Reference to Class.
TC_CLASSDESC - Static variable in interface java.io.ObjectStreamConstants
new Class Descriptor.
TC_ENDBLOCKDATA - Static variable in interface java.io.ObjectStreamConstants
End of optional block data blocks for an object.
TC_EXCEPTION - Static variable in interface java.io.ObjectStreamConstants
Exception during write.
TC_LONGSTRING - Static variable in interface java.io.ObjectStreamConstants
Long string.
TC_MAX - Static variable in interface java.io.ObjectStreamConstants
Last tag value.
TC_NULL - Static variable in interface java.io.ObjectStreamConstants
Null object reference.
TC_OBJECT - Static variable in interface java.io.ObjectStreamConstants
new Object.
TC_PROXYCLASSDESC - Static variable in interface java.io.ObjectStreamConstants
new Proxy Class Descriptor.
TC_REFERENCE - Static variable in interface java.io.ObjectStreamConstants
Reference to an object already written into the stream.
TC_RESET - Static variable in interface java.io.ObjectStreamConstants
Reset stream context.
TC_STRING - Static variable in interface java.io.ObjectStreamConstants
new String.
TELUGU - Static variable in class java.lang.Character.UnicodeBlock
Constant for the Unicode character block of the same name.
TERTIARY - Static variable in class java.text.Collator
Collator strength value.
THAANA - Static variable in class java.lang.Character.UnicodeBlock
Constant for the Unicode character block of the same name.
THAI - Static variable in class java.lang.Character.UnicodeBlock
Constant for the Unicode character block of the same name.
THURSDAY - Static variable in class java.util.Calendar
Value of the DAY_OF_WEEK field indicating Thursday.
TIBETAN - Static variable in class java.lang.Character.UnicodeBlock
Constant for the Unicode character block of the same name.
TIMEZONE_FIELD - Static variable in class java.text.DateFormat
Useful constant for TIMEZONE field alignment.
TIME_ZONE - Static variable in class java.text.DateFormat.Field
Constant identifying the time zone field.
TITLECASE_LETTER - Static variable in class java.lang.Character
General category "Lt" in the Unicode specification.
TRADITIONAL_CHINESE - Static variable in class java.util.Locale
Useful constant for language.
TRANSIENT - Static variable in class java.lang.reflect.Modifier
The int value representing the transient modifier.
TRUE - Static variable in class java.lang.Boolean
The Boolean object corresponding to the primitive value true.
TT_EOF - Static variable in class java.io.StreamTokenizer
A constant indicating that the end of the stream has been read.
TT_EOL - Static variable in class java.io.StreamTokenizer
A constant indicating that the end of the line has been read.
TT_NUMBER - Static variable in class java.io.StreamTokenizer
A constant indicating that a number token has been read.
TT_WORD - Static variable in class java.io.StreamTokenizer
A constant indicating that a word token has been read.
TUESDAY - Static variable in class java.util.Calendar
Value of the DAY_OF_WEEK field indicating Tuesday.
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 instance representing the primitive type byte.
TYPE - Static variable in class java.lang.Character
The Class instance representing the primitive type char.
TYPE - Static variable in class java.lang.Double
The Class instance representing the primitive type double.
TYPE - Static variable in class java.lang.Float
The Class instance representing the primitive type float.
TYPE - Static variable in class java.lang.Integer
The Class instance representing the primitive type int.
TYPE - Static variable in class java.lang.Long
The Class instance representing the primitive type long.
TYPE - Static variable in class java.lang.Short
The Class instance representing the primitive type short.
TYPE - Static variable in class java.lang.Void
The Class object representing the primitive Java type void.
Thread - class java.lang.Thread.
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.
Thread(ThreadGroup, Runnable) - 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, String) - 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(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, Runnable, String, long) - 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, belongs to the thread group referred to by group, and has the specified stack size.
ThreadDeath - error java.lang.ThreadDeath.
An instance of ThreadDeath is thrown in the victim thread when the stop method with zero arguments in class Thread is called.
ThreadDeath() - Constructor for class java.lang.ThreadDeath
 
ThreadGroup - class java.lang.ThreadGroup.
A thread group represents a set of threads.
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.
ThreadLocal - class java.lang.ThreadLocal.
This class provides thread-local variables.
ThreadLocal() - Constructor for class java.lang.ThreadLocal
 
Throwable - class java.lang.Throwable.
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).
TimeZone - class java.util.TimeZone.
TimeZone represents a time zone offset, and also figures out daylight savings.
TimeZone() - Constructor for class java.util.TimeZone
Sole constructor.
Timer - class java.util.Timer.
A facility for threads to schedule tasks for future execution in a background thread.
Timer() - Constructor for class java.util.Timer
Creates a new timer.
Timer(boolean) - Constructor for class java.util.Timer
Creates a new timer whose associated thread may be specified to run as a daemon.
TimerTask - class java.util.TimerTask.
A task that can be scheduled for one-time or repeated execution by a Timer.
TimerTask() - Constructor for class java.util.TimerTask
Creates a new timer task.
TooManyListenersException - exception java.util.TooManyListenersException.
The TooManyListenersException Exception is used as part of the Java Event model to annotate and implement a unicast special case of a multicast Event Source.
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.
TreeMap - class java.util.TreeMap.
Red-Black tree based implementation of the SortedMap interface.
TreeMap() - Constructor for class java.util.TreeMap
Constructs a new, empty map, sorted according to the keys' natural order.
TreeMap(Comparator) - Constructor for class java.util.TreeMap
Constructs a new, empty map, sorted according to the given comparator.
TreeMap(Map) - Constructor for class java.util.TreeMap
Constructs a new map containing the same mappings as the given map, sorted according to the keys' natural order.
TreeMap(SortedMap) - Constructor for class java.util.TreeMap
Constructs a new map containing the same mappings as the given SortedMap, sorted according to the same ordering.
TreeSet - class java.util.TreeSet.
This class implements the Set interface, backed by a TreeMap instance.
TreeSet() - Constructor for class java.util.TreeSet
Constructs a new, empty set, sorted according to the elements' natural order.
TreeSet(Comparator) - Constructor for class java.util.TreeSet
Constructs a new, empty set, sorted according to the specified comparator.
TreeSet(Collection) - Constructor for class java.util.TreeSet
Constructs a new set containing the elements in the specified collection, sorted according to the elements' natural order.
TreeSet(SortedSet) - Constructor for class java.util.TreeSet
Constructs a new set containing the same elements as the specified sorted set, sorted according to the same ordering.
tailMap(Object) - Method in interface java.util.SortedMap
Returns a view of the portion of this sorted map whose keys are greater than or equal to fromKey.
tailMap(Object) - Method in class java.util.TreeMap
Returns a view of the portion of this map whose keys are greater than or equal to fromKey.
tailSet(Object) - Method in interface java.util.SortedSet
Returns a view of the portion of this sorted set whose elements are greater than or equal to fromElement.
tailSet(Object) - Method in class java.util.TreeSet
Returns a view of the portion of this set whose elements are greater than or equal to fromElement.
tan(double) - Static method in class java.lang.Math
Returns the trigonometric tangent of an angle.
tan(double) - Static method in class java.lang.StrictMath
Returns the trigonometric tangent of an angle.
tertiaryOrder(int) - Static method in class java.text.CollationElementIterator
Return the tertiary component of a collation element.
testBit(int) - Method in class java.math.BigInteger
Returns true if and only if the designated bit is set.
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.
toASCIIString() - Method in class java.net.URI
Returns the content of this URI as a US-ASCII string.
toArray() - Method in class java.util.AbstractCollection
Returns an array containing all of the elements in this collection.
toArray(Object[]) - 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 the correct order.
toArray(Object[]) - Method in class java.util.ArrayList
Returns an array containing all of the elements in this list in the correct order; 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(Object[]) - 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 class java.util.LinkedList
Returns an array containing all of the elements in this list in the correct order.
toArray(Object[]) - Method in class java.util.LinkedList
Returns an array containing all of the elements in this list in the correct order; 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.
toArray(Object[]) - Method in interface java.util.List
Returns an array containing all of the elements in this list in proper sequence; 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(Object[]) - 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(Object[]) - 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.
toBigInteger() - Method in class java.math.BigDecimal
Converts this BigDecimal to a BigInteger.
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.
toByteArray() - Method in class java.math.BigInteger
Returns a byte array containing the two's-complement representation of this BigInteger.
toByteArray() - Method in class java.text.CollationKey
Converts the CollationKey to a sequence of bits.
toCharArray() - Method in class java.io.CharArrayWriter
Returns a copy of the input data.
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.
toDegrees(double) - Static method in class java.lang.StrictMath
Converts an angle measured in radians to an approximately equivalent angle measured in degrees.
toExternalForm() - Method in class java.net.URL
Constructs a string representation of this URL.
toExternalForm(URL) - Method in class java.net.URLStreamHandler
Converts a URL of a specific protocol to a String.
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.
toLocalizedPattern() - Method in class java.text.DecimalFormat
Synthesizes a localized pattern string that represents the current state of this Format object.
toLocalizedPattern() - Method in class java.text.SimpleDateFormat
Returns a localized pattern string describing this date format.
toLowerCase(char) - Static method in class java.lang.Character
Converts the character argument to lowercase using case mapping information from the UnicodeData file.
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.
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.
toOctalString(long) - Static method in class java.lang.Long
Returns a string representation of the long argument as an unsigned integer in base 8.
toPattern() - Method in class java.text.ChoiceFormat
Gets the pattern.
toPattern() - Method in class java.text.DecimalFormat
Synthesizes a pattern string that represents the current state of this Format object.
toPattern() - Method in class java.text.MessageFormat
Returns a pattern representing the current state of the message format.
toPattern() - Method in class java.text.SimpleDateFormat
Returns a pattern string describing this date format.
toRadians(double) - Static method in class java.lang.Math
Converts an angle measured in degrees to an approximately equivalent angle measured in radians.
toRadians(double) - Static method in class java.lang.StrictMath
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, translating bytes into characters according to the platform's default character encoding.
toString(String) - Method in class java.io.ByteArrayOutputStream
Converts the buffer's contents into a string, translating bytes into characters according to the specified character encoding.
toString() - Method in class java.io.CharArrayWriter
Converts input data to a string.
toString() - Method in class java.io.File
Returns the pathname string of this abstract pathname.
toString() - Method in class java.io.ObjectStreamClass
Return a string describing this ObjectStreamClass.
toString() - Method in class java.io.ObjectStreamField
Return a string that describes this field.
toString() - Method in class java.io.StreamTokenizer
Returns the string representation of the current stream token and the line number it occurs on.
toString() - Method in class java.io.StringWriter
Return the buffer's current value as a string.
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() - 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.Character.Subset
Returns the name of this subset.
toString() - Method in class java.lang.Character
Returns a String object representing this Character'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.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(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, 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(int) - Static method in class java.lang.Integer
Returns a String object representing the specified integer.
toString() - Method in class java.lang.Integer
Returns a String object representing this Integer's value.
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(long) - Static method in class java.lang.Long
Returns a String object representing the specified long.
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
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.
toString() - Method in class java.lang.reflect.Constructor
Returns a string describing this Constructor.
toString() - Method in class java.lang.reflect.Field
Returns a string describing this Field.
toString() - Method in class java.lang.reflect.Method
Returns a string describing this Method.
toString(int) - Static method in class java.lang.reflect.Modifier
Return a string describing the access modifier flags in the specified modifier.
toString() - Method in class java.math.BigDecimal
Returns the string representation of this BigDecimal.
toString(int) - Method in class java.math.BigInteger
Returns the String representation of this BigInteger in the given radix.
toString() - Method in class java.math.BigInteger
Returns the decimal String representation of this BigInteger.
toString() - Method in class java.net.InetAddress
Converts this IP address to a String.
toString() - Method in class java.net.InetSocketAddress
Constructs a string representation of this InetSocketAddress.
toString() - Method in class java.net.NetworkInterface
 
toString() - Method in class java.net.ServerSocket
Returns the implementation address and implementation port of this socket as a String.
toString() - Method in class java.net.Socket
Converts this socket to a String.
toString() - Method in class java.net.SocketImpl
Returns the address and port of this socket as a String.
toString() - Method in class java.net.URI
Returns the content of this URI as a string.
toString() - Method in class java.net.URL
Constructs a string representation of this URL.
toString() - Method in class java.net.URLConnection
Returns a String representation of this URL connection.
toString() - Method in class java.security.AlgorithmParameters
Returns a formatted string describing the parameters.
toString(boolean) - Method in interface java.security.Certificate
Deprecated. Returns a string that represents the contents of the certificate.
toString() - Method in class java.security.CodeSource
Returns a string describing this CodeSource, telling its URL and certificates.
toString() - Method in class java.security.DigestInputStream
Prints a string representation of this digest input stream and its associated message digest object.
toString() - Method in class java.security.DigestOutputStream
Prints a string representation of this digest output stream and its associated message digest object.
toString() - Method in class java.security.Identity
Deprecated. Returns a short string describing this identity, telling its name and its scope (if any).
toString(boolean) - Method in class java.security.Identity
Deprecated. Returns a string representation of this identity, with optionally more details than that provided by the toString method without any arguments.
toString() - Method in class java.security.IdentityScope
Deprecated. Returns a string representation of this identity scope, including its name, its scope name, and the number of identities in this identity scope.
toString() - Method in class java.security.MessageDigest
Returns a string representation of this message digest object.
toString() - Method in class java.security.Permission
Returns a string describing this Permission.
toString() - Method in class java.security.PermissionCollection
Returns a string describing this PermissionCollection object, providing information about all the permissions it contains.
toString() - Method in interface java.security.Principal
Returns a string representation of this principal.
toString() - Method in class java.security.PrivilegedActionException
 
toString() - Method in class java.security.ProtectionDomain
Convert a ProtectionDomain to a String.
toString() - Method in class java.security.Provider
Returns a string with the name and the version number of this provider.
toString() - Method in class java.security.Signature
Returns a string representation of this signature object, providing information that includes the state of the object and the name of the algorithm used.
toString() - Method in class java.security.Signer
Deprecated. Returns a string of information about the signer.
toString() - Method in class java.security.UnresolvedPermission
Returns a string describing this UnresolvedPermission.
toString() - Method in interface java.security.acl.Acl
Returns a string representation of the ACL contents.
toString() - Method in interface java.security.acl.AclEntry
Returns a string representation of the contents of this ACL entry.
toString() - Method in interface java.security.acl.Permission
Prints a string representation of this permission.
toString() - Method in class java.security.cert.CRL
Returns a string representation of this CRL.
toString() - Method in class java.security.cert.CertPath
Returns a string representation of this certification path.
toString() - Method in class java.security.cert.Certificate
Returns a string representation of this certificate.
toString() - Method in class java.security.cert.X509CRLEntry
Returns a string representation of this CRL entry.
toString() - Method in class java.text.Annotation
Returns the String representation of this Annotation.
toString() - Method in class java.text.AttributedCharacterIterator.Attribute
Returns a string representation of the object.
toString() - Method in class java.text.FieldPosition
Return a string representation of this FieldPosition.
toString() - Method in class java.text.ParsePosition
Return a string representation of this ParsePosition.
toString() - Method in class java.util.AbstractCollection
Returns a string representation of this collection.
toString() - Method in class java.util.AbstractMap
Returns a string representation of this map.
toString() - Method in class java.util.BitSet
Returns a string representation of this bit set.
toString() - Method in class java.util.Calendar
Return a string representation of this calendar.
toString() - Method in class java.util.Currency
Returns the ISO 4217 currency code of this currency.
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.Locale
Getter for the programmatic name of the entire locale, with the language, country and variant separated by underbars.
toString() - Method in class java.util.SimpleTimeZone
Returns a string representation of this time zone.
toString() - Method in class java.util.Vector
Returns a string representation of this Vector, containing the String representation of each element.
toString() - Method in class java.util.jar.Attributes.Name
Returns the attribute name as a String.
toString() - Method in class java.util.zip.ZipEntry
Returns a string representation of the ZIP entry.
toString() - Method in class javax.security.auth.x500.X500Principal
Return a user-friendly string representation of this X500Principal.
toTitleCase(char) - Static method in class java.lang.Character
Converts the character argument to titlecase using case mapping information from the UnicodeData file.
toURI() - Method in class java.io.File
Constructs a file: URI that represents this abstract pathname.
toURL() - Method in class java.io.File
Converts this abstract pathname into a file: URL.
toURL() - Method in class java.net.URI
Constructs a URL from this URI.
toUpperCase(char) - Static method in class java.lang.Character
Converts the character argument to uppercase using case mapping information from the UnicodeData file.
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.
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.
totalMemory() - Method in class java.lang.Runtime
Returns the total amount of memory in the Java virtual machine.
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.
translateKey(Key) - Method in class java.security.KeyFactory
Translates a key object, whose provider may be unknown or potentially untrusted, into a corresponding key object of this key factory.
trim() - Method in class java.lang.String
Returns a copy of the string, with leading and trailing whitespace omitted.
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.
ttype - Variable in class java.io.StreamTokenizer
After a call to the nextToken method, this field contains the type of the token just read.

Foundation 1.1.2
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
Copyright © 2006 Sun Microsystems, Inc. All rights reserved. Use is subject to License Terms. Your use of this web site or any of its content or software indicates your agreement to be bound by these License Terms.

For more information, please consult the JSR 219 specification.