Please note that this documentation is not final and is subject to change.

Java™ Platform
Standard Ed. 7

DRAFT ea-b37
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

TAB - Static variable in class java.awt.Event
The Tab key.
TabableView - Interface in javax.swing.text
Interface for Views that have size dependent upon tabs.
tabAreaBackground - Variable in class javax.swing.plaf.metal.MetalTabbedPaneUI
 
tabAreaInsets - Variable in class javax.swing.plaf.basic.BasicTabbedPaneUI
 
TABBED_PANE - Static variable in class javax.swing.plaf.synth.Region
TabbedPane region.
TABBED_PANE_CONTENT - Static variable in class javax.swing.plaf.synth.Region
Region of a TabbedPane containing the content.
TABBED_PANE_TAB - Static variable in class javax.swing.plaf.synth.Region
Region of a TabbedPane for one tab.
TABBED_PANE_TAB_AREA - Static variable in class javax.swing.plaf.synth.Region
Region of a TabbedPane containing the tabs.
TabbedPaneUI - Class in javax.swing.plaf
Pluggable look and feel interface for JTabbedPane.
TabbedPaneUI() - Constructor for class javax.swing.plaf.TabbedPaneUI
 
tabChangeListener - Variable in class javax.swing.plaf.basic.BasicTabbedPaneUI
 
TabExpander - Interface in javax.swing.text
Simple interface to allow for different types of implementations of tab expansion.
tabForCoordinate(JTabbedPane, int, int) - Method in class javax.swing.plaf.basic.BasicTabbedPaneUI
Returns the tab index which intersects the specified point in the JTabbedPane's coordinate space.
tabForCoordinate(JTabbedPane, int, int) - Method in class javax.swing.plaf.multi.MultiTabbedPaneUI
Invokes the tabForCoordinate method on each UI handled by this object.
tabForCoordinate(JTabbedPane, int, int) - Method in class javax.swing.plaf.TabbedPaneUI
 
tabInsets - Variable in class javax.swing.plaf.basic.BasicTabbedPaneUI
 
TABLE - Static variable in class javax.accessibility.AccessibleRole
An object used to present information in terms of rows and columns.
table - Variable in class javax.swing.plaf.basic.BasicTableUI
 
TABLE - Static variable in class javax.swing.plaf.synth.Region
Table region.
table - Variable in class javax.swing.table.JTableHeader
The table for which this object is the header; the default is null.
TABLE - Static variable in class javax.swing.text.html.HTML.Tag
 
TABLE_HEADER - Static variable in class javax.swing.plaf.synth.Region
TableHeader region.
TableCellEditor - Interface in javax.swing.table
This interface defines the method any object that would like to be an editor of values for components such as JListBox, JComboBox, JTree, or JTable needs to implement.
TableCellRenderer - Interface in javax.swing.table
This interface defines the method required by any object that would like to be a renderer for cells in a JTable.
tableChanged(TableModelEvent) - Method in interface javax.swing.event.TableModelListener
This fine grain notification tells listeners the exact range of cells, rows, or columns that changed.
tableChanged(TableModelEvent) - Method in class javax.swing.JTable.AccessibleJTable
Track changes to the table contents
tableChanged(TableModelEvent) - Method in class javax.swing.JTable
Invoked when this table's TableModel generates a TableModelEvent.
TableColumn - Class in javax.swing.table
A TableColumn represents all the attributes of a column in a JTable, such as width, resizibility, minimum and maximum width.
TableColumn() - Constructor for class javax.swing.table.TableColumn
Cover method, using a default model index of 0, default width of 75, a null renderer and a null editor.
TableColumn(int) - Constructor for class javax.swing.table.TableColumn
Cover method, using a default width of 75, a null renderer and a null editor.
TableColumn(int, int) - Constructor for class javax.swing.table.TableColumn
Cover method, using a null renderer and a null editor.
TableColumn(int, int, TableCellRenderer, TableCellEditor) - Constructor for class javax.swing.table.TableColumn
Creates and initializes an instance of TableColumn with the specified model index, width, cell renderer, and cell editor; all TableColumn constructors delegate to this one.
TableColumnModel - Interface in javax.swing.table
Defines the requirements for a table column model object suitable for use with JTable.
TableColumnModelEvent - Class in javax.swing.event
TableColumnModelEvent is used to notify listeners that a table column model has changed, such as a column was added, removed, or moved.
TableColumnModelEvent(TableColumnModel, int, int) - Constructor for class javax.swing.event.TableColumnModelEvent
Constructs a TableColumnModelEvent object.
TableColumnModelListener - Interface in javax.swing.event
TableColumnModelListener defines the interface for an object that listens to changes in a TableColumnModel.
tableColumns - Variable in class javax.swing.table.DefaultTableColumnModel
Array of TableColumn objects in this model
tableHeader - Variable in class javax.swing.JTable
The TableHeader working with the table.
TableHeaderUI - Class in javax.swing.plaf
Pluggable look and feel interface for JTableHeader.
TableHeaderUI() - Constructor for class javax.swing.plaf.TableHeaderUI
 
tableIndexClustered - Static variable in interface java.sql.DatabaseMetaData
Indicates that this table index is a clustered index.
tableIndexHashed - Static variable in interface java.sql.DatabaseMetaData
Indicates that this table index is a hashed index.
tableIndexOther - Static variable in interface java.sql.DatabaseMetaData
Indicates that this table index is not a clustered index, a hashed index, or table statistics; it is something other than these.
tableIndexStatistic - Static variable in interface java.sql.DatabaseMetaData
Indicates that this column contains table statistics that are returned in conjunction with a table's index descriptions.
TableModel - Interface in javax.swing.table
The TableModel interface specifies the methods the JTable will use to interrogate a tabular data model.
TableModelEvent - Class in javax.swing.event
TableModelEvent is used to notify listeners that a table model has changed.
TableModelEvent(TableModel) - Constructor for class javax.swing.event.TableModelEvent
All row data in the table has changed, listeners should discard any state that was based on the rows and requery the TableModel to get the new row count and all the appropriate values.
TableModelEvent(TableModel, int) - Constructor for class javax.swing.event.TableModelEvent
This row of data has been updated.
TableModelEvent(TableModel, int, int) - Constructor for class javax.swing.event.TableModelEvent
The data in rows [firstRow, lastRow] have been updated.
TableModelEvent(TableModel, int, int, int) - Constructor for class javax.swing.event.TableModelEvent
The cells in column column in the range [firstRow, lastRow] have been updated.
TableModelEvent(TableModel, int, int, int, int) - Constructor for class javax.swing.event.TableModelEvent
The cells from (firstRow, column) to (lastRow, column) have been changed.
TableModelListener - Interface in javax.swing.event
TableModelListener defines the interface for an object that listens to changes in a TableModel.
tableRowsDeleted(TableModelEvent) - Method in class javax.swing.JTable.AccessibleJTable
Track changes to the table contents (row deletions)
tableRowsInserted(TableModelEvent) - Method in class javax.swing.JTable.AccessibleJTable
Track changes to the table contents (row insertions)
TableRowSorter<M extends TableModel> - Class in javax.swing.table
An implementation of RowSorter that provides sorting and filtering using a TableModel.
TableRowSorter() - Constructor for class javax.swing.table.TableRowSorter
Creates a TableRowSorter with an empty model.
TableRowSorter(M) - Constructor for class javax.swing.table.TableRowSorter
Creates a TableRowSorter using model as the underlying TableModel.
TableStringConverter - Class in javax.swing.table
TableStringConverter is used to convert objects from the model into strings.
TableStringConverter() - Constructor for class javax.swing.table.TableStringConverter
 
TableUI - Class in javax.swing.plaf
Pluggable look and feel interface for JTable.
TableUI() - Constructor for class javax.swing.plaf.TableUI
 
TableView - Class in javax.swing.text
Implements View interface for a table, that is composed of an element structure where the child elements of the element this view is responsible for represent rows and the child elements of the row elements are cells.
TableView(Element) - Constructor for class javax.swing.text.TableView
Constructs a TableView for the given element.
TableView.TableCell - Class in javax.swing.text
Deprecated. A table cell can now be any View implementation.
TableView.TableCell(Element) - Constructor for class javax.swing.text.TableView.TableCell
Deprecated. Constructs a TableCell for the given element.
TableView.TableRow - Class in javax.swing.text
View of a row in a row-centric table.
TableView.TableRow(Element) - Constructor for class javax.swing.text.TableView.TableRow
Constructs a TableView for the given element.
TABLOID - Static variable in class java.awt.PageAttributes.MediaType
An alias for LEDGER.
TABLOID - Static variable in class javax.print.attribute.standard.MediaSize.Other
Specifies the tabloid size, 11 inches by 17 inches.
TABLOID - Static variable in class javax.print.attribute.standard.MediaSizeName
tabloid size .
tabPane - Variable in class javax.swing.plaf.basic.BasicTabbedPaneUI
 
tabPlacement - Variable in class javax.swing.JTabbedPane
Where the tabs are placed.
tabRunOverlay - Variable in class javax.swing.plaf.basic.BasicTabbedPaneUI
 
tabRuns - Variable in class javax.swing.plaf.basic.BasicTabbedPaneUI
 
TabSet - Static variable in class javax.swing.text.StyleConstants
TabSet for the paragraph, type is a TabSet containing TabStops.
TabSet - Class in javax.swing.text
A TabSet is comprised of many TabStops.
TabSet(TabStop[]) - Constructor for class javax.swing.text.TabSet
Creates and returns an instance of TabSet.
tabSizeAttribute - Static variable in class javax.swing.text.PlainDocument
Name of the attribute that specifies the tab size for tabs contained in the content.
TabStop - Class in javax.swing.text
This class encapsulates a single tab stop (basically as tab stops are thought of by RTF).
TabStop(float) - Constructor for class javax.swing.text.TabStop
Creates a tab at position pos with a default alignment and default leader.
TabStop(float, int, int) - Constructor for class javax.swing.text.TabStop
Creates a tab with the specified position pos, alignment align and leader leader.
TabularData - Interface in javax.management.openmbean
The TabularData interface specifies the behavior of a specific type of complex open data objects which represent tabular data structures.
TabularDataSupport - Class in javax.management.openmbean
The TabularDataSupport class is the open data class which implements the TabularData and the Map interfaces, and which is internally based on a hash map data structure.
TabularDataSupport(TabularType) - Constructor for class javax.management.openmbean.TabularDataSupport
Creates an empty TabularDataSupport instance whose open-type is tabularType, and whose underlying HashMap has a default initial capacity (101) and default load factor (0.75).
TabularDataSupport(TabularType, int, float) - Constructor for class javax.management.openmbean.TabularDataSupport
Creates an empty TabularDataSupport instance whose open-type is tabularType, and whose underlying HashMap has the specified initial capacity and load factor.
TabularType - Class in javax.management.openmbean
The TabularType class is the open type class whose instances describe the types of TabularData values.
TabularType(String, String, CompositeType, String[]) - Constructor for class javax.management.openmbean.TabularType
Constructs a TabularType instance, checking for the validity of the given parameters.
tag - Variable in class org.omg.IOP.TaggedComponent
The tag, represented as a component id.
tag - Variable in class org.omg.IOP.TaggedProfile
The tag, represented as a profile id.
TAG_ACNT - Static variable in interface java.awt.font.OpenType
Accent attachment.
TAG_ALTERNATE_IIOP_ADDRESS - Interface in org.omg.IOP
org/omg/IOP/TAG_ALTERNATE_IIOP_ADDRESS.java .
TAG_AVAR - Static variable in interface java.awt.font.OpenType
Axis variaiton.
TAG_BASE - Static variable in interface java.awt.font.OpenType
Baseline data.
TAG_BDAT - Static variable in interface java.awt.font.OpenType
Bitmap data.
TAG_BLOC - Static variable in interface java.awt.font.OpenType
Bitmap location.
TAG_BSLN - Static variable in interface java.awt.font.OpenType
Baseline table.
TAG_CFF - Static variable in interface java.awt.font.OpenType
Compact font format (Type1 font).
TAG_CMAP - Static variable in interface java.awt.font.OpenType
Character to glyph mapping.
TAG_CODE_SETS - Interface in org.omg.IOP
org/omg/IOP/TAG_CODE_SETS.java .
TAG_CVAR - Static variable in interface java.awt.font.OpenType
CVT variation.
TAG_CVT - Static variable in interface java.awt.font.OpenType
Control value table.
TAG_DSIG - Static variable in interface java.awt.font.OpenType
Digital signature.
TAG_EBDT - Static variable in interface java.awt.font.OpenType
Embedded bitmap data.
TAG_EBLC - Static variable in interface java.awt.font.OpenType
Embedded bitmap location.
TAG_EBSC - Static variable in interface java.awt.font.OpenType
Embedded bitmap scaling.
TAG_FDSC - Static variable in interface java.awt.font.OpenType
Font descriptors.
TAG_FEAT - Static variable in interface java.awt.font.OpenType
Feature name.
TAG_FMTX - Static variable in interface java.awt.font.OpenType
Font metrics.
TAG_FPGM - Static variable in interface java.awt.font.OpenType
Font program.
TAG_FVAR - Static variable in interface java.awt.font.OpenType
Font variation.
TAG_GASP - Static variable in interface java.awt.font.OpenType
Grid-fitting and scan conversion procedure.
TAG_GDEF - Static variable in interface java.awt.font.OpenType
Glyph definition.
TAG_GLYF - Static variable in interface java.awt.font.OpenType
Glyph data.
TAG_GPOS - Static variable in interface java.awt.font.OpenType
Glyph positioning.
TAG_GSUB - Static variable in interface java.awt.font.OpenType
Glyph substitution.
TAG_GVAR - Static variable in interface java.awt.font.OpenType
Glyph variation.
TAG_HDMX - Static variable in interface java.awt.font.OpenType
Horizontal device metrics.
TAG_HEAD - Static variable in interface java.awt.font.OpenType
Font header.
TAG_HHEA - Static variable in interface java.awt.font.OpenType
Horizontal metrics header.
TAG_HMTX - Static variable in interface java.awt.font.OpenType
Horizontal metrics.
TAG_INTERNET_IOP - Interface in org.omg.IOP
org/omg/IOP/TAG_INTERNET_IOP.java .
TAG_JAVA_CODEBASE - Interface in org.omg.IOP
org/omg/IOP/TAG_JAVA_CODEBASE.java .
TAG_JSTF - Static variable in interface java.awt.font.OpenType
Justification.
TAG_JUST - Static variable in interface java.awt.font.OpenType
Justification.
TAG_KERN - Static variable in interface java.awt.font.OpenType
Kerning.
TAG_LCAR - Static variable in interface java.awt.font.OpenType
Ligature caret.
TAG_LOCA - Static variable in interface java.awt.font.OpenType
Index to location.
TAG_LTSH - Static variable in interface java.awt.font.OpenType
Linear threshold.
TAG_MAXP - Static variable in interface java.awt.font.OpenType
Maximum profile.
TAG_MMFX - Static variable in interface java.awt.font.OpenType
Multiple master font metrics.
TAG_MMSD - Static variable in interface java.awt.font.OpenType
Multiple master supplementary data.
TAG_MORT - Static variable in interface java.awt.font.OpenType
Glyph metamorphosis.
TAG_MULTIPLE_COMPONENTS - Interface in org.omg.IOP
org/omg/IOP/TAG_MULTIPLE_COMPONENTS.java .
TAG_NAME - Static variable in interface java.awt.font.OpenType
Naming table.
TAG_OPBD - Static variable in interface java.awt.font.OpenType
Optical bounds.
TAG_ORB_TYPE - Interface in org.omg.IOP
org/omg/IOP/TAG_ORB_TYPE.java .
TAG_OS2 - Static variable in interface java.awt.font.OpenType
OS/2 and Windows specific metrics.
TAG_PCLT - Static variable in interface java.awt.font.OpenType
PCL 5 data.
TAG_POLICIES - Interface in org.omg.IOP
org/omg/IOP/TAG_POLICIES.java .
TAG_POST - Static variable in interface java.awt.font.OpenType
PostScript Information.
TAG_PREP - Static variable in interface java.awt.font.OpenType
CVT preprogram.
TAG_PROP - Static variable in interface java.awt.font.OpenType
Glyph properties.
TAG_RMI_CUSTOM_MAX_STREAM_FORMAT - Interface in org.omg.IOP
org/omg/IOP/TAG_RMI_CUSTOM_MAX_STREAM_FORMAT.java .
TAG_TRAK - Static variable in interface java.awt.font.OpenType
Tracking.
TAG_TYP1 - Static variable in interface java.awt.font.OpenType
Adobe Type 1 font data.
TAG_VDMX - Static variable in interface java.awt.font.OpenType
Vertical device metrics.
TAG_VHEA - Static variable in interface java.awt.font.OpenType
Vertical metrics header.
TAG_VMTX - Static variable in interface java.awt.font.OpenType
Vertical metrics.
TAGALOG - Static variable in class java.lang.Character.UnicodeBlock
Constant for the "Tagalog" Unicode character block.
TAGBANWA - Static variable in class java.lang.Character.UnicodeBlock
Constant for the "Tagbanwa" Unicode character block.
TagElement - Class in javax.swing.text.html.parser
A generic HTML TagElement class.
TagElement(Element) - Constructor for class javax.swing.text.html.parser.TagElement
 
TagElement(Element, boolean) - Constructor for class javax.swing.text.html.parser.TagElement
 
TaggedComponent - Class in org.omg.IOP
org/omg/IOP/TaggedComponent.java .
TaggedComponent() - Constructor for class org.omg.IOP.TaggedComponent
 
TaggedComponent(int, byte[]) - Constructor for class org.omg.IOP.TaggedComponent
 
TaggedComponentHelper - Class in org.omg.IOP
org/omg/IOP/TaggedComponentHelper.java .
TaggedComponentHelper() - Constructor for class org.omg.IOP.TaggedComponentHelper
 
TaggedComponentHolder - Class in org.omg.IOP
org/omg/IOP/TaggedComponentHolder.java .
TaggedComponentHolder() - Constructor for class org.omg.IOP.TaggedComponentHolder
 
TaggedComponentHolder(TaggedComponent) - Constructor for class org.omg.IOP.TaggedComponentHolder
 
TaggedProfile - Class in org.omg.IOP
org/omg/IOP/TaggedProfile.java .
TaggedProfile() - Constructor for class org.omg.IOP.TaggedProfile
 
TaggedProfile(int, byte[]) - Constructor for class org.omg.IOP.TaggedProfile
 
TaggedProfileHelper - Class in org.omg.IOP
org/omg/IOP/TaggedProfileHelper.java .
TaggedProfileHelper() - Constructor for class org.omg.IOP.TaggedProfileHelper
 
TaggedProfileHolder - Class in org.omg.IOP
org/omg/IOP/TaggedProfileHolder.java .
TaggedProfileHolder() - Constructor for class org.omg.IOP.TaggedProfileHolder
 
TaggedProfileHolder(TaggedProfile) - Constructor for class org.omg.IOP.TaggedProfileHolder
 
TAGS - Static variable in class java.lang.Character.UnicodeBlock
Constant for the "Tags" Unicode character block.
TAI_LE - Static variable in class java.lang.Character.UnicodeBlock
Constant for the "Tai Le" Unicode character block.
TAI_XUAN_JING_SYMBOLS - Static variable in class java.lang.Character.UnicodeBlock
Constant for the "Tai Xuan Jing Symbols" Unicode character block.
tailMap(K, boolean) - Method in interface java.util.concurrent.ConcurrentNavigableMap
 
tailMap(K) - Method in interface java.util.concurrent.ConcurrentNavigableMap
 
tailMap(K, boolean) - Method in class java.util.concurrent.ConcurrentSkipListMap
 
tailMap(K) - Method in class java.util.concurrent.ConcurrentSkipListMap
 
tailMap(K, boolean) - Method in interface java.util.NavigableMap
Returns a view of the portion of this map whose keys are greater than (or equal to, if inclusive is true) fromKey.
tailMap(K) - Method in interface java.util.NavigableMap
Returns a view of the portion of this map whose keys are greater than or equal to fromKey.
tailMap(K) - Method in interface java.util.SortedMap
Returns a view of the portion of this map whose keys are greater than or equal to fromKey.
tailMap(K, boolean) - Method in class java.util.TreeMap
 
tailMap(K) - Method in class java.util.TreeMap
 
tailSet(E, boolean) - Method in class java.util.concurrent.ConcurrentSkipListSet
 
tailSet(E) - Method in class java.util.concurrent.ConcurrentSkipListSet
 
tailSet(E, boolean) - Method in interface java.util.NavigableSet
Returns a view of the portion of this set whose elements are greater than (or equal to, if inclusive is true) fromElement.
tailSet(E) - Method in interface java.util.NavigableSet
Returns a view of the portion of this set whose elements are greater than or equal to fromElement.
tailSet(E) - Method in interface java.util.SortedSet
Returns a view of the portion of this set whose elements are greater than or equal to fromElement.
tailSet(E, boolean) - Method in class java.util.TreeSet
 
tailSet(E) - Method in class java.util.TreeSet
 
TAIWAN - Static variable in class java.util.Locale
Useful constant for country.
take() - Method in class java.util.concurrent.ArrayBlockingQueue
 
take() - Method in interface java.util.concurrent.BlockingDeque
Retrieves and removes the head of the queue represented by this deque (in other words, the first element of this deque), waiting if necessary until an element becomes available.
take() - Method in interface java.util.concurrent.BlockingQueue
Retrieves and removes the head of this queue, waiting if necessary until an element becomes available.
take() - Method in interface java.util.concurrent.CompletionService
Retrieves and removes the Future representing the next completed task, waiting if none are yet present.
take() - Method in class java.util.concurrent.DelayQueue
Retrieves and removes the head of this queue, waiting if necessary until an element with an expired delay is available on this queue.
take() - Method in class java.util.concurrent.ExecutorCompletionService
 
take() - Method in class java.util.concurrent.LinkedBlockingDeque
 
take() - Method in class java.util.concurrent.LinkedBlockingQueue
 
take() - Method in class java.util.concurrent.PriorityBlockingQueue
 
take() - Method in class java.util.concurrent.SynchronousQueue
Retrieves and removes the head of this queue, waiting if necessary for another thread to insert it.
takeFirst() - Method in interface java.util.concurrent.BlockingDeque
Retrieves and removes the first element of this deque, waiting if necessary until an element becomes available.
takeFirst() - Method in class java.util.concurrent.LinkedBlockingDeque
 
takeLast() - Method in interface java.util.concurrent.BlockingDeque
Retrieves and removes the last element of this deque, waiting if necessary until an element becomes available.
takeLast() - Method in class java.util.concurrent.LinkedBlockingDeque
 
TAMIL - Static variable in class java.awt.font.NumericShaper
Identifies the TAMIL range and decimal base.
TAMIL - Static variable in class java.lang.Character.UnicodeBlock
Constant for the "Tamil" Unicode character block.
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.
tanh(double) - Static method in class java.lang.Math
Returns the hyperbolic tangent of a double value.
tanh(double) - Static method in class java.lang.StrictMath
Returns the hyperbolic tangent of a double value.
target - Variable in class java.awt.Event
The target component.
Target - Annotation Type in java.lang.annotation
Indicates the kinds of program element to which an annotation type is applicable.
TARGET - Static variable in class javax.swing.text.html.HTML.Attribute
 
target() - Method in class org.omg.CORBA.Request
Retrieves the the target object reference.
target() - Method in interface org.omg.PortableInterceptor.ClientRequestInfoOperations
Returns the object which the client called to perform the operation.
target_is_a(String) - Method in interface org.omg.PortableInterceptor.ServerRequestInfoOperations
Returns true if the servant is the given repository id, false if it is not.
target_most_derived_interface() - Method in interface org.omg.PortableInterceptor.ServerRequestInfoOperations
Returns the repository id for the most derived interface of the servant.
TargetDataLine - Interface in javax.sound.sampled
A target data line is a type of DataLine from which audio data can be read.
TargetedNotification - Class in javax.management.remote
A (Notification, Listener ID) pair.
TargetedNotification(Notification, Integer) - Constructor for class javax.management.remote.TargetedNotification
Constructs a TargetedNotification object.
targetMustExist() - Method in interface javax.naming.event.EventContext
Determines whether a listener can register interest in a target that does not exist.
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_ENUM - Static variable in interface java.io.ObjectStreamConstants
new Enum constant.
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.
TCKind - Class in org.omg.CORBA
The Java mapping of the IDL enum TCKind, which specifies the kind of a TypeCode object.
TCKind(int) - Constructor for class org.omg.CORBA.TCKind
Deprecated. Do not use this constructor as this method should be private according to the OMG specification. Use TCKind.from_int(int) instead.
TCP_NODELAY - Static variable in interface java.net.SocketOptions
Disable Nagle's algorithm for this connection.
TCP_NODELAY - Static variable in class java.net.StandardSocketOption
Disable the Nagle algorithm.
TD - Static variable in class javax.swing.text.html.HTML.Tag
 
TELUGU - Static variable in class java.awt.font.NumericShaper
Identifies the TELUGU range and decimal base.
TELUGU - Static variable in class java.lang.Character.UnicodeBlock
Constant for the "Telugu" Unicode character block.
Templates - Interface in javax.xml.transform
An object that implements this interface is the runtime representation of processed transformation instructions.
TemplatesHandler - Interface in javax.xml.transform.sax
A SAX ContentHandler that may be used to process SAX parse events (parsing transformation instructions) into a Templates object.
TEN - Static variable in class java.math.BigDecimal
The value 10, with a scale of 0.
TEN - Static variable in class java.math.BigInteger
The BigInteger constant ten.
terminated() - Method in class java.util.concurrent.ThreadPoolExecutor
Method invoked when the Executor has terminated.
TERTIARY - Static variable in class java.text.Collator
Collator strength value.
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.
TEXT - Static variable in class java.awt.SystemColor
The array index for the SystemColor.text system color.
text - Static variable in class java.awt.SystemColor
The color rendered for the background of text control objects, such as textfields and comboboxes.
TEXT - Static variable in class javax.accessibility.AccessibleRole
An object that presents text to the user.
text - Variable in class javax.accessibility.AccessibleTextSequence
The text
text(Element) - Method in class javax.swing.text.AbstractWriter
Writes out text.
TEXT - Static variable in class javax.swing.text.html.HTML.Attribute
 
text(Element) - Method in class javax.swing.text.html.HTMLWriter
Writes out text.
text(Element) - Method in class javax.swing.text.html.MinimalHTMLWriter
Writes out text.
Text - Interface in javax.xml.soap
A representation of a node whose value is text.
Text - Interface in org.w3c.dom
The Text interface inherits from CharacterData and represents the textual content (termed character data in XML) of an Element or Attr.
TEXT_ALIGN - Static variable in class javax.swing.text.html.CSS.Attribute
 
TEXT_AREA - Static variable in class javax.swing.plaf.synth.Region
TextArea region.
TEXT_BACKGROUND - Static variable in class javax.swing.plaf.synth.ColorType
ColorType for the background of a region.
TEXT_CHANGED_PROPERTY - Static variable in class javax.swing.AbstractButton
Identifies a change in the button's text.
TEXT_CURSOR - Static variable in class java.awt.Cursor
The text cursor type.
TEXT_CURSOR - Static variable in class java.awt.Frame
Deprecated. replaced by Cursor.TEXT_CURSOR.
TEXT_DECORATION - Static variable in class javax.swing.text.html.CSS.Attribute
 
TEXT_EVENT_MASK - Static variable in class java.awt.AWTEvent
The event mask for selecting text events.
TEXT_FIELD - Static variable in class javax.swing.plaf.synth.Region
TextField region.
TEXT_FIRST - Static variable in class java.awt.event.TextEvent
The first number in the range of ids used for text events.
TEXT_FOREGROUND - Static variable in class javax.swing.plaf.synth.ColorType
ColorType for the foreground of a region.
TEXT_HIGHLIGHT - Static variable in class java.awt.SystemColor
The array index for the SystemColor.textHighlight system color.
TEXT_HIGHLIGHT_TEXT - Static variable in class java.awt.SystemColor
The array index for the SystemColor.textHighlightText system color.
TEXT_HTML - Static variable in class javax.print.DocFlavor.CHAR_ARRAY
Doc flavor with MIME type = "text/html; charset=utf-16", print data representation class name = "[C" (character array).
TEXT_HTML - Static variable in class javax.print.DocFlavor.READER
Doc flavor with MIME type = "text/html; charset=utf-16", print data representation class name = "java.io.Reader" (character stream).
TEXT_HTML - Static variable in class javax.print.DocFlavor.STRING
Doc flavor with MIME type = "text/html; charset=utf-16", print data representation class name = "java.lang.String".
TEXT_HTML_HOST - Static variable in class javax.print.DocFlavor.BYTE_ARRAY
Doc flavor with MIME type = "text/html", encoded in the host platform encoding.
TEXT_HTML_HOST - Static variable in class javax.print.DocFlavor.INPUT_STREAM
Doc flavor with MIME type = "text/html", encoded in the host platform encoding.
TEXT_HTML_HOST - Static variable in class javax.print.DocFlavor.URL
Doc flavor with MIME type = "text/html", encoded in the host platform encoding.
TEXT_HTML_US_ASCII - Static variable in class javax.print.DocFlavor.BYTE_ARRAY
Doc flavor with MIME type = "text/html; charset=us-ascii", print data representation class name = "[B" (byte array).
TEXT_HTML_US_ASCII - Static variable in class javax.print.DocFlavor.INPUT_STREAM
Doc flavor with MIME type = "text/html; charset=us-ascii", print data representation class name = "java.io.InputStream" (byte stream).
TEXT_HTML_US_ASCII - Static variable in class javax.print.DocFlavor.URL
Doc flavor with MIME type = "text/html; charset=us-ascii", print data representation class name = "java.net.URL" (byte stream).
TEXT_HTML_UTF_16 - Static variable in class javax.print.DocFlavor.BYTE_ARRAY
Doc flavor with MIME type = "text/html; charset=utf-16", print data representation class name = "[B" (byte array).
TEXT_HTML_UTF_16 - Static variable in class javax.print.DocFlavor.INPUT_STREAM
Doc flavor with MIME type = "text/html; charset=utf-16", print data representation class name = "java.io.InputStream" (byte stream).
TEXT_HTML_UTF_16 - Static variable in class javax.print.DocFlavor.URL
Doc flavor with MIME type = "text/html; charset=utf-16", print data representation class name = "java.net.URL" (byte stream).
TEXT_HTML_UTF_16BE - Static variable in class javax.print.DocFlavor.BYTE_ARRAY
Doc flavor with MIME type = "text/html; charset=utf-16be" (big-endian byte ordering), print data representation class name = "[B" (byte array).
TEXT_HTML_UTF_16BE - Static variable in class javax.print.DocFlavor.INPUT_STREAM
Doc flavor with MIME type = "text/html; charset=utf-16be" (big-endian byte ordering), print data representation class name = "java.io.InputStream" (byte stream).
TEXT_HTML_UTF_16BE - Static variable in class javax.print.DocFlavor.URL
Doc flavor with MIME type = "text/html; charset=utf-16be" (big-endian byte ordering), print data representation class name = "java.net.URL" (byte stream).
TEXT_HTML_UTF_16LE - Static variable in class javax.print.DocFlavor.BYTE_ARRAY
Doc flavor with MIME type = "text/html; charset=utf-16le" (little-endian byte ordering), print data representation class name = "[B" (byte array).
TEXT_HTML_UTF_16LE - Static variable in class javax.print.DocFlavor.INPUT_STREAM
Doc flavor with MIME type = "text/html; charset=utf-16le" (little-endian byte ordering), print data representation class name = "java.io.InputStream" (byte stream).
TEXT_HTML_UTF_16LE - Static variable in class javax.print.DocFlavor.URL
Doc flavor with MIME type = "text/html; charset=utf-16le" (little-endian byte ordering), print data representation class name = "java.net.URL" (byte stream).
TEXT_HTML_UTF_8 - Static variable in class javax.print.DocFlavor.BYTE_ARRAY
Doc flavor with MIME type = "text/html; charset=utf-8", print data representation class name = "[B" (byte array).
TEXT_HTML_UTF_8 - Static variable in class javax.print.DocFlavor.INPUT_STREAM
Doc flavor with MIME type = "text/html; charset=utf-8", print data representation class name = "java.io.InputStream" (byte stream).
TEXT_HTML_UTF_8 - Static variable in class javax.print.DocFlavor.URL
Doc flavor with MIME type = "text/html; charset=utf-8", print data representation class name = "java.net.URL" (byte stream).
TEXT_INACTIVE_TEXT - Static variable in class java.awt.SystemColor
The array index for the SystemColor.textInactiveText system color.
TEXT_INDENT - Static variable in class javax.swing.text.html.CSS.Attribute
 
TEXT_INSET_H - Static variable in class javax.swing.border.TitledBorder
 
TEXT_LAST - Static variable in class java.awt.event.TextEvent
The last number in the range of ids used for text events.
TEXT_NODE - Static variable in interface org.w3c.dom.Node
The node is a Text node.
TEXT_PANE - Static variable in class javax.swing.plaf.synth.Region
TextPane region.
TEXT_PLAIN - Static variable in class javax.print.DocFlavor.CHAR_ARRAY
Doc flavor with MIME type = "text/plain; charset=utf-16", print data representation class name = "[C" (character array).
TEXT_PLAIN - Static variable in class javax.print.DocFlavor.READER
Doc flavor with MIME type = "text/plain; charset=utf-16", print data representation class name = "java.io.Reader" (character stream).
TEXT_PLAIN - Static variable in class javax.print.DocFlavor.STRING
Doc flavor with MIME type = "text/plain; charset=utf-16", print data representation class name = "java.lang.String".
TEXT_PLAIN_HOST - Static variable in class javax.print.DocFlavor.BYTE_ARRAY
Doc flavor with MIME type = "text/plain", encoded in the host platform encoding.
TEXT_PLAIN_HOST - Static variable in class javax.print.DocFlavor.INPUT_STREAM
Doc flavor with MIME type = "text/plain", encoded in the host platform encoding.
TEXT_PLAIN_HOST - Static variable in class javax.print.DocFlavor.URL
Doc flavor with MIME type = "text/plain", encoded in the host platform encoding.
TEXT_PLAIN_US_ASCII - Static variable in class javax.print.DocFlavor.BYTE_ARRAY
Doc flavor with MIME type = "text/plain; charset=us-ascii", print data representation class name = "[B" (byte array).
TEXT_PLAIN_US_ASCII - Static variable in class javax.print.DocFlavor.INPUT_STREAM
Doc flavor with MIME type = "text/plain; charset=us-ascii", print data representation class name = "java.io.InputStream" (byte stream).
TEXT_PLAIN_US_ASCII - Static variable in class javax.print.DocFlavor.URL
Doc flavor with MIME type = "text/plain; charset=us-ascii", print data representation class name = "java.net.URL" (byte stream).
TEXT_PLAIN_UTF_16 - Static variable in class javax.print.DocFlavor.BYTE_ARRAY
Doc flavor with MIME type = "text/plain; charset=utf-16", print data representation class name = "[B" (byte array).
TEXT_PLAIN_UTF_16 - Static variable in class javax.print.DocFlavor.INPUT_STREAM
Doc flavor with MIME type = "text/plain; charset=utf-16", print data representation class name = "java.io.InputStream" (byte stream).
TEXT_PLAIN_UTF_16 - Static variable in class javax.print.DocFlavor.URL
Doc flavor with MIME type = "text/plain; charset=utf-16", print data representation class name = java.net.URL"" (byte stream).
TEXT_PLAIN_UTF_16BE - Static variable in class javax.print.DocFlavor.BYTE_ARRAY
Doc flavor with MIME type = "text/plain; charset=utf-16be" (big-endian byte ordering), print data representation class name = "[B" (byte array).
TEXT_PLAIN_UTF_16BE - Static variable in class javax.print.DocFlavor.INPUT_STREAM
Doc flavor with MIME type = "text/plain; charset=utf-16be" (big-endian byte ordering), print data representation class name = "java.io.InputStream" (byte stream).
TEXT_PLAIN_UTF_16BE - Static variable in class javax.print.DocFlavor.URL
Doc flavor with MIME type = "text/plain; charset=utf-16be" (big-endian byte ordering), print data representation class name = "java.net.URL" (byte stream).
TEXT_PLAIN_UTF_16LE - Static variable in class javax.print.DocFlavor.BYTE_ARRAY
Doc flavor with MIME type = "text/plain; charset=utf-16le" (little-endian byte ordering), print data representation class name = "[B" (byte array).
TEXT_PLAIN_UTF_16LE - Static variable in class javax.print.DocFlavor.INPUT_STREAM
Doc flavor with MIME type = "text/plain; charset=utf-16le" (little-endian byte ordering), print data representation class name = "java.io.InputStream" (byte stream).
TEXT_PLAIN_UTF_16LE - Static variable in class javax.print.DocFlavor.URL
Doc flavor with MIME type = "text/plain; charset=utf-16le" (little-endian byte ordering), print data representation class name = "java.net.URL" (byte stream).
TEXT_PLAIN_UTF_8 - Static variable in class javax.print.DocFlavor.BYTE_ARRAY
Doc flavor with MIME type = "text/plain; charset=utf-8", print data representation class name = "[B" (byte array).
TEXT_PLAIN_UTF_8 - Static variable in class javax.print.DocFlavor.INPUT_STREAM
Doc flavor with MIME type = "text/plain; charset=utf-8", print data representation class name = "java.io.InputStream" (byte stream).
TEXT_PLAIN_UTF_8 - Static variable in class javax.print.DocFlavor.URL
Doc flavor with MIME type = "text/plain; charset=utf-8", print data representation class name = "java.net.URL" (byte stream).
TEXT_SPACING - Static variable in class javax.swing.border.TitledBorder
 
TEXT_TEXT - Static variable in class java.awt.SystemColor
The array index for the SystemColor.textText system color.
TEXT_TRANSFORM - Static variable in class javax.swing.text.html.CSS.Attribute
 
TEXT_VALUE_CHANGED - Static variable in class java.awt.event.TextEvent
This event id indicates that object's text changed.
TextAction - Class in javax.swing.text
An Action implementation useful for key bindings that are shared across a number of different text components.
TextAction(String) - Constructor for class javax.swing.text.TextAction
Creates a new JTextAction object.
TextArea - Class in java.awt
A TextArea object is a multi-line region that displays text.
TextArea() - Constructor for class java.awt.TextArea
Constructs a new text area with the empty string as text.
TextArea(String) - Constructor for class java.awt.TextArea
Constructs a new text area with the specified text.
TextArea(int, int) - Constructor for class java.awt.TextArea
Constructs a new text area with the specified number of rows and columns and the empty string as text.
TextArea(String, int, int) - Constructor for class java.awt.TextArea
Constructs a new text area with the specified text, and with the specified number of rows and columns.
TextArea(String, int, int, int) - Constructor for class java.awt.TextArea
Constructs a new text area with the specified text, and with the rows, columns, and scroll bar visibility as specified.
TEXTAREA - Static variable in class javax.swing.text.html.HTML.Tag
 
TextArea.AccessibleAWTTextArea - Class in java.awt
This class implements accessibility support for the TextArea class.
TextArea.AccessibleAWTTextArea() - Constructor for class java.awt.TextArea.AccessibleAWTTextArea
 
textAreaContent(char[]) - Method in class javax.swing.text.html.HTMLDocument.HTMLReader
Adds the given content to the textarea document.
textAreaContent(AttributeSet) - Method in class javax.swing.text.html.HTMLWriter
Writes out text that is contained in a TEXTAREA form element.
TextAttribute - Class in java.awt.font
The TextAttribute class defines attribute keys and attribute values used for text rendering.
TextAttribute(String) - Constructor for class java.awt.font.TextAttribute
Constructs a TextAttribute with the specified name.
TextComponent - Class in java.awt
The TextComponent class is the superclass of any component that allows the editing of some text.
TextComponent.AccessibleAWTTextComponent - Class in java.awt
This class implements accessibility support for the TextComponent class.
TextComponent.AccessibleAWTTextComponent() - Constructor for class java.awt.TextComponent.AccessibleAWTTextComponent
Constructs an AccessibleAWTTextComponent.
TextEvent - Class in java.awt.event
A semantic event which indicates that an object's text changed.
TextEvent(Object, int) - Constructor for class java.awt.event.TextEvent
Constructs a TextEvent object.
TextField - Class in java.awt
A TextField object is a text component that allows for the editing of a single line of text.
TextField() - Constructor for class java.awt.TextField
Constructs a new text field.
TextField(String) - Constructor for class java.awt.TextField
Constructs a new text field initialized with the specified text.
TextField(int) - Constructor for class java.awt.TextField
Constructs a new empty text field with the specified number of columns.
TextField(String, int) - Constructor for class java.awt.TextField
Constructs a new text field initialized with the specified text to be displayed, and wide enough to hold the specified number of columns.
TextField.AccessibleAWTTextField - Class in java.awt
This class implements accessibility support for the TextField class.
TextField.AccessibleAWTTextField() - Constructor for class java.awt.TextField.AccessibleAWTTextField
 
textHighlight - Static variable in class java.awt.SystemColor
The color rendered for the background of selected items, such as in menus, comboboxes, and text.
textHighlightText - Static variable in class java.awt.SystemColor
The color rendered for the text of selected items, such as in menus, comboboxes, and text.
TextHitInfo - Class in java.awt.font
The TextHitInfo class represents a character position in a text model, and a bias, or "side," of the character.
textIconGap - Variable in class javax.swing.plaf.basic.BasicTabbedPaneUI
 
textInactiveText - Static variable in class java.awt.SystemColor
The color rendered for the text of inactive items, such as in menus.
TextInputCallback - Class in javax.security.auth.callback
Underlying security services instantiate and pass a TextInputCallback to the handle method of a CallbackHandler to retrieve generic text information.
TextInputCallback(String) - Constructor for class javax.security.auth.callback.TextInputCallback
Construct a TextInputCallback with a prompt.
TextInputCallback(String, String) - Constructor for class javax.security.auth.callback.TextInputCallback
Construct a TextInputCallback with a prompt and default input value.
TextLayout - Class in java.awt.font
TextLayout is an immutable graphical representation of styled character data.
TextLayout(String, Font, FontRenderContext) - Constructor for class java.awt.font.TextLayout
Constructs a TextLayout from a String and a Font.
TextLayout(String, Map<? extends AttributedCharacterIterator.Attribute, ?>, FontRenderContext) - Constructor for class java.awt.font.TextLayout
Constructs a TextLayout from a String and an attribute set.
TextLayout(AttributedCharacterIterator, FontRenderContext) - Constructor for class java.awt.font.TextLayout
Constructs a TextLayout from an iterator over styled text.
TextLayout.CaretPolicy - Class in java.awt.font
Defines a policy for determining the strong caret location.
TextLayout.CaretPolicy() - Constructor for class java.awt.font.TextLayout.CaretPolicy
Constructs a CaretPolicy.
TextListener - Interface in java.awt.event
The listener interface for receiving text events.
textListener - Variable in class java.awt.TextComponent
 
TextMeasurer - Class in java.awt.font
The TextMeasurer class provides the primitive operations needed for line break: measuring up to a given advance, determining the advance of a range of characters, and generating a TextLayout for a range of characters.
TextMeasurer(AttributedCharacterIterator, FontRenderContext) - Constructor for class java.awt.font.TextMeasurer
Constructs a TextMeasurer from the source text.
textNonSelectionColor - Variable in class javax.swing.tree.DefaultTreeCellRenderer
Color to use for the foreground for non-selected nodes.
TextOutputCallback - Class in javax.security.auth.callback
Underlying security services instantiate and pass a TextOutputCallback to the handle method of a CallbackHandler to display information messages, warning messages and error messages.
TextOutputCallback(int, String) - Constructor for class javax.security.auth.callback.TextOutputCallback
Construct a TextOutputCallback with a message type and message to be displayed.
textSelectionColor - Variable in class javax.swing.tree.DefaultTreeCellRenderer
Color to use for the foreground for selected nodes.
TextSyntax - Class in javax.print.attribute
Class TextSyntax is an abstract base class providing the common implementation of all attributes whose value is a string.
TextSyntax(String, Locale) - Constructor for class javax.print.attribute.TextSyntax
Constructs a TextAttribute with the specified string and locale.
textText - Static variable in class java.awt.SystemColor
The color rendered for the text of text control objects, such as textfields and comboboxes.
TextUI - Class in javax.swing.plaf
Text editor user interface
TextUI() - Constructor for class javax.swing.plaf.TextUI
 
TexturePaint - Class in java.awt
The TexturePaint class provides a way to fill a Shape with a texture that is specified as a BufferedImage.
TexturePaint(BufferedImage, Rectangle2D) - Constructor for class java.awt.TexturePaint
Constructs a TexturePaint object.
textValueChanged(TextEvent) - Method in class java.awt.AWTEventMulticaster
 
textValueChanged(TextEvent) - Method in interface java.awt.event.TextListener
Invoked when the value of the text has changed.
textValueChanged(TextEvent) - Method in class java.awt.TextComponent.AccessibleAWTTextComponent
TextListener notification of a text value change.
TH - Static variable in class javax.swing.text.html.HTML.Tag
 
THAANA - Static variable in class java.lang.Character.UnicodeBlock
Constant for the "Thaana" Unicode character block.
THAI - Static variable in class java.awt.font.NumericShaper
Identifies the THAI range and decimal base.
THAI - Static variable in class java.lang.Character.UnicodeBlock
Constant for the "Thai" Unicode character block.
the_activator() - Method in interface org.omg.PortableServer.POAOperations
This attribute identifies the adapter activator associated with the POA.
the_activator(AdapterActivator) - Method in interface org.omg.PortableServer.POAOperations
This attribute identifies the adapter activator associated with the POA.
the_children() - Method in interface org.omg.PortableServer.POAOperations
This attribute identifies the current set of all child POAs of the POA.
the_name() - Method in interface org.omg.PortableServer.POAOperations
This attribute identifies the POA relative to its parent.
the_parent() - Method in interface org.omg.PortableServer.POAOperations
This attribute identifies the parent of the POA.
the_POAManager() - Method in interface org.omg.PortableServer.POAOperations
This attribute identifies the POA manager associated with the POA.
thickness - Variable in class javax.swing.border.LineBorder
 
this_object(Servant) - Method in interface org.omg.PortableServer.portable.Delegate
This allows the servant to obtain the object reference for the target CORBA Object it is incarnating for that request.
thisObject() - Method in interface javax.rmi.CORBA.Tie
Returns an object reference for the target object represented by this tie.
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.
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, and belongs to the thread group referred to by group, and has the specified stack size.
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.
THREAD_MXBEAN_NAME - Static variable in class java.lang.management.ManagementFactory
String representation of the ObjectName for the ThreadMXBean.
THREAD_POLICY_ID - Interface in org.omg.PortableServer
org/omg/PortableServer/THREAD_POLICY_ID.java .
ThreadDeath - Error in java.lang
An instance of ThreadDeath is thrown in the victim thread when the (deprecated) Thread.stop() method is invoked.
ThreadDeath() - Constructor for error java.lang.ThreadDeath
 
ThreadFactory - Interface in java.util.concurrent
An object that creates new threads on demand.
ThreadGroup - Class in java.lang
A thread group represents a set of threads.
ThreadGroup(String) - Constructor for class java.lang.ThreadGroup
Constructs a new thread group.