当前页面:
在线文档首页 >
JDK 5 Documentation v1.3.1, Java 2 SDK 英文文档
Java 2 Platform SE v1.3.1: T-Index - JDK 5 Documentation v1.3.1, Java 2 SDK 英文文档
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 javax.swing.text.TabableView.
- Interface for View's that have size dependant
upon tabs.
- tabAreaBackground -
Variable in class javax.swing.plaf.metal.MetalTabbedPaneUI
-
- tabAreaInsets -
Variable in class javax.swing.plaf.basic.BasicTabbedPaneUI
-
- TabbedPaneUI - class javax.swing.plaf.TabbedPaneUI.
- 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 javax.swing.text.TabExpander.
- Simple interface to allow for different types of
implementations of tab expansion.
- tabForCoordinate(JTabbedPane, int, int) -
Method in class javax.swing.plaf.TabbedPaneUI
-
- tabForCoordinate(JTabbedPane, int, int) -
Method in class javax.swing.plaf.basic.BasicTabbedPaneUI
-
- tabForCoordinate(JTabbedPane, int, int) -
Method in class javax.swing.plaf.multi.MultiTabbedPaneUI
- Call tabForCoordinate on each UI handled by this MultiUI.
- tabInsets -
Variable in class javax.swing.plaf.basic.BasicTabbedPaneUI
-
- table -
Variable in class javax.swing.table.JTableHeader
- The table for which this object is the header;
the default is
null
.
- table -
Variable in class javax.swing.plaf.basic.BasicTableUI
-
- TABLE -
Static variable in class javax.accessibility.AccessibleRole
- An object used to present information in terms of rows and columns.
- TABLE -
Static variable in class javax.swing.text.html.HTML.Tag
-
- TableCellEditor - interface javax.swing.table.TableCellEditor.
- 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 javax.swing.table.TableCellRenderer.
- 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 class javax.swing.JTable
- Invoked when this table's
TableModel
generates
a TableModelEvent
.
- tableChanged(TableModelEvent) -
Method in class javax.swing.JTable.AccessibleJTable
- Track changes to the table contents
- 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.
- TableColumn - class javax.swing.table.TableColumn.
- 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 modelIndex
.
- TableColumnModel - interface javax.swing.table.TableColumnModel.
- Defines the requirements for a table column model object suitable for
use with
JTable
. - TableColumnModelEvent - class javax.swing.event.TableColumnModelEvent.
- 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 javax.swing.event.TableColumnModelListener.
- 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 javax.swing.plaf.TableHeaderUI.
- Pluggable look and feel interface for JTableHeader.
- TableHeaderUI() -
Constructor for class javax.swing.plaf.TableHeaderUI
-
- tableIndexClustered -
Static variable in interface java.sql.DatabaseMetaData
- A possible value for column
TYPE
in the
ResultSet
object returned by the method
getIndexInfo
.
- tableIndexHashed -
Static variable in interface java.sql.DatabaseMetaData
- A possible value for column
TYPE
in the
ResultSet
object returned by the method
getIndexInfo
.
- tableIndexOther -
Static variable in interface java.sql.DatabaseMetaData
- A possible value for column
TYPE
in the
ResultSet
object returned by the method
getIndexInfo
.
- tableIndexStatistic -
Static variable in interface java.sql.DatabaseMetaData
- A possible value for column
TYPE
in the
ResultSet
object returned by the method
getIndexInfo
.
- TableModel - interface javax.swing.table.TableModel.
- The
TableModel
interface specifies the methods the
JTable
will use to interrogate a tabular data model. - TableModelEvent - class javax.swing.event.TableModelEvent.
- 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 javax.swing.event.TableModelListener.
- 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)
- TableUI - class javax.swing.plaf.TableUI.
- Pluggable look and feel interface for JTable.
- TableUI() -
Constructor for class javax.swing.plaf.TableUI
-
- TableView - class javax.swing.text.TableView.
-
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.TableCell - class javax.swing.text.TableView.TableCell.
- Deprecated. A table cell can now be any View implementation.
- TableView.TableCell(TableView, Element) -
Constructor for class javax.swing.text.TableView.TableCell
- Deprecated. Constructs a TableCell for the given element.
- TableView.TableRow - class javax.swing.text.TableView.TableRow.
- View of a row in a row-centric table.
- TableView.TableRow(TableView, Element) -
Constructor for class javax.swing.text.TableView.TableRow
- Constructs a TableView for the given element.
- TableView(Element) -
Constructor for class javax.swing.text.TableView
- Constructs a TableView for the given element.
- TABLOID -
Static variable in class java.awt.PageAttributes.MediaType
- An alias for LEDGER.
- 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 - class javax.swing.text.TabSet.
- A TabSet is comprised of many TabStops.
- TabSet -
Static variable in class javax.swing.text.StyleConstants
- TabSet for the paragraph, type is a TabSet containing
TabStops.
- TabSet -
Static variable in class javax.swing.text.StyleConstants.ParagraphConstants
- TabSet for the paragraph.
- 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 javax.swing.text.TabStop.
- 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
.
- TAG_ACNT -
Static variable in interface java.awt.font.OpenType
- Accent attachment.
- 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_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_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_NAME -
Static variable in interface java.awt.font.OpenType
- Naming table.
- TAG_OPBD -
Static variable in interface java.awt.font.OpenType
- Optical bounds.
- 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_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_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.
- TagElement - class javax.swing.text.html.parser.TagElement.
- 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
-
- 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.
- 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.
- 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.
- 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.
- 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.
- tan(double) -
Static method in class java.lang.StrictMath
- Returns the trigonometric tangent of an angle.
- tan(double) -
Static method in class java.lang.Math
- Returns the trigonometric tangent of an angle.
- target -
Variable in class java.awt.Event
- The target component.
- 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.
- TargetDataLine - interface javax.sound.sampled.TargetDataLine.
- A target data line is a type of
DataLine
from which
audio data can be read. - 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_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 org.omg.CORBA.TCKind.
- 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.
- TD -
Static variable in class javax.swing.text.html.HTML.Tag
-
- 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.
- 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 background color for text components.
- TEXT -
Static variable in class java.awt.SystemColor
- The array index for the text background color.
- TEXT -
Static variable in class javax.accessibility.AccessibleRole
- An object that presents text to the user.
- TEXT -
Static variable in class javax.swing.text.html.HTML.Attribute
-
- TEXT_ALIGN -
Static variable in class javax.swing.text.html.CSS.Attribute
-
- 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_FIRST -
Static variable in class java.awt.event.TextEvent
- The first number in the range of ids used for text events.
- TEXT_HIGHLIGHT -
Static variable in class java.awt.SystemColor
- The array index for the text highlight color.
- TEXT_HIGHLIGHT_TEXT -
Static variable in class java.awt.SystemColor
- The array index for the text highlight text color.
- TEXT_INACTIVE_TEXT -
Static variable in class java.awt.SystemColor
- The array index for the text inactive text 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_SPACING -
Static variable in class javax.swing.border.TitledBorder
-
- TEXT_TEXT -
Static variable in class java.awt.SystemColor
- The array index for the text text 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.
- text(Element) -
Method in class javax.swing.text.AbstractWriter
- Writes out text.
- 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.
- TextAction - class javax.swing.text.TextAction.
- 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 java.awt.TextArea.
- A
TextArea
object is a multi-line region
that displays text. - TEXTAREA -
Static variable in class javax.swing.text.html.HTML.Tag
-
- TextArea.AccessibleAWTTextArea - class java.awt.TextArea.AccessibleAWTTextArea.
- This class implements accessibility support for the
TextArea
class. - TextArea.AccessibleAWTTextArea(TextArea) -
Constructor for class java.awt.TextArea.AccessibleAWTTextArea
-
- TextArea() -
Constructor for class java.awt.TextArea
- Constructs a new text area.
- TextArea(int, int) -
Constructor for class java.awt.TextArea
- Constructs a new empty text area with the specified number of
rows and columns.
- TextArea(String) -
Constructor for class java.awt.TextArea
- Constructs a new text area with the specified 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.
- textAreaContent(AttributeSet) -
Method in class javax.swing.text.html.HTMLWriter
- Writes out text that is contained in a TEXTAREA form
element.
- textAreaContent(char[]) -
Method in class javax.swing.text.html.HTMLDocument.HTMLReader
- Adds the given content to the textarea document.
- TextAttribute - class java.awt.font.TextAttribute.
- 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 java.awt.TextComponent.
- The
TextComponent
class is the superclass of
any component that allows the editing of some text. - TextComponent.AccessibleAWTTextComponent - class java.awt.TextComponent.AccessibleAWTTextComponent.
- This class implements accessibility support for the
TextComponent
class. - TextComponent.AccessibleAWTTextComponent(TextComponent) -
Constructor for class java.awt.TextComponent.AccessibleAWTTextComponent
- Constructs an AccessibleAWTTextComponent.
- TextEvent - class java.awt.event.TextEvent.
- 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 java.awt.TextField.
- A
TextField
object is a text component
that allows for the editing of a single line of text. - TextField.AccessibleAWTTextField - class java.awt.TextField.AccessibleAWTTextField.
- This class implements accessibility support for the
TextField
class. - TextField.AccessibleAWTTextField(TextField) -
Constructor for class java.awt.TextField.AccessibleAWTTextField
-
- TextField() -
Constructor for class java.awt.TextField
- Constructs a new text field.
- TextField(int) -
Constructor for class java.awt.TextField
- Constructs a new empty text field with the specified number
of columns.
- TextField(String) -
Constructor for class java.awt.TextField
- Constructs a new text field initialized with the specified text.
- 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.
- textHighlight -
Static variable in class java.awt.SystemColor
- The background color for highlighted text.
- textHighlightText -
Static variable in class java.awt.SystemColor
- The text color for highlighted text.
- TextHitInfo - class java.awt.font.TextHitInfo.
- 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 text color for inactive text.
- TextLayout - class java.awt.font.TextLayout.
TextLayout
is an immutable graphical representation of styled
character data.- TextLayout.CaretPolicy - class java.awt.font.TextLayout.CaretPolicy.
- Defines a policy for determining the strong caret location.
- TextLayout.CaretPolicy() -
Constructor for class java.awt.font.TextLayout.CaretPolicy
- Constructs a
CaretPolicy
.
- TextLayout(AttributedCharacterIterator, FontRenderContext) -
Constructor for class java.awt.font.TextLayout
- Constructs a
TextLayout
from an iterator over styled text.
- TextLayout(String, Font, FontRenderContext) -
Constructor for class java.awt.font.TextLayout
- Constructs a
TextLayout
from a String
and a Font
.
- TextLayout(String, Map, FontRenderContext) -
Constructor for class java.awt.font.TextLayout
- Constructs a
TextLayout
from a String
and an attribute set.
- textListener -
Variable in class java.awt.TextComponent
-
- TextListener - interface java.awt.event.TextListener.
- The listener interface for receiving text events.
- TextMeasurer - class java.awt.font.TextMeasurer.
TextMeasurer
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.
- textSelectionColor -
Variable in class javax.swing.tree.DefaultTreeCellRenderer
- Color to use for the foreground for selected nodes.
- textText -
Static variable in class java.awt.SystemColor
- The text color for text components.
- TextUI - class javax.swing.plaf.TextUI.
- Text editor user interface
- TextUI() -
Constructor for class javax.swing.plaf.TextUI
-
- TexturePaint - class java.awt.TexturePaint.
- 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 class java.awt.TextComponent.AccessibleAWTTextComponent
- TextListener notification of a text value change.
- textValueChanged(TextEvent) -
Method in interface java.awt.event.TextListener
- Invoked when the value of the text has changed.
- TH -
Static variable in class javax.swing.text.html.HTML.Tag
-
- THAI -
Static variable in class java.lang.Character.UnicodeBlock
- Constant for the Unicode character block of the same name.
- thickness -
Variable in class javax.swing.border.LineBorder
-
- thisObject() -
Method in interface javax.rmi.CORBA.Tie
- Returns an object reference for the target object represented by
this tie.
- 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(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(ThreadGroup, Runnable) -
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, String) -
Constructor for class java.lang.Thread
- Allocates a new
Thread
object.
- 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 ThreadLocal variables.
- ThreadLocal() -
Constructor for class java.lang.ThreadLocal
- Creates a ThreadLocal variable.
- 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 error message string.
- Throwable(String) -
Constructor for class java.lang.Throwable
- Constructs a new
Throwable
with the specified error
message.
- thumbColor -
Variable in class javax.swing.plaf.basic.BasicScrollBarUI
-
- thumbColor -
Static variable in class javax.swing.plaf.metal.MetalSliderUI
-
- thumbDarkShadowColor -
Variable in class javax.swing.plaf.basic.BasicScrollBarUI
-
- thumbHighlightColor -
Variable in class javax.swing.plaf.basic.BasicScrollBarUI
-
- thumbLightShadowColor -
Variable in class javax.swing.plaf.basic.BasicScrollBarUI
-
- thumbRect -
Variable in class javax.swing.plaf.basic.BasicScrollBarUI
-
- thumbRect -
Variable in class javax.swing.plaf.basic.BasicSliderUI
-
- 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.
- TICK_BUFFER -
Variable in class javax.swing.plaf.metal.MetalSliderUI
-
- tickLength -
Static variable in class javax.swing.plaf.metal.MetalSliderUI
-
- tickRect -
Variable in class javax.swing.plaf.basic.BasicSliderUI
-
- ticks() -
Method in class javax.sound.midi.Track
- Obtains the length of the track, expressed in MIDI ticks.
- Tie - interface javax.rmi.CORBA.Tie.
- Defines methods which all RMI-IIOP server side ties must implement.
- tileIcon -
Variable in class javax.swing.border.MatteBorder
-
- TileObserver - interface java.awt.image.TileObserver.
- An interface for objects that wish to be informed when tiles
of a WritableRenderedImage become modifiable by some writer via
a call to getWritableTile, and when they become unmodifiable via
the last call to releaseWritableTile.
- tileUpdate(WritableRenderedImage, int, int, boolean) -
Method in interface java.awt.image.TileObserver
- A tile is about to be updated (it is either about to be grabbed
for writing, or it is being released from writing).
- 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.
- Time - class java.sql.Time.
- A thin wrapper around
java.util.Date
that allows
JDBC to identify this as a SQL TIME
value. - TIME -
Static variable in class java.sql.Types
- The constant in the Java programming language, sometimes referred
to as a type code, that identifies the generic SQL type
TIME
.
- Time(int, int, int) -
Constructor for class java.sql.Time
- Deprecated. Use the constructor that takes a milliseconds value
in place of this constructor
- Time(long) -
Constructor for class java.sql.Time
- Constructs a
Time
object using a milliseconds time value.
- TimeLimitExceededException - exception javax.naming.TimeLimitExceededException.
- This exception is thrown when a method
does not terminate within the specified time limit.
- TimeLimitExceededException() -
Constructor for class javax.naming.TimeLimitExceededException
- Constructs a new instance of TimeLimitExceededException.
- TimeLimitExceededException(String) -
Constructor for class javax.naming.TimeLimitExceededException
- Constructs a new instance of TimeLimitExceededException
using the argument supplied.
- timer -
Variable in class javax.swing.tree.DefaultTreeCellEditor
- Used before starting the editing session.
- timer -
Variable in class javax.swing.plaf.basic.BasicTreeUI.ComponentHandler
- Timer used when inside a scrollpane and the scrollbar is
adjusting.
- Timer - class java.util.Timer.
- A facility for threads to schedule tasks for future execution in a
background thread.
- Timer - class javax.swing.Timer.
- Causes an action to occur at a predefined rate.
- 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.
- Timer(int, ActionListener) -
Constructor for class javax.swing.Timer
- Creates a Timer that will notify its listeners every
delay milliseconds.
- 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.
- Timestamp - class java.sql.Timestamp.
- A thin wrapper around
java.util.Date
that allows
the JDBC API to identify this as an SQL TIMESTAMP
value. - TIMESTAMP -
Static variable in class java.sql.Types
- The constant in the Java programming language, sometimes referred
to as a type code, that identifies the generic SQL type
TIMESTAMP
.
- Timestamp(int, int, int, int, int, int, int) -
Constructor for class java.sql.Timestamp
- Deprecated. instead use the constructor
Timestamp(long millis)
- Timestamp(long) -
Constructor for class java.sql.Timestamp
- Constructs a
Timestamp
object
using a milliseconds time value.
- TimeZone - class java.util.TimeZone.
TimeZone
represents a time zone offset, and also figures out daylight
savings.- TIMEZONE_FIELD -
Static variable in class java.text.DateFormat
- Useful constant for TIMEZONE field alignment.
- TimeZone() -
Constructor for class java.util.TimeZone
- Sole constructor.
- TIMING_CLOCK -
Static variable in class javax.sound.midi.ShortMessage
- Status byte for Timing Clock messagem (0xF8, or 248).
- TINYINT -
Static variable in class java.sql.Types
- The constant in the Java programming language, sometimes referred
to as a type code, that identifies the generic SQL type
TINYINT
.
- title -
Variable in class javax.swing.JInternalFrame
- The title displayed in the frame's title bar.
- title -
Variable in class javax.swing.border.TitledBorder
-
- title -
Variable in class javax.swing.text.html.parser.DTD
-
- TITLE -
Static variable in class javax.swing.text.html.HTML.Tag
-
- TITLE -
Static variable in class javax.swing.text.html.HTML.Attribute
-
- TITLE_PROPERTY -
Static variable in class javax.swing.JInternalFrame
- Bound property name.
- TITLECASE_LETTER -
Static variable in class java.lang.Character
- Public data for enumerated Unicode general category types.
- titleColor -
Variable in class javax.swing.border.TitledBorder
-
- TitledBorder - class javax.swing.border.TitledBorder.
- A class which implements an arbitrary border
with the addition of a String title in a
specified position and justification.
- TitledBorder(Border) -
Constructor for class javax.swing.border.TitledBorder
- Creates a TitledBorder instance with the specified border
and an empty title.
- TitledBorder(Border, String) -
Constructor for class javax.swing.border.TitledBorder
- Creates a TitledBorder instance with the specified border
and title.
- TitledBorder(Border, String, int, int) -
Constructor for class javax.swing.border.TitledBorder
- Creates a TitledBorder instance with the specified border,
title, title-justification, and title-position.
- TitledBorder(Border, String, int, int, Font) -
Constructor for class javax.swing.border.TitledBorder
- Creates a TitledBorder instance with the specified border,
title, title-justification, title-position, and title-font.
- TitledBorder(Border, String, int, int, Font, Color) -
Constructor for class javax.swing.border.TitledBorder
- Creates a TitledBorder instance with the specified border,
title, title-justification, title-position, title-font, and
title-color.
- TitledBorder(String) -
Constructor for class javax.swing.border.TitledBorder
- Creates a TitledBorder instance.
- titleFont -
Variable in class javax.swing.border.TitledBorder
-
- titleJustification -
Variable in class javax.swing.border.TitledBorder
-
- titlePane -
Variable in class javax.swing.plaf.basic.BasicInternalFrameUI
-
- titlePosition -
Variable in class javax.swing.border.TitledBorder
-
- TitleProperty -
Static variable in interface javax.swing.text.Document
- The property name for the title of the document, if
there is one.
- tk_abstract_interface -
Static variable in class org.omg.CORBA.TCKind
- The
TCKind
constant whose value
field is
initialized with TCKind._tk_abstract_interface
.
- tk_alias -
Static variable in class org.omg.CORBA.TCKind
- The
TCKind
constant whose value
field is
initialized with TCKind._tk_alias
.
- tk_any -
Static variable in class org.omg.CORBA.TCKind
- The
TCKind
constant whose value
field is
initialized with TCKind._tk_any
.
- tk_array -
Static variable in class org.omg.CORBA.TCKind
- The
TCKind
constant whose value
field is
initialized with TCKind._tk_array
.
- tk_boolean -
Static variable in class org.omg.CORBA.TCKind
- The
TCKind
constant whose value
field is
initialized with TCKind._tk_boolean
.
- tk_char -
Static variable in class org.omg.CORBA.TCKind
- The
TCKind
constant whose value
field is
initialized with TCKind._tk_char
.
- tk_double -
Static variable in class org.omg.CORBA.TCKind
- The
TCKind
constant whose value
field is
initialized with TCKind._tk_double
.
- tk_enum -
Static variable in class org.omg.CORBA.TCKind
- The
TCKind
constant whose value
field is
initialized with TCKind._tk_enum
.
- tk_except -
Static variable in class org.omg.CORBA.TCKind
- The
TCKind
constant whose value
field is
initialized with TCKind._tk_except
.
- tk_fixed -
Static variable in class org.omg.CORBA.TCKind
- The
TCKind
constant whose value
field is
initialized with TCKind._tk_fixed
.
- tk_float -
Static variable in class org.omg.CORBA.TCKind
- The
TCKind
constant whose value
field is
initialized with TCKind._tk_float
.
- tk_long -
Static variable in class org.omg.CORBA.TCKind
- The
TCKind
constant whose value
field is
initialized with TCKind._tk_long
.
- tk_longdouble -
Static variable in class org.omg.CORBA.TCKind
- The
TCKind
constant whose value
field is
initialized with TCKind._tk_longdouble
.
- tk_longlong -
Static variable in class org.omg.CORBA.TCKind
- The
TCKind
constant whose value
field is
initialized with TCKind._tk_longlong
.
- tk_native -
Static variable in class org.omg.CORBA.TCKind
- The
TCKind
constant whose value
field is
initialized with TCKind._tk_native
.
- tk_null -
Static variable in class org.omg.CORBA.TCKind
- The
TCKind
constant whose value
field is
initialized with TCKind._tk_null
.
- tk_objref -
Static variable in class org.omg.CORBA.TCKind
- The
TCKind
constant whose value
field is
initialized with TCKind._tk_objref
.
- tk_octet -
Static variable in class org.omg.CORBA.TCKind
- The
TCKind
constant whose value
field is
initialized with TCKind._tk_octet
.
- tk_Principal -
Static variable in class org.omg.CORBA.TCKind
- The
TCKind
constant whose value
field is
initialized with TCKind._tk_Principal
.
- tk_sequence -
Static variable in class org.omg.CORBA.TCKind
- The
TCKind
constant whose value
field is
initialized with TCKind._tk_sequence
.
- tk_short -
Static variable in class org.omg.CORBA.TCKind
- The
TCKind
constant whose value
field is
initialized with TCKind._tk_short
.
- tk_string -
Static variable in class org.omg.CORBA.TCKind
- The
TCKind
constant whose value
field is
initialized with TCKind._tk_string
.
- tk_struct -
Static variable in class org.omg.CORBA.TCKind
- The
TCKind
constant whose value
field is
initialized with TCKind._tk_struct
.
- tk_TypeCode -
Static variable in class org.omg.CORBA.TCKind
- The
TCKind
constant whose value
field is
initialized with TCKind._tk_TypeCode
.
- tk_ulong -
Static variable in class org.omg.CORBA.TCKind
- The
TCKind
constant whose value
field is
initialized with TCKind._tk_ulong
.
- tk_ulonglong -
Static variable in class org.omg.CORBA.TCKind
- The
TCKind
constant whose value
field is
initialized with TCKind._tk_ulonglong
.
- tk_union -
Static variable in class org.omg.CORBA.TCKind
- The
TCKind
constant whose value
field is
initialized with TCKind._tk_union
.
- tk_ushort -
Static variable in class org.omg.CORBA.TCKind
- The
TCKind
constant whose value
field is
initialized with TCKind._tk_ushort
.
- tk_value -
Static variable in class org.omg.CORBA.TCKind
- The
TCKind
constant whose value
field is
initialized with TCKind._tk_value
.
- tk_value_box -
Static variable in class org.omg.CORBA.TCKind
- The
TCKind
constant whose value
field is
initialized with TCKind._tk_value_box
.
- tk_void -
Static variable in class org.omg.CORBA.TCKind
- The
TCKind
constant whose value
field is
initialized with TCKind._tk_void
.
- tk_wchar -
Static variable in class org.omg.CORBA.TCKind
- The
TCKind
constant whose value
field is
initialized with TCKind._tk_wchar
.
- tk_wstring -
Static variable in class org.omg.CORBA.TCKind
- The
TCKind
constant whose value
field is
initialized with TCKind._tk_wstring
.
- to_any() -
Method in interface org.omg.CORBA.DynAny
- Convert a
DynAny
object to an Any
object.
- toArray() -
Method in class java.awt.dnd.DragGestureEvent
- This method returns an
Object
array of the
events comprising the drag gesture.
- toArray() -
Method in class java.beans.beancontext.BeanContextMembershipEvent
- Gets the array of children affected by this event.
- toArray() -
Method in class java.beans.beancontext.BeanContextSupport
- Gets all JavaBean or BeanContext
instances currently nested in this BeanContext.
- toArray() -
Method in class java.util.AbstractCollection
- Returns an array containing all of the elements in this collection.
- toArray() -
Method in class java.util.Vector
- Returns an array containing all of the elements in this Vector
in the correct order.
- toArray() -
Method in interface java.util.Collection
- Returns an array containing all of the elements in this collection.
- toArray() -
Method in interface java.util.Set
- Returns an array containing all of the elements in this set.
- toArray() -
Method in class java.util.LinkedList
- Returns an array containing all of the elements in this list
in the correct order.
- toArray() -
Method in interface java.util.List
- Returns an array containing all of the elements in this list in proper
sequence.
- toArray() -
Method in class java.util.ArrayList
- Returns an array containing all of the elements in this list
in the correct order.
- toArray() -
Method in class javax.accessibility.AccessibleStateSet
- Returns the current state set as an array of AccessibleState
- toArray() -
Method in class javax.accessibility.AccessibleRelationSet
- Returns the current relation set as an array of AccessibleRelation
- toArray() -
Method in class javax.swing.DefaultListModel
- Returns an array containing all of the elements in this list in the
correct order.
- toArray(Object[]) -
Method in class java.awt.dnd.DragGestureEvent
- This method returns an array of the
events comprising the drag gesture.
- toArray(Object[]) -
Method in class java.beans.beancontext.BeanContextSupport
- Gets an array containing all children of
this BeanContext that match
the types contained in arry.
- toArray(Object[]) -
Method in class java.util.AbstractCollection
- Returns an array with a runtime type is that of the specified array and
that contains all of the elements in this collection.
- toArray(Object[]) -
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 interface java.util.Collection
- Returns an array containing all of the elements in this collection
whose runtime type is that of the specified array.
- toArray(Object[]) -
Method in interface java.util.Set
- Returns an array containing all of the elements in this set whose
runtime type is that of the specified array.
- toArray(Object[]) -
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 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(Object[]) -
Method in class java.util.ArrayList
- Returns an array containing all of the elements in this list in the
correct order.
- toBack() -
Method in class java.awt.Window
- Sends this window to the back.
- toBack() -
Method in class javax.swing.JInternalFrame
- Sends this internal frame to the back.
- toBigInteger() -
Method in class java.math.BigDecimal
- Converts this BigDecimal to a BigInteger.
- toBinaryString(int) -
Static method in class java.lang.Integer
- Creates a string representation of the integer argument as an
unsigned integer in base 2.
- toBinaryString(long) -
Static method in class java.lang.Long
- Creates 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.
- toCIEXYZ(float[]) -
Method in class java.awt.color.ColorSpace
- Transforms a color value assumed to be in this ColorSpace
into the CS_CIEXYZ conversion color space.
- toCIEXYZ(float[]) -
Method in class java.awt.color.ICC_ColorSpace
- Transforms a color value assumed to be in this ColorSpace
into the CS_CIEXYZ conversion color space.
- toDegrees(double) -
Static method in class java.lang.StrictMath
- Converts an angle measured in radians to the equivalent angle
measured in degrees.
- toDegrees(double) -
Static method in class java.lang.Math
- Converts an angle measured in radians to the equivalent angle
measured in degrees.
- toDisplayString() -
Method in class javax.accessibility.AccessibleBundle
- Gets localized string describing the key using the default locale.
- toDisplayString(Locale) -
Method in class javax.accessibility.AccessibleBundle
- Obtains the key as a localized string.
- toDisplayString(String, Locale) -
Method in class javax.accessibility.AccessibleBundle
- Obtains the key as a localized string.
- 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
.
- toFront() -
Method in class java.awt.Window
- Brings this window to the front.
- toFront() -
Method in class javax.swing.JInternalFrame
- Brings this internal frame to the front.
- TOGGLE_BUTTON -
Static variable in class javax.accessibility.AccessibleRole
- A specialized push button that can be checked or unchecked, but
does not provide a separate indicator for the current state.
- TOGGLE_CLICK_COUNT_PROPERTY -
Static variable in class javax.swing.JTree
- Bound property name for
toggleClickCount
.
- toggleClickCount -
Variable in class javax.swing.JTree
- Number of mouse clicks before a node is expanded.
- toggleExpandState(TreePath) -
Method in class javax.swing.plaf.basic.BasicTreeUI
- Expands path if it is not expanded, or collapses row if it is expanded.
- toggleOpenClose() -
Method in class javax.swing.plaf.basic.BasicComboBoxUI
- Hides the popup if it is showing and shows the popup if it is hidden.
- togglePopup() -
Method in class javax.swing.plaf.basic.BasicComboPopup
- Makes the popup visible if it is hidden and makes it hidden if it is visible.
- toGMTString() -
Method in class java.util.Date
- Deprecated. As of JDK version 1.1,
replaced by
DateFormat.format(Date date)
, using a
GMT TimeZone
.
- toHexString(int) -
Static method in class java.lang.Integer
- Creates a string representation of the integer argument as an
unsigned integer in base 16.
- toHexString(long) -
Static method in class java.lang.Long
- Creates a string representation of the long argument as an
unsigned integer in base 16.
- toIndex -
Variable in class javax.swing.event.TableColumnModelEvent
- The index of the column to where it was moved or added from
- toLocaleString() -
Method in class java.util.Date
- Deprecated. As of JDK version 1.1,
replaced by
DateFormat.format(Date date)
.
- toLocalizedPattern() -
Method in class java.text.SimpleDateFormat
- Return a localized pattern string describing this date format.
- toLocalizedPattern() -
Method in class java.text.DecimalFormat
- Synthesizes a localized pattern string that represents the current
state of this Format object.
- 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, which is returned
by Locale.getDefault
.
- toLowerCase(char) -
Static method in class java.lang.Character
- The given character is mapped to its lowercase equivalent; if the
character has no lowercase equivalent, the character itself is
returned.
- 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
.
- toOctalString(int) -
Static method in class java.lang.Integer
- Creates a string representation of the integer argument as an
unsigned integer in base 8.
- toOctalString(long) -
Static method in class java.lang.Long
- Creates a string representation of the long argument as an
unsigned integer in base 8.
- TOOL_BAR -
Static variable in class javax.accessibility.AccessibleRole
- A bar or palette usually composed of push buttons or toggle buttons.
- TOOL_TIP -
Static variable in class javax.accessibility.AccessibleRole
- An object that provides information about another object.
- TOOL_TIP_TEXT_KEY -
Static variable in class javax.swing.JComponent
- The comment to display when the cursor is over the component,
also known as a "value tip", "flyover help", or "flyover label".
- toolBar -
Variable in class javax.swing.plaf.basic.BasicToolBarUI
-
- toolBar -
Variable in class javax.swing.plaf.basic.BasicToolBarUI.DockingListener
-
- toolBarContListener -
Variable in class javax.swing.plaf.basic.BasicToolBarUI
-
- toolBarFocusListener -
Variable in class javax.swing.plaf.basic.BasicToolBarUI
-
- ToolBarUI - class javax.swing.plaf.ToolBarUI.
- Pluggable look and feel interface for JToolBar.
- ToolBarUI() -
Constructor for class javax.swing.plaf.ToolBarUI
-
- Toolkit - class java.awt.Toolkit.
- This class is the abstract superclass of all actual
implementations of the Abstract Window Toolkit.
- Toolkit() -
Constructor for class java.awt.Toolkit
-
- ToolTipManager - class javax.swing.ToolTipManager.
- Manages all the ToolTips in the system.
- ToolTipManager.insideTimerAction - class javax.swing.ToolTipManager.insideTimerAction.
-
- ToolTipManager.insideTimerAction(ToolTipManager) -
Constructor for class javax.swing.ToolTipManager.insideTimerAction
-
- ToolTipManager.outsideTimerAction - class javax.swing.ToolTipManager.outsideTimerAction.
-
- ToolTipManager.outsideTimerAction(ToolTipManager) -
Constructor for class javax.swing.ToolTipManager.outsideTimerAction
-
- ToolTipManager.stillInsideTimerAction - class javax.swing.ToolTipManager.stillInsideTimerAction.
-
- ToolTipManager.stillInsideTimerAction(ToolTipManager) -
Constructor for class javax.swing.ToolTipManager.stillInsideTimerAction
-
- ToolTipUI - class javax.swing.plaf.ToolTipUI.
- Pluggable look and feel interface for JToolTip.
- ToolTipUI() -
Constructor for class javax.swing.plaf.ToolTipUI
-
- 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.
- top -
Variable in class java.awt.Insets
- The inset from the top.
- top -
Variable in class javax.swing.border.EmptyBorder
-
- TOP -
Static variable in interface javax.swing.SwingConstants
- Box-orientation constant used to specify the top of a box.
- TOP -
Static variable in class javax.swing.JSplitPane
- Used to add a
Component
above the other
Component
.
- TOP -
Static variable in class javax.swing.border.TitledBorder
- Position the title in the middle of the border's top line.
- TOP_ALIGNMENT -
Static variable in class java.awt.Component
- Ease-of-use constant for
getAlignmentY()
.
- TOP_ALIGNMENT -
Static variable in class java.awt.font.GraphicAttribute
- Aligns top of graphic to top of line.
- toPattern() -
Method in class java.text.ChoiceFormat
- Gets the pattern.
- toPattern() -
Method in class java.text.SimpleDateFormat
- Return a pattern string describing this date format.
- 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
- Gets the pattern.
- TOPDOWNLEFTRIGHT -
Static variable in interface java.awt.image.ImageConsumer
- The pixels will be delivered in top-down, left-to-right order.
- toRadians(double) -
Static method in class java.lang.StrictMath
- Converts an angle measured in degrees to the equivalent angle
measured in radians.
- toRadians(double) -
Static method in class java.lang.Math
- Converts an angle measured in degrees to the equivalent angle
measured in radians.
- toRGB(float[]) -
Method in class java.awt.color.ColorSpace
- Transforms a color value assumed to be in this ColorSpace
into a value in the default CS_sRGB color space.
- toRGB(float[]) -
Method in class java.awt.color.ICC_ColorSpace
- Transforms a color value assumed to be in this ColorSpace
into a value in the default CS_sRGB color space.
- toString() -
Method in class java.awt.Component
- Returns a string representation of this component and its values.
- toString() -
Method in class java.awt.Event
- Returns a representation of this event's values as a string.
- toString() -
Method in class java.awt.CardLayout
- Returns a string representation of the state of this card layout.
- toString() -
Method in class java.awt.MenuComponent
- Returns a representation of this menu component as a string.
- toString() -
Method in class java.awt.FontMetrics
- Returns a representation of this
FontMetrics
object's values as a String
.
- toString() -
Method in class java.awt.Graphics
- Returns a
String
object representing this
Graphics
object's value.
- toString() -
Method in class java.awt.MenuShortcut
- Returns an internationalized description of the MenuShortcut.
- toString() -
Method in class java.awt.GridLayout
- Returns the string representation of this grid layout's values.
- toString() -
Method in class java.awt.BorderLayout
- Returns a string representation of the state of this border layout.
- toString() -
Method in class java.awt.Insets
- Returns a string representation of this
Insets
object.
- toString() -
Method in class java.awt.Font
- Converts this
Font
object to a String
representation.
- toString() -
Method in class java.awt.RenderingHints
- Returns a rather long string representation of the hashmap
which contains the mappings of keys to values for this
RenderingHints
object.
- toString() -
Method in class java.awt.Point
- Returns a string representation of this point and its location
in the (x, y) coordinate space.
- toString() -
Method in class java.awt.Color
- Returns a string representation of this
Color
.
- toString() -
Method in class java.awt.CheckboxGroup
- Returns a string representation of this check box group,
including the value of its current selection.
- toString() -
Method in class java.awt.Cursor
- Returns a string representation of this cursor.
- toString() -
Method in class java.awt.Dimension
- Returns a string representation of the values of this
Dimension
object's height
and
width
fields.
- toString() -
Method in class java.awt.GridBagLayout
- Returns a string representation of this grid bag layout's values.
- toString() -
Method in class java.awt.PageAttributes
- Returns a string representation of this PageAttributes.
- toString() -
Method in class java.awt.JobAttributes
- Returns a string representation of this JobAttributes.
- toString() -
Method in class java.awt.AWTEvent
-
- toString() -
Method in class java.awt.Rectangle
- Returns a
String
representing this
Rectangle
and its values.
- toString() -
Method in class java.awt.FlowLayout
- Returns a string representation of this
FlowLayout
object and its values.
- toString() -
Method in class java.awt.SystemColor
- Returns the String representation of this Color's values.
- toString() -
Method in class java.awt.Robot
- Returns a string representation of this Robot.
- toString() -
Method in class java.awt.datatransfer.DataFlavor
- String representation of this
DataFlavor
and its parameters.
- toString() -
Method in class java.awt.font.TextLayout
- Returns debugging information for this
TextLayout
.
- toString() -
Method in class java.awt.font.TextHitInfo
- Returns a
String
representing the hit for debugging
use only.
- toString() -
Method in class java.awt.geom.Rectangle2D.Float
- Returns the
String
representation of this
Rectangle2D
.
- toString() -
Method in class java.awt.geom.Rectangle2D.Double
- Returns the
String
representation of this
Rectangle2D
.
- toString() -
Method in class java.awt.geom.Point2D.Float
- Returns a
String
that represents the value
of this Point2D
.
- toString() -
Method in class java.awt.geom.Point2D.Double
- Returns a
String
that represents the value
of this Point2D
.
- toString() -
Method in class java.awt.geom.AffineTransform
- Returns a
String
that represents the value of this
Object
.
- toString() -
Method in class java.awt.image.BufferedImage
- Returns a
String
representation of this
BufferedImage
object and its values.
- toString() -
Method in class java.awt.image.ColorModel
- Returns the
String
representation of the contents of
this ColorModel
object.
- toString() -
Method in class java.awt.image.DirectColorModel
- Returns a
String
that represents this
DirectColorModel
.
- toString() -
Method in class java.awt.image.IndexColorModel
- Returns the
String
representation of the contents of
this ColorModel
object.
- toString() -
Method in class java.io.StreamTokenizer
- Returns the string representation of the current stream token.
- toString() -
Method in class java.io.File
- Returns the pathname string of this abstract pathname.
- toString() -
Method in class java.io.StringWriter
- Return the buffer's current value as a string.
- 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.CharArrayWriter
- Converts input data to a string.
- 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() -
Method in class java.lang.Object
- Returns a string representation of the object.
- toString() -
Method in class java.lang.Throwable
- Returns a short description of this throwable object.
- toString() -
Method in class java.lang.Character
- Returns a String object representing this character's value.
- toString() -
Method in class java.lang.Character.Subset
- Returns the name of this subset.
- toString() -
Method in class java.lang.Long
- Returns a String object representing this Long's value.
- toString() -
Method in class java.lang.ThreadGroup
- Returns a string representation of this Thread group.
- 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.Short
- Returns a String object representing this Short's value.
- toString() -
Method in class java.lang.String
- This object (which is already a string!) is itself returned.
- toString() -
Method in class java.lang.Float
- Returns a String representation of this Float object.
- toString() -
Method in class java.lang.Integer
- Returns a String object representing this Integer's value.
- toString() -
Method in class java.lang.StringBuffer
- Converts to a string representing the data in this string buffer.
- toString() -
Method in class java.lang.Package
- Returns the string representation of this Package.
- toString() -
Method in class java.lang.Byte
- Returns a String object representing this Byte's value.
- toString() -
Method in class java.lang.Class
- Converts the object to a string.
- toString() -
Method in class java.lang.Double
- Returns a String representation of this Double object.
- toString() -
Method in class java.lang.Boolean
- Returns a String object representing this Boolean's value.
- toString() -
Method in class java.lang.reflect.Method
- Returns a string describing this
Method
.
- toString() -
Method in class java.lang.reflect.Field
- Returns a string describing this
Field
.
- toString() -
Method in class java.lang.reflect.Constructor
- Returns a string describing this
Constructor
.
- toString() -
Method in class java.math.BigInteger
- Returns the decimal String representation of this BigInteger.
- toString() -
Method in class java.math.BigDecimal
- Returns the string representation of this BigDecimal.
- toString() -
Method in class java.net.URLConnection
- Returns a
String
representation of this URL connection.
- toString() -
Method in class java.net.SocketImpl
- Returns the address and 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.URL
- Constructs a string representation of this
URL
.
- 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.InetAddress
- Converts this IP address to a
String
.
- toString() -
Method in class java.rmi.dgc.VMID
- Return string representation of this VMID.
- toString() -
Method in class java.rmi.server.RemoteObject
- Returns a String that represents the value of this remote object.
- toString() -
Method in class java.rmi.server.UID
- Returns the string representation of the
UID
.
- toString() -
Method in class java.rmi.server.ObjID
- Returns a string containing the object id representation.
- toString() -
Method in class java.rmi.server.Operation
- Deprecated. no replacement
- toString() -
Method in class java.rmi.server.LogStream
- Deprecated. no replacement
- toString() -
Method in class java.security.Permission
- Returns a string describing this Permission.
- 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.CodeSource
- Returns a string describing this CodeSource, telling its
URL and certificates.
- toString() -
Method in class java.security.UnresolvedPermission
- Returns a string describing this UnresolvedPermission.
- toString() -
Method in class java.security.Identity
- Deprecated. Returns a short string describing this identity, telling its
name and its scope (if any).
- toString() -
Method in class java.security.Signer
- Deprecated. Returns a string of information about the signer.
- toString() -
Method in class java.security.PrivilegedActionException
- Returns a string describing this exception, including a description
of the exception it wraps.
- toString() -
Method in class java.security.ProtectionDomain
- Convert a ProtectionDomain to a String.
- toString() -
Method in class java.security.AlgorithmParameters
- Returns a formatted string describing the parameters.
- 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 class java.security.MessageDigest
- Returns a string representation of this 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.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.DigestInputStream
- Prints a string representation of this digest input stream and
its associated message digest object.
- toString() -
Method in interface java.security.Principal
- Returns a string representation of this principal.
- 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 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 interface java.security.acl.Acl
- Returns a string representation of the
ACL contents.
- toString() -
Method in class java.security.cert.Certificate
- Returns a string representation of this certificate.
- toString() -
Method in class java.security.cert.CRL
- Returns a string representation of this CRL.
- toString() -
Method in class java.security.cert.X509CRLEntry
- Returns a string representation of this CRL entry.
- toString() -
Method in class java.sql.Timestamp
- Formats a timestamp in JDBC timestamp escape format.
- toString() -
Method in class java.sql.Date
- Formats a date in the date escape format yyyy-mm-dd.
- toString() -
Method in class java.sql.Time
- Formats a time in JDBC date escape format
- toString() -
Method in class java.text.AttributedCharacterIterator.Attribute
- Returns a string representation of the object.
- toString() -
Method in class java.text.ParsePosition
- Return a string representation of this ParsePosition.
- toString() -
Method in class java.text.FieldPosition
- Return a string representation of this FieldPosition.
- toString() -
Method in class java.text.Annotation
- Returns the String representation of this Annotation.
- 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.Date
- Converts this
Date
object to a String
of the form:
- toString() -
Method in class java.util.BitSet
- Returns a string representation of this bit set.
- 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.Vector
- Returns a string representation of this Vector, containing
the String representation of each element.
- toString() -
Method in class java.util.SimpleTimeZone
- Return a string representation of this time zone.
- toString() -
Method in class java.util.Calendar
- Return a string representation of this calendar.
- 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.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.accessibility.AccessibleBundle
- Gets localized string describing the key using the default locale.
- toString() -
Method in class javax.accessibility.AccessibleStateSet
- Creates a localized String representing all the states in the set
using the default locale.
- toString() -
Method in class javax.accessibility.AccessibleRelationSet
- Creates a localized String representing all the relations in the set
using the default locale.
- toString() -
Method in class javax.sound.sampled.Line.Info
- Obtains a textual description of the line info.
- toString() -
Method in class javax.sound.sampled.DataLine.Info
- Obtains a textual description of the data line info.
- toString() -
Method in class javax.sound.sampled.Control
- Obtains a String describing the control type and its current state.
- toString() -
Method in class javax.sound.sampled.Control.Type
- Provides the
String
representation of the control type.
- toString() -
Method in class javax.sound.sampled.Mixer.Info
- Provides a string representation of the mixer info.
- toString() -
Method in class javax.sound.sampled.AudioFileFormat
- Provides a string representation of the file format.
- toString() -
Method in class javax.sound.sampled.AudioFileFormat.Type
- Provides the file type's name as the
String
representation
of the file type.
- toString() -
Method in class javax.sound.sampled.EnumControl
- Provides a string representation of the control.
- toString() -
Method in class javax.sound.sampled.LineEvent
- Obtains a string representation of the event.
- toString() -
Method in class javax.sound.sampled.LineEvent.Type
- Returns the type name as the string representation.
- toString() -
Method in class javax.sound.sampled.AudioFormat
- Returns a string that describes the format, such as:
"PCM SIGNED 22050 Hz 16 bit mono big-endian audio data".
- toString() -
Method in class javax.sound.sampled.AudioFormat.Encoding
- Provides the
String
representation of the encoding.
- toString() -
Method in class javax.sound.sampled.FloatControl
- Provides a string representation of the control
- toString() -
Method in class javax.sound.sampled.CompoundControl
- Provides a string representation of the control
- toString() -
Method in class javax.sound.sampled.ReverbType
- Provides a
String
representation of the reverb type,
including its name and its parameter settings.
- toString() -
Method in class javax.sound.sampled.Port.Info
- Provides a
String
representation
of the port.
- toString() -
Method in class javax.sound.sampled.BooleanControl
- Provides a string representation of the control
- toString() -
Method in class javax.sound.midi.MidiDevice.Info
- Provides a string representation of the device information.
- toString() -
Method in class javax.sound.midi.Sequencer.SyncMode
- Provides this synchronization mode's name as the string
representation of the mode.
- toString() -
Method in class javax.naming.Reference
- Generates the string representation of this reference.
- toString() -
Method in class javax.naming.NamingException
- Generates the string representation of this exception.
- toString() -
Method in class javax.naming.RefAddr
- Generates the string representation of this address.
- toString() -
Method in class javax.naming.LinkException
- Generates the string representation of this exception.
- toString() -
Method in class javax.naming.BinaryRefAddr
- Generates the string representation of this address.
- toString() -
Method in class javax.naming.NameClassPair
- Generates the string representation of this name/class pair.
- toString() -
Method in class javax.naming.Binding
- Generates the string representation of this binding.
- toString() -
Method in class javax.naming.CompoundName
- Generates the string representation of this compound name, using
the syntax rules of the compound name.
- toString() -
Method in class javax.naming.CompositeName
- Generates the string representation of this composite name.
- toString() -
Method in class javax.naming.directory.AttributeModificationException
- The string representation of this exception consists of
information about where the error occurred, and
the first unexecuted modification.
- toString() -
Method in class javax.naming.directory.BasicAttribute
- Generates the string representation of this attribute.
- toString() -
Method in class javax.naming.directory.SearchResult
- Generates the string representation of this SearchResult.
- toString() -
Method in class javax.naming.directory.BasicAttributes
- Generates the string representation of this attribute set.
- toString() -
Method in class javax.naming.directory.ModificationItem
- Generates the string representation of this modification item,
which consists of the modification operation and its related attribute.
- toString() -
Method in class javax.rmi.CORBA.Stub
- Returns a string representation of this stub.
- toString() -
Method in class javax.swing.KeyStroke
- Returns a string that displays and identifies this
object's properties.
- toString() -
Method in class javax.swing.DefaultBoundedRangeModel
- Returns a string that displays all of the BoundedRangeModel properties.
- toString() -
Method in class javax.swing.RepaintManager
- Returns a string that displays and identifies this
object's properties.
- toString() -
Method in class javax.swing.LookAndFeel
- Returns a string that displays and identifies this
object's properties.
- toString() -
Method in class javax.swing.DefaultListSelectionModel
- Returns a string that displays and identifies this
object's properties.
- toString() -
Method in class javax.swing.SizeRequirements
- Returns a string describing the minimum, preferred, and maximum
size requirements, along with the alignment.
- toString() -
Method in class javax.swing.DefaultListModel
- Returns a string that displays and identifies this
object's properties.
- toString() -
Method in class javax.swing.ImageIcon
- Returns a string representation of this image.
- toString() -
Method in class javax.swing.UIManager.LookAndFeelInfo
- Returns a string that displays and identifies this
object's properties.
- toString() -
Method in class javax.swing.event.HyperlinkEvent.EventType
- Converts the type to a string.
- toString() -
Method in class javax.swing.event.DocumentEvent.EventType
- Converts the type to a string.
- toString() -
Method in class javax.swing.event.EventListenerList
- Returns a string representation of the EventListenerList.
- toString() -
Method in class javax.swing.event.ListSelectionEvent
- Returns a string that displays and identifies this
object's properties.
- toString() -
Method in class javax.swing.event.TreeModelEvent
- Returns a string that displays and identifies this object's
properties.
- toString() -
Method in class javax.swing.text.SimpleAttributeSet
- Converts the attribute set to a String.
- toString() -
Method in class javax.swing.text.StyleContext
- Converts a StyleContext to a String.
- toString() -
Method in class javax.swing.text.StyleContext.SmallAttributeSet
- Returns a string showing the key/value pairs
- toString() -
Method in class javax.swing.text.StyleContext.NamedStyle
- Converts the style to a string.
- toString() -
Method in class javax.swing.text.Position.Bias
- string representation
- toString() -
Method in class javax.swing.text.StyleConstants
- Returns the string representation.
- toString() -
Method in class javax.swing.text.TabSet
- Returns the string representation of the set of tabs.
- toString() -
Method in class javax.swing.text.AbstractDocument.BranchElement
- Converts the element to a string.
- toString() -
Method in class javax.swing.text.AbstractDocument.LeafElement
- Converts the element to a string.
- toString() -
Method in class javax.swing.text.AbstractDocument.DefaultDocumentEvent
- Returns a string description of the change event.
- toString() -
Method in class javax.swing.text.DefaultCaret
-
- toString() -
Method in class javax.swing.text.TabStop
-
- toString() -
Method in class javax.swing.text.Segment
- Converts a segment into a String.
- toString() -
Method in class javax.swing.text.DefaultStyledDocument.ElementSpec
- Converts the element to a string.
- toString() -
Method in class javax.swing.text.html.Option
- String representation is the label.
- toString() -
Method in class javax.swing.text.html.HTML.Tag
- Return the string representation of the
tag.
- toString() -
Method in class javax.swing.text.html.HTML.Attribute
-
- toString() -
Method in class javax.swing.text.html.CSS.Attribute
- The string representation of the attribute.
- toString() -
Method in class javax.swing.text.html.parser.AttributeList
-
- toString() -
Method in class javax.swing.text.html.parser.DTD
- Return a string representation.
- toString() -
Method in class javax.swing.text.html.parser.ContentModel
- Convert to a string.
- toString() -
Method in class javax.swing.text.html.parser.Element
- Convert to a string.
- toString() -
Method in class javax.swing.tree.DefaultTreeSelectionModel
- Returns a string that displays and identifies this
object's properties.
- toString() -
Method in class javax.swing.tree.DefaultMutableTreeNode
- Returns the result of sending
toString()
to this node's
user object, or null if this node has no user object.
- toString() -
Method in class javax.swing.tree.TreePath
- Returns a string that displays and identifies this
object's properties.
- toString() -
Method in class javax.swing.undo.AbstractUndoableEdit
- Returns a string that displays and identifies this
object's properties.
- toString() -
Method in class javax.swing.undo.CompoundEdit
- Returns a string that displays and identifies this
object's properties.
- toString() -
Method in class javax.swing.undo.UndoManager
- Returns a string that displays and identifies this
object's properties.
- toString() -
Method in class javax.swing.undo.UndoableEditSupport
- Returns a string that displays and identifies this
object's properties.
- toString() -
Method in class org.omg.CORBA.SystemException
- Converts this exception to a representative string.
- toString() -
Method in class org.omg.CORBA.portable.ObjectImpl
- Returns a
String
object that represents this
ObjectImpl
object.
- 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(boolean) -
Method in interface java.security.Certificate
- Deprecated. Returns a string that represents the contents of the certificate.
- toString(boolean) -
Method in class javax.naming.NamingException
- Generates the string representation in more detail.
- toString(boolean) -
Method in class javax.naming.LinkException
- Generates the string representation of this exception.
- toString(byte) -
Static method in class java.lang.Byte
- Returns a new String object representing the specified Byte.
- toString(double) -
Static method in class java.lang.Double
- Creates a string representation of the
double
argument.
- toString(float) -
Static method in class java.lang.Float
- Returns a String representation for the specified float value.
- toString(int) -
Method in class java.io.ByteArrayOutputStream
- Deprecated. This method does not properly convert bytes into characters.
As of JDK 1.1, the preferred way to do this is via the
toString(String enc)
method, which takes an encoding-name
argument, or the toString()
method, which uses the
platform's default character encoding.
- toString(int) -
Static method in class java.lang.Integer
- Returns a new String object representing the specified integer.
- toString(int) -
Static method in class java.lang.reflect.Modifier
- Return a string describing the access modifier flags in
the specified modifier.
- toString(int) -
Method in class java.math.BigInteger
- Returns the String representation of this BigInteger in the given radix.
- toString(int, int) -
Static method in class java.lang.Integer
- Creates 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 new String object representing the specified integer.
- toString(long, int) -
Static method in class java.lang.Long
- Creates a string representation of the first argument in the
radix specified by the second argument.
- toString(Object) -
Method in class org.omg.CORBA.portable.Delegate
- Provide the implementation to override the toString() method
of the delegating CORBA object.
- toString(short) -
Static method in class java.lang.Short
- Returns a new String object representing the specified
Short.
- 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(Stub) -
Method in interface javax.rmi.CORBA.StubDelegate
- Delegation call for
Stub.toString()
.
- toStub(Remote) -
Static method in class java.rmi.server.RemoteObject
- Returns the stub for the remote object
obj
passed
as a parameter.
- toStub(Remote) -
Static method in class javax.rmi.PortableRemoteObject
- Returns a stub for the given server object.
- toStub(Remote) -
Method in interface javax.rmi.CORBA.PortableRemoteObjectDelegate
- Delegation call for
PortableRemoteObject.toStub(java.rmi.Remote)
.
- totalChildIndent -
Variable in class javax.swing.plaf.basic.BasicTreeUI
- Total distance that will be indented.
- totalColumnWidth -
Variable in class javax.swing.table.DefaultTableColumnModel
- A local cache of the combined width of all columns
- totalMemory() -
Method in class java.lang.Runtime
- Returns the total amount of memory in the Java Virtual Machine.
- toTitleCase(char) -
Static method in class java.lang.Character
- Converts the character argument to titlecase.
- 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, which is returned
by Locale.getDefault
.
- toUpperCase(char) -
Static method in class java.lang.Character
- Converts the character argument to uppercase.
- 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.
- toURL() -
Method in class java.io.File
- Converts this abstract pathname into a
file:
URL.
- toViewCoordinates(Dimension) -
Method in class javax.swing.JViewport
- Converts a size in pixel coordinates to view coordinates.
- toViewCoordinates(Point) -
Method in class javax.swing.JViewport
- Converts a point in pixel coordinates to view coordinates.
- TR -
Static variable in class javax.swing.text.html.HTML.Tag
-
- 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.
- Track - class javax.sound.midi.Track.
- A MIDI track is an independent stream of MIDI events (time-stamped MIDI
data) that can be stored along with other tracks in a standard MIDI file.
- TRACK -
Static variable in class java.awt.event.AdjustmentEvent
- The absolute tracking adjustment type.
- trackBuffer -
Variable in class javax.swing.plaf.basic.BasicSliderUI
-
- trackColor -
Variable in class javax.swing.plaf.basic.BasicScrollBarUI
-
- tracker -
Static variable in class javax.swing.ImageIcon
-
- trackHighlight -
Variable in class javax.swing.plaf.basic.BasicScrollBarUI
-
- trackHighlightColor -
Variable in class javax.swing.plaf.basic.BasicScrollBarUI
-
- trackListener -
Variable in class javax.swing.plaf.basic.BasicScrollBarUI
-
- trackListener -
Variable in class javax.swing.plaf.basic.BasicSliderUI
-
- trackRect -
Variable in class javax.swing.plaf.basic.BasicScrollBarUI
-
- trackRect -
Variable in class javax.swing.plaf.basic.BasicSliderUI
-
- tracks -
Variable in class javax.sound.midi.Sequence
- The MIDI tracks in this sequence.
- trackWidth -
Static variable in class javax.swing.plaf.metal.MetalSliderUI
-
- TRADITIONAL_CHINESE -
Static variable in class java.util.Locale
- Useful constant for language.
- TRADITIONAL_HANZI -
Static variable in class java.awt.im.InputSubset
- Constant for all Han characters used in writing Traditional Chinese,
including a subset of the CJK unified ideographs as well as Traditional
Chinese Han characters that may be defined as surrogate characters.
- TRAILING -
Static variable in class java.awt.FlowLayout
- This value indicates that each row of components
should be justified to the leading edge of the container's
orientation, e.g.
- TRAILING -
Static variable in interface javax.swing.SwingConstants
- Identifies the trailing edge of text for use with left-to-right
and right-to-left languages.
- TRAILING -
Static variable in class javax.swing.border.TitledBorder
- Position title text at the right side of the border line
for left to right orientation, at the left side of the
border line for right to left orientation.
- trailing(int) -
Static method in class java.awt.font.TextHitInfo
- Creates a hit on the trailing edge of the character at
the specified
charIndex
.
- TRANSACTION_NONE -
Static variable in interface java.sql.Connection
- Indicates that transactions are not supported.
- TRANSACTION_READ_COMMITTED -
Static variable in interface java.sql.Connection
- Dirty reads are prevented; non-repeatable reads and phantom
reads can occur.
- TRANSACTION_READ_UNCOMMITTED -
Static variable in interface java.sql.Connection
- Dirty reads, non-repeatable reads and phantom reads can occur.
- TRANSACTION_REPEATABLE_READ -
Static variable in interface java.sql.Connection
- Dirty reads and non-repeatable reads are prevented; phantom
reads can occur.
- TRANSACTION_REQUIRED - exception org.omg.CORBA.TRANSACTION_REQUIRED.
- The CORBA
TRANSACTION_REQUIRED
exception, which is thrown
by the ORB on the client or server during the
processing of a request that
is required to be enclosed in a transaction. - TRANSACTION_REQUIRED() -
Constructor for class org.omg.CORBA.TRANSACTION_REQUIRED
- Constructs a
TRANSACTION_REQUIRED
exception with a default minor code
of 0, a completion state of CompletionStatus.COMPLETED_NO,
and a null description.
- TRANSACTION_REQUIRED(int, CompletionStatus) -
Constructor for class org.omg.CORBA.TRANSACTION_REQUIRED
- Constructs a
TRANSACTION_REQUIRED
exception with the specified
minor code and completion status.
- TRANSACTION_REQUIRED(String) -
Constructor for class org.omg.CORBA.TRANSACTION_REQUIRED
- Constructs a
TRANSACTION_REQUIRED
exception with the specified
description message, a minor code of 0, and a completion state of COMPLETED_NO.
- TRANSACTION_REQUIRED(String, int, CompletionStatus) -
Constructor for class org.omg.CORBA.TRANSACTION_REQUIRED
- Constructs a
TRANSACTION_REQUIRED
exception with the specified description
message, minor code, and completion status.
- TRANSACTION_ROLLEDBACK - exception org.omg.CORBA.TRANSACTION_ROLLEDBACK.
- The CORBA
TRANSACTION_ROLLEDBACK
exception, which is thrown
when a transactional operation did not complete
because the transaction was rolled back. - TRANSACTION_ROLLEDBACK() -
Constructor for class org.omg.CORBA.TRANSACTION_ROLLEDBACK
- Constructs a
TRANSACTION_ROLLEDBACK
exception with a default minor code
of 0, a completion state of CompletionStatus.COMPLETED_NO,
and a null description.
- TRANSACTION_ROLLEDBACK(int, CompletionStatus) -
Constructor for class org.omg.CORBA.TRANSACTION_ROLLEDBACK
- Constructs a
TRANSACTION_ROLLEDBACK
exception with the specified
minor code and completion status.
- TRANSACTION_ROLLEDBACK(String) -
Constructor for class org.omg.CORBA.TRANSACTION_ROLLEDBACK
- Constructs a
TRANSACTION_ROLLEDBACK
exception with the
specified description message,
a minor code of 0, and a completion state of COMPLETED_NO.
- TRANSACTION_ROLLEDBACK(String, int, CompletionStatus) -
Constructor for class org.omg.CORBA.TRANSACTION_ROLLEDBACK
- Constructs a
TRANSACTION_ROLLEDBACK
exception with the
specified description message, minor code, and completion status.
- TRANSACTION_SERIALIZABLE -
Static variable in interface java.sql.Connection
- Dirty reads, non-repeatable reads and phantom reads are prevented.
- TransactionRequiredException - exception javax.transaction.TransactionRequiredException.
- This exception indicates that a request carried a null transaction context,
but the target object requires an activate transaction.
- TransactionRequiredException() -
Constructor for class javax.transaction.TransactionRequiredException
-
- TransactionRequiredException(String) -
Constructor for class javax.transaction.TransactionRequiredException
-
- TransactionRolledbackException - exception javax.transaction.TransactionRolledbackException.
- This exception indicates that the transaction associated with processing
of the request has been rolled back, or marked to roll back.
- TransactionRolledbackException() -
Constructor for class javax.transaction.TransactionRolledbackException
-
- TransactionRolledbackException(String) -
Constructor for class javax.transaction.TransactionRolledbackException
-
- transferable -
Variable in class java.awt.dnd.DropTargetContext.TransferableProxy
- The "actual"
Transferable
that the Proxy is a Proxy for,
usually supplied from the underlying system.
- Transferable - interface java.awt.datatransfer.Transferable.
- Defines the interface for classes that can be used to provide data
for a transfer operation.
- transferablesFlavorsChanged() -
Method in class java.awt.dnd.DragSourceContext
- This method notifies the peer that
the Transferable's DataFlavors have changed.
- transferFocus() -
Method in class java.awt.Component
- Transfers the focus to the next component.
- transferType -
Variable in class java.awt.image.ColorModel
- Data type of the array used to represent pixel values.
- TRANSFORM -
Static variable in class java.awt.font.TextAttribute
- Attribute key for the transform of a font.
- transform(AffineTransform) -
Method in class java.awt.Graphics2D
- Composes an
AffineTransform
object with the
Transform
in this Graphics2D
according
to the rule last-specified-first-applied.
- transform(AffineTransform) -
Method in class java.awt.geom.Area
- Transforms the geometry of this
Area
using the specified
AffineTransform
.
- transform(AffineTransform) -
Method in class java.awt.geom.GeneralPath
- Transforms the geometry of this path using the specified
AffineTransform
.
- transform(double[], int, double[], int, int) -
Method in class java.awt.geom.AffineTransform
- Transforms an array of double precision coordinates by this transform.
- transform(double[], int, float[], int, int) -
Method in class java.awt.geom.AffineTransform
- Transforms an array of double precision coordinates by this transform
and stores the results into an array of floats.
- transform(float[], int, double[], int, int) -
Method in class java.awt.geom.AffineTransform
- Transforms an array of floating point coordinates by this transform
and stores the results into an array of doubles.
- transform(float[], int, float[], int, int) -
Method in class java.awt.geom.AffineTransform
- Transforms an array of floating point coordinates by this transform.
- transform(Point2D[], int, Point2D[], int, int) -
Method in class java.awt.geom.AffineTransform
- Transforms an array of point objects by this transform.
- transform(Point2D, Point2D) -
Method in class java.awt.geom.AffineTransform
- Transforms the specified
ptSrc
and stores the result
in ptDst
.
- TransformAttribute - class java.awt.font.TransformAttribute.
- The
TransformAttribute
class provides an immutable
wrapper for a transform so that it is safe to use as an attribute. - TransformAttribute(AffineTransform) -
Constructor for class java.awt.font.TransformAttribute
- Wraps the specified transform.
- TRANSIENT - exception org.omg.CORBA.TRANSIENT.
- The CORBA
TRANSIENT
exception, which is thrown
by the server to signal a transient failure
that might not occur again if the request is retried. - TRANSIENT -
Static variable in class java.lang.reflect.Modifier
- The
int
value representing the transient
modifier.
- TRANSIENT -
Static variable in class javax.accessibility.AccessibleState
- Indicates this object is transient.
- TRANSIENT() -
Constructor for class org.omg.CORBA.TRANSIENT
- Constructs a
TRANSIENT
exception with a default minor code
of 0, a completion state of CompletionStatus.COMPLETED_NO,
and a null description.
- TRANSIENT(int, CompletionStatus) -
Constructor for class org.omg.CORBA.TRANSIENT
- Constructs a
TRANSIENT
exception with the specified
minor code and completion status.
- TRANSIENT(String) -
Constructor for class org.omg.CORBA.TRANSIENT
- Constructs a
TRANSIENT
exception with the specified description message,
a minor code of 0, and a completion state of COMPLETED_NO.
- TRANSIENT(String, int, CompletionStatus) -
Constructor for class org.omg.CORBA.TRANSIENT
- Constructs a
TRANSIENT
exception with the specified description
message, minor code, and completion status.
- translate(double, double) -
Method in class java.awt.Graphics2D
- Concatenates the current
Graphics2D
Transform
with a translation transform.
- translate(double, double) -
Method in class java.awt.geom.AffineTransform
- Concatenates this transform with a translation transformation.
- translate(int, int) -
Method in class java.awt.Polygon
- Translates the vertices of the
Polygon
by
deltaX
along the x axis and by
deltaY
along the y axis.
- translate(int, int) -
Method in class java.awt.Event
- Translates this event so that its x and y
coordinates are increased by dx and dy,
respectively.
- translate(int, int) -
Method in class java.awt.Graphics
- Translates the origin of the graphics context to the point
(x, y) in the current coordinate system.
- translate(int, int) -
Method in class java.awt.Graphics2D
- Translates the origin of the
Graphics2D
context to the
point (x, y) in the current coordinate system.
- translate(int, int) -
Method in class java.awt.Point
- Translates this point, at location (x, y),
by
dx
along the x axis and dy
along the y axis so that it now represents the point
(x
+
dx
,
y
+
dy
).
- translate(int, int) -
Method in class java.awt.Rectangle
- Translates this
Rectangle
the indicated distance,
to the right along the x coordinate axis, and
downward along the y coordinate axis.
- translate(int, int) -
Method in class javax.swing.DebugGraphics
- Overrides
Graphics.translate
.
- translateHTMLToCSS(AttributeSet) -
Method in class javax.swing.text.html.StyleSheet
- Converts a set of HTML attributes to an equivalent
set of CSS attributes.
- 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.
- translatePoint(int, int) -
Method in class java.awt.event.MouseEvent
- Translates the event's coordinates to a new position
by adding specified x (horizontal) and y (veritcal) offsets.
- TRANSLUCENT -
Static variable in interface java.awt.Transparency
- Represents image data that contains or might contain arbitrary
alpha values between and including 0.0 and 1.0.
- Transmitter - interface javax.sound.midi.Transmitter.
- A
Transmitter
sends MidiEvent
objects to one or more
Receivers
. - Transparency - interface java.awt.Transparency.
- The
Transparency
interface defines the common transparency
modes for implementing classes. - tree -
Variable in class javax.swing.tree.DefaultTreeCellEditor
- JTree instance listening too.
- tree -
Variable in class javax.swing.plaf.basic.BasicTreeUI
- Component that we're going to be drawing into.
- TREE -
Static variable in class javax.accessibility.AccessibleRole
- An object used to present hierarchical information to the user.
- TREE_MODEL_PROPERTY -
Static variable in class javax.swing.JTree
- Bound property name for
treeModel
.
- TreeCellEditor - interface javax.swing.tree.TreeCellEditor.
- Adds to CellEditor the extensions necessary to configure an editor
in a tree.
- TreeCellRenderer - interface javax.swing.tree.TreeCellRenderer.
- Defines the requirements for an object that displays a tree node.
- treeCollapsed(TreeExpansionEvent) -
Method in class javax.swing.JTree.AccessibleJTree
- Tree Collapsed notification.
- treeCollapsed(TreeExpansionEvent) -
Method in interface javax.swing.event.TreeExpansionListener
- Called whenever an item in the tree has been collapsed.
- treeCollapsed(TreeExpansionEvent) -
Method in class javax.swing.plaf.basic.BasicTreeUI.TreeExpansionHandler
- Called whenever an item in the tree has been collapsed.
- treeDidChange() -
Method in class javax.swing.JTree
- Sent when the tree has changed enough that we need to resize
the bounds, but not enough that we need to remove the
expanded node set (e.g nodes were expanded or collapsed, or
nodes were inserted into the tree).
- treeExpanded(TreeExpansionEvent) -
Method in class javax.swing.JTree.AccessibleJTree
- Tree Model Expansion notification.
- treeExpanded(TreeExpansionEvent) -
Method in interface javax.swing.event.TreeExpansionListener
- Called whenever an item in the tree has been expanded.
- treeExpanded(TreeExpansionEvent) -
Method in class javax.swing.plaf.basic.BasicTreeUI.TreeExpansionHandler
- Called whenever an item in the tree has been expanded.
- TreeExpansionEvent - class javax.swing.event.TreeExpansionEvent.
- An event used to identify a single path in a tree.
- TreeExpansionEvent(Object, TreePath) -
Constructor for class javax.swing.event.TreeExpansionEvent
- Constructs a TreeExpansionEvent object.
- TreeExpansionListener - interface javax.swing.event.TreeExpansionListener.
- The listener that's notified when a tree expands or collapses
a node.
- 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.
- treeModel -
Variable in class javax.swing.JTree
- The model that defines the tree displayed by this object.
- treeModel -
Variable in class javax.swing.tree.AbstractLayoutCache
- Model providing information.
- treeModel -
Variable in class javax.swing.plaf.basic.BasicTreeUI
- Used to determine what to display.
- TreeModel - interface javax.swing.tree.TreeModel.
- The interface that defines a suitable data model for a JTree.
- TreeModelEvent - class javax.swing.event.TreeModelEvent.
- Encapsulates information describing changes to a tree model, and
used to notify tree model listeners of the change.
- TreeModelEvent(Object, Object[]) -
Constructor for class javax.swing.event.TreeModelEvent
- Used to create an event when the node structure has changed in some way,
identifying the path to the root of a modified subtree as an array of
Objects.
- TreeModelEvent(Object, Object[], int[], Object[]) -
Constructor for class javax.swing.event.TreeModelEvent
- Used to create an event when nodes have been changed, inserted, or
removed, identifying the path to the parent of the modified items as
an array of Objects.
- TreeModelEvent(Object, TreePath) -
Constructor for class javax.swing.event.TreeModelEvent
- Used to create an event when the node structure has changed in some way,
identifying the path to the root of the modified subtree as a TreePath
object.
- TreeModelEvent(Object, TreePath, int[], Object[]) -
Constructor for class javax.swing.event.TreeModelEvent
- Used to create an event when nodes have been changed, inserted, or
removed, identifying the path to the parent of the modified items as
a TreePath object.
- treeModelListener -
Variable in class javax.swing.JTree
- Updates the
expandedState
.
- TreeModelListener - interface javax.swing.event.TreeModelListener.
- Defines the interface for an object that listens
to changes in a TreeModel.
- TreeNode - interface javax.swing.tree.TreeNode.
- Defines the requirements for an object that can be used as a
tree node in a JTree.
- treeNodesChanged(TreeModelEvent) -
Method in class javax.swing.JTree.TreeModelHandler
-
- treeNodesChanged(TreeModelEvent) -
Method in class javax.swing.JTree.AccessibleJTree
- Tree Model Node change notification.
- treeNodesChanged(TreeModelEvent) -
Method in interface javax.swing.event.TreeModelListener
- Invoked after a node (or a set of siblings) has changed in some
way.
- treeNodesChanged(TreeModelEvent) -
Method in class javax.swing.tree.AbstractLayoutCache
- Invoked after a node (or a set of siblings) has changed in some
way.
- treeNodesChanged(TreeModelEvent) -
Method in class javax.swing.tree.VariableHeightLayoutCache
- Invoked after a node (or a set of siblings) has changed in some
way.
- treeNodesChanged(TreeModelEvent) -
Method in class javax.swing.tree.FixedHeightLayoutCache
- Invoked after a node (or a set of siblings) has changed in some
way.
- treeNodesChanged(TreeModelEvent) -
Method in class javax.swing.plaf.basic.BasicTreeUI.TreeModelHandler
-
- treeNodesInserted(TreeModelEvent) -
Method in class javax.swing.JTree.TreeModelHandler
-
- treeNodesInserted(TreeModelEvent) -
Method in class javax.swing.JTree.AccessibleJTree
- Tree Model Node change notification.
- treeNodesInserted(TreeModelEvent) -
Method in interface javax.swing.event.TreeModelListener
- Invoked after nodes have been inserted into the tree.
- treeNodesInserted(TreeModelEvent) -
Method in class javax.swing.tree.AbstractLayoutCache
- Invoked after nodes have been inserted into the tree.
- treeNodesInserted(TreeModelEvent) -
Method in class javax.swing.tree.VariableHeightLayoutCache
- Invoked after nodes have been inserted into the tree.
- treeNodesInserted(TreeModelEvent) -
Method in class javax.swing.tree.FixedHeightLayoutCache
- Invoked after nodes have been inserted into the tree.
- treeNodesInserted(TreeModelEvent) -
Method in class javax.swing.plaf.basic.BasicTreeUI.TreeModelHandler
-
- treeNodesRemoved(TreeModelEvent) -
Method in class javax.swing.JTree.TreeModelHandler
-
- treeNodesRemoved(TreeModelEvent) -
Method in class javax.swing.JTree.AccessibleJTree
- Tree Model Node change notification.
- treeNodesRemoved(TreeModelEvent) -
Method in interface javax.swing.event.TreeModelListener
- Invoked after nodes have been removed from the tree.
- treeNodesRemoved(TreeModelEvent) -
Method in class javax.swing.tree.AbstractLayoutCache
- Invoked after nodes have been removed from the tree.
- treeNodesRemoved(TreeModelEvent) -
Method in class javax.swing.tree.VariableHeightLayoutCache
- Invoked after nodes have been removed from the tree.
- treeNodesRemoved(TreeModelEvent) -
Method in class javax.swing.tree.FixedHeightLayoutCache
- Invoked after nodes have been removed from the tree.
- treeNodesRemoved(TreeModelEvent) -
Method in class javax.swing.plaf.basic.BasicTreeUI.TreeModelHandler
-
- TreePath - class javax.swing.tree.TreePath.
- Represents a path to a node.
- TreePath() -
Constructor for class javax.swing.tree.TreePath
- Primarily provided for subclasses
that represent paths in a different manner.
- TreePath(Object) -
Constructor for class javax.swing.tree.TreePath
- Constructs a TreePath containing only a single element.
- TreePath(Object[]) -
Constructor for class javax.swing.tree.TreePath
- Constructs a path from an array of Objects, uniquely identifying
the path from the root of the tree to a specific node, as returned
by the tree's data model.
- TreePath(Object[], int) -
Constructor for class javax.swing.tree.TreePath
- Constructs a new TreePath with the identified path components of
length
length
.
- TreePath(TreePath, Object) -
Constructor for class javax.swing.tree.TreePath
- Constructs a new TreePath, which is the path identified by
parent
ending in lastElement
.
- TreeSelectionEvent - class javax.swing.event.TreeSelectionEvent.
- An event that characterizes a change in the current
selection.
- TreeSelectionEvent(Object, TreePath[], boolean[], TreePath, TreePath) -
Constructor for class javax.swing.event.TreeSelectionEvent
- Represents a change in the selection of a TreeSelectionModel.
- TreeSelectionEvent(Object, TreePath, boolean, TreePath, TreePath) -
Constructor for class javax.swing.event.TreeSelectionEvent
- Represents a change in the selection of a TreeSelectionModel.
- TreeSelectionListener - interface javax.swing.event.TreeSelectionListener.
- The listener that's notified when the selection in a TreeSelectionModel
changes.
- treeSelectionModel -
Variable in class javax.swing.tree.AbstractLayoutCache
- Selection model.
- treeSelectionModel -
Variable in class javax.swing.plaf.basic.BasicTreeUI
- Model maintaing the selection.
- TreeSelectionModel - interface javax.swing.tree.TreeSelectionModel.
- This interface represents the current state of the selection for
the tree component.
- 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(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(Comparator) -
Constructor for class java.util.TreeSet
- Constructs a new, empty set, sorted according to the given comparator.
- TreeSet(SortedSet) -
Constructor for class java.util.TreeSet
- Constructs a new set containing the same elements as the given sorted
set, sorted according to the same ordering.
- treeState -
Variable in class javax.swing.plaf.basic.BasicTreeUI
- Object responsible for handling sizing and expanded issues.
- treeStructureChanged(TreeModelEvent) -
Method in class javax.swing.JTree.TreeModelHandler
-
- treeStructureChanged(TreeModelEvent) -
Method in class javax.swing.JTree.AccessibleJTree
- Tree Model structure change change notification.
- treeStructureChanged(TreeModelEvent) -
Method in interface javax.swing.event.TreeModelListener
- Invoked after the tree has drastically changed structure from a
given node down.
- treeStructureChanged(TreeModelEvent) -
Method in class javax.swing.tree.AbstractLayoutCache
- Invoked after the tree has drastically changed structure from a
given node down.
- treeStructureChanged(TreeModelEvent) -
Method in class javax.swing.tree.VariableHeightLayoutCache
- Invoked after the tree has drastically changed structure from a
given node down.
- treeStructureChanged(TreeModelEvent) -
Method in class javax.swing.tree.FixedHeightLayoutCache
- Invoked after the tree has drastically changed structure from a
given node down.
- treeStructureChanged(TreeModelEvent) -
Method in class javax.swing.plaf.basic.BasicTreeUI.TreeModelHandler
-
- TreeUI - class javax.swing.plaf.TreeUI.
- Pluggable look and feel interface for JTree.
- TreeUI() -
Constructor for class javax.swing.plaf.TreeUI
-
- treeWillCollapse(TreeExpansionEvent) -
Method in interface javax.swing.event.TreeWillExpandListener
- Invoked whenever a node in the tree is about to be collapsed.
- treeWillExpand(TreeExpansionEvent) -
Method in interface javax.swing.event.TreeWillExpandListener
- Invoked whenever a node in the tree is about to be expanded.
- TreeWillExpandListener - interface javax.swing.event.TreeWillExpandListener.
- The listener that's notified when a tree expands or collapses
a node.
- trim() -
Method in class java.lang.String
- Removes white space from both ends of this string.
- trimEdits(int, int) -
Method in class javax.swing.undo.UndoManager
- Tell the edits in the given range (inclusive) to die, and
remove them from edits.
- trimForLimit() -
Method in class javax.swing.undo.UndoManager
- Reduce the number of queued edits to a range of size limit,
centered on indexOfNextAdd.
- trimToSize() -
Method in class java.util.Vector
- Trims the capacity of this vector to be the vector's current
size.
- 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 javax.swing.DefaultListModel
- Trims the capacity of this list to be the list's current size.
- TRUE -
Static variable in class java.lang.Boolean
- The
Boolean
object corresponding to the primitive
value true
.
- TRUETYPE_FONT -
Static variable in class java.awt.Font
- Create a Font of type TRUETYPE.
- tryToLoadClass(String, ClassLoader) -
Static method in class java.awt.datatransfer.DataFlavor
- tried to load a class from: the bootstrap loader, the system loader,
the context loader (if one is present) and finally the loader specified
- TT -
Static variable in class javax.swing.text.html.HTML.Tag
-
- 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.
- ttype -
Variable in class java.io.StreamTokenizer
- After a call to the
nextToken
method, this field
contains the type of the token just read.
- TUESDAY -
Static variable in class java.util.Calendar
- Value of the
DAY_OF_WEEK
field indicating
Tuesday.
- TUNE_REQUEST -
Static variable in class javax.sound.midi.ShortMessage
- Status byte for Tune Request message (0xF6, or 246).
- TWO_SIDED_LONG_EDGE -
Static variable in class java.awt.JobAttributes.SidesType
- The SidesType instance to use for specifying that consecutive job
pages should be printed upon front and back sides of consecutive
media sheets, such that the orientation of each pair of pages on
the medium would be correct for the reader as if for binding on
the long edge.
- TWO_SIDED_SHORT_EDGE -
Static variable in class java.awt.JobAttributes.SidesType
- The SidesType instance to use for specifying that consecutive job
pages should be printed upon front and back sides of consecutive
media sheets, such that the orientation of each pair of pages on
the medium would be correct for the reader as if for binding on
the short edge.
- type -
Variable in class javax.sound.midi.MidiFileFormat
- The type of MIDI file.
- type -
Variable in class javax.naming.event.NamingEvent
- Contains the type of this event.
- type -
Variable in class javax.swing.JTable.AccessibleJTable.AccessibleJTableModelChange
-
- type -
Variable in class javax.swing.event.TableModelEvent
-
- type -
Variable in class javax.swing.text.html.parser.AttributeList
-
- type -
Variable in class javax.swing.text.html.parser.ContentModel
- Type.
- type -
Variable in class javax.swing.text.html.parser.Element
-
- type -
Variable in class javax.swing.text.html.parser.Entity
-
- type -
Variable in class org.omg.CORBA.UnionMember
- The type of the union member described by this
UnionMember
object.
- type -
Variable in class org.omg.CORBA.StructMember
- The type of the struct member described by
this
StructMember
object.
- type -
Variable in class org.omg.CORBA.ValueMember
- The type of the
value
member described by this
ValueMember
object.
- TYPE -
Static variable in class java.lang.Character
- The Class object representing the primitive type char.
- TYPE -
Static variable in class java.lang.Long
- The Class object representing the primitive type long.
- TYPE -
Static variable in class java.lang.Void
- The Class object representing the primitive Java type void.
- TYPE -
Static variable in class java.lang.Short
- The Class object representing the primitive type short.
- TYPE -
Static variable in class java.lang.Float
- The Class object representing the primitive type float.
- TYPE -
Static variable in class java.lang.Integer
- The Class object representing the primitive type int.
- TYPE -
Static variable in class java.lang.Byte
- The Class object representing the primitive type byte.
- TYPE -
Static variable in class java.lang.Double
- The Class object representing the primitive type double.
- TYPE -
Static variable in class java.lang.Boolean
- The Class object representing the primitive type boolean.
- TYPE -
Static variable in class javax.swing.text.html.HTML.Attribute
-
- TYPE_2CLR -
Static variable in class java.awt.color.ColorSpace
- Generic 2 component color spaces.
- TYPE_3BYTE_BGR -
Static variable in class java.awt.image.BufferedImage
- Represents an image with 8-bit RGB color components, corresponding
to a Windows-style BGR color model) with the colors Blue, Green,
and Red stored in 3 bytes.
- TYPE_3CLR -
Static variable in class java.awt.color.ColorSpace
- Generic 3 component color spaces.
- TYPE_4BYTE_ABGR -
Static variable in class java.awt.image.BufferedImage
- Represents an image with 8-bit RGBA color components with the colors
Blue, Green, and Red stored in 3 bytes and 1 byte of alpha.
- TYPE_4BYTE_ABGR_PRE -
Static variable in class java.awt.image.BufferedImage
- Represents an image with 8-bit RGBA color components with the colors
Blue, Green, and Red stored in 3 bytes and 1 byte of alpha.
- TYPE_4CLR -
Static variable in class java.awt.color.ColorSpace
- Generic 4 component color spaces.
- TYPE_5CLR -
Static variable in class java.awt.color.ColorSpace
- Generic 5 component color spaces.
- TYPE_6CLR -
Static variable in class java.awt.color.ColorSpace
- Generic 6 component color spaces.
- TYPE_7CLR -
Static variable in class java.awt.color.ColorSpace
- Generic 7 component color spaces.
- TYPE_8CLR -
Static variable in class java.awt.color.ColorSpace
- Generic 8 component color spaces.
- TYPE_9CLR -
Static variable in class java.awt.color.ColorSpace
- Generic 9 component color spaces.
- TYPE_ACLR -
Static variable in class java.awt.color.ColorSpace
- Generic 10 component color spaces.
- TYPE_BCLR -
Static variable in class java.awt.color.ColorSpace
- Generic 11 component color spaces.
- TYPE_BILINEAR -
Static variable in class java.awt.image.AffineTransformOp
- Bilinear interpolation type.
- TYPE_BYTE -
Static variable in class java.awt.image.DataBuffer
- Tag for unsigned byte data.
- TYPE_BYTE_BINARY -
Static variable in class java.awt.image.BufferedImage
- Represents an opaque byte-packed binary image.
- TYPE_BYTE_GRAY -
Static variable in class java.awt.image.BufferedImage
- Represents a unsigned byte grayscale image, non-indexed.
- TYPE_BYTE_INDEXED -
Static variable in class java.awt.image.BufferedImage
- Represents an indexed byte image.
- TYPE_CCLR -
Static variable in class java.awt.color.ColorSpace
- Generic 12 component color spaces.
- TYPE_CMY -
Static variable in class java.awt.color.ColorSpace
- Any of the family of CMY color spaces.
- TYPE_CMYK -
Static variable in class java.awt.color.ColorSpace
- Any of the family of CMYK color spaces.
- TYPE_CUSTOM -
Static variable in class java.awt.image.BufferedImage
- Image type is not recognized so it must be a customized
image.
- TYPE_DCLR -
Static variable in class java.awt.color.ColorSpace
- Generic 13 component color spaces.
- type_def -
Variable in class org.omg.CORBA.UnionMember
- The typedef that represents the IDL type of the union member described by this
UnionMember
object.
- type_def -
Variable in class org.omg.CORBA.StructMember
- The typedef that represents the IDL type of the struct member described by
this
StructMember
object.
- type_def -
Variable in class org.omg.CORBA.ValueMember
- The typedef that represents the IDL type of the
value
member described by this ValueMember
object.
- TYPE_DOUBLE -
Static variable in class java.awt.image.DataBuffer
- Tag for double data.
- TYPE_ECLR -
Static variable in class java.awt.color.ColorSpace
- Generic 14 component color spaces.
- TYPE_FCLR -
Static variable in class java.awt.color.ColorSpace
- Generic 15 component color spaces.
- TYPE_FLIP -
Static variable in class java.awt.geom.AffineTransform
- This flag bit indicates that the transform defined by this object
performs a mirror image flip about some axis which changes the
normally right handed coordinate system into a left handed
system in addition to the conversions indicated by other flag bits.
- TYPE_FLOAT -
Static variable in class java.awt.image.DataBuffer
- Tag for float data.
- TYPE_FORWARD_ONLY -
Static variable in interface java.sql.ResultSet
- The constant indicating the type for a
ResultSet
object
whose cursor may move only forward.
- TYPE_GENERAL_ROTATION -
Static variable in class java.awt.geom.AffineTransform
- This flag bit indicates that the transform defined by this object
performs a rotation by an arbitrary angle in addition to the
conversions indicated by other flag bits.
- TYPE_GENERAL_SCALE -
Static variable in class java.awt.geom.AffineTransform
- This flag bit indicates that the transform defined by this object
performs a general scale in addition to the conversions indicated
by other flag bits.
- TYPE_GENERAL_TRANSFORM -
Static variable in class java.awt.geom.AffineTransform
- This constant indicates that the transform defined by this object
performs an arbitrary conversion of the input coordinates.
- TYPE_GRAY -
Static variable in class java.awt.color.ColorSpace
- Any of the family of GRAY color spaces.
- TYPE_HLS -
Static variable in class java.awt.color.ColorSpace
- Any of the family of HLS color spaces.
- TYPE_HSV -
Static variable in class java.awt.color.ColorSpace
- Any of the family of HSV color spaces.
- TYPE_IDENTITY -
Static variable in class java.awt.geom.AffineTransform
- This constant indicates that the transform defined by this object
is an identity transform.
- TYPE_IMAGE_BUFFER -
Static variable in class java.awt.GraphicsDevice
- Device is an image buffer.
- TYPE_INT -
Static variable in class java.awt.image.DataBuffer
- Tag for int data.
- TYPE_INT_ARGB -
Static variable in class java.awt.image.BufferedImage
- Represents an image with 8-bit RGBA color components packed into
integer pixels.
- TYPE_INT_ARGB_PRE -
Static variable in class java.awt.image.BufferedImage
- Represents an image with 8-bit RGBA color components packed into
integer pixels.
- TYPE_INT_BGR -
Static variable in class java.awt.image.BufferedImage
- Represents an image with 8-bit RGB color components, corresponding
to a Windows- or Solaris- style BGR color model, with the colors
Blue, Green, and Red packed into integer pixels.
- TYPE_INT_RGB -
Static variable in class java.awt.image.BufferedImage
- Represents an image with 8-bit RGB color components packed into
integer pixels.
- TYPE_Lab -
Static variable in class java.awt.color.ColorSpace
- Any of the family of Lab color spaces.
- TYPE_Luv -
Static variable in class java.awt.color.ColorSpace
- Any of the family of Luv color spaces.
- TYPE_MASK_ROTATION -
Static variable in class java.awt.geom.AffineTransform
- This constant is a bit mask for any of the rotation flag bits.
- TYPE_MASK_SCALE -
Static variable in class java.awt.geom.AffineTransform
- This constant is a bit mask for any of the scale flag bits.
- type_modifier() -
Method in class org.omg.CORBA.TypeCode
- Returns a constant indicating the modifier of the value type
that this
TypeCode
object describes.
- TYPE_NEAREST_NEIGHBOR -
Static variable in class java.awt.image.AffineTransformOp
- Nearest-neighbor interpolation type.
- TYPE_PRINTER -
Static variable in class java.awt.GraphicsDevice
- Device is a printer.
- TYPE_QUADRANT_ROTATION -
Static variable in class java.awt.geom.AffineTransform
- This flag bit indicates that the transform defined by this object
performs a quadrant rotation by some multiple of 90 degrees in
addition to the conversions indicated by other flag bits.
- TYPE_RASTER_SCREEN -
Static variable in class java.awt.GraphicsDevice
- Device is a raster screen.
- TYPE_RGB -
Static variable in class java.awt.color.ColorSpace
- Any of the family of RGB color spaces.
- TYPE_SCROLL_INSENSITIVE -
Static variable in interface java.sql.ResultSet
- The constant indicating the type for a
ResultSet
object
that is scrollable but generally not sensitive to changes made by others.
- TYPE_SCROLL_SENSITIVE -
Static variable in interface java.sql.ResultSet
- The constant indicating the type for a
ResultSet
object
that is scrollable and generally sensitive to changes made by others.
- TYPE_SHORT -
Static variable in class java.awt.image.DataBuffer
- Tag for signed short data.
- TYPE_TRANSLATION -
Static variable in class java.awt.geom.AffineTransform
- This flag bit indicates that the transform defined by this object
performs a translation in addition to the conversions indicated
by other flag bits.
- TYPE_UNDEFINED -
Static variable in class java.awt.image.DataBuffer
- Tag for undefined data
- TYPE_UNIFORM_SCALE -
Static variable in class java.awt.geom.AffineTransform
- This flag bit indicates that the transform defined by this object
performs a uniform scale in addition to the conversions indicated
by other flag bits.
- TYPE_USHORT -
Static variable in class java.awt.image.DataBuffer
- Tag for unsigned short data.
- TYPE_USHORT_555_RGB -
Static variable in class java.awt.image.BufferedImage
- Represents an image with 5-5-5 RGB color components (5-bits red,
5-bits green, 5-bits blue) with no alpha.
- TYPE_USHORT_565_RGB -
Static variable in class java.awt.image.BufferedImage
- Represents an image with 5-6-5 RGB color components (5-bits red,
6-bits green, 5-bits blue) with no alpha.
- TYPE_USHORT_GRAY -
Static variable in class java.awt.image.BufferedImage
- Represents an unsigned short grayscale image, non-indexed).
- TYPE_XYZ -
Static variable in class java.awt.color.ColorSpace
- Any of the family of XYZ color spaces.
- TYPE_YCbCr -
Static variable in class java.awt.color.ColorSpace
- Any of the family of YCbCr color spaces.
- TYPE_Yxy -
Static variable in class java.awt.color.ColorSpace
- Any of the family of Yxy color spaces.
- type() -
Method in interface org.omg.CORBA.DynAny
- Returns the
TypeCode
of the object inserted into
this DynAny
.
- type() -
Static method in class org.omg.CORBA.UnionMemberHelper
-
- type() -
Static method in class org.omg.CORBA.ServiceInformationHelper
-
- type() -
Static method in class org.omg.CORBA.PolicyListHelper
-
- type() -
Method in class org.omg.CORBA.Any
- Returns type information for the element contained in this
Any
object.
- type() -
Static method in class org.omg.CORBA.NameValuePairHelper
-
- type() -
Static method in class org.omg.CORBA.LongSeqHelper
-
- type() -
Static method in class org.omg.CORBA.OctetSeqHelper
-
- type() -
Static method in class org.omg.CORBA.IdentifierHelper
-
- type() -
Static method in class org.omg.CORBA.FloatSeqHelper
-
- type() -
Static method in class org.omg.CORBA.ServiceDetailHelper
-
- type() -
Static method in class org.omg.CORBA.BooleanSeqHelper
-
- type() -
Static method in class org.omg.CORBA.VisibilityHelper
-
- type() -
Static method in class org.omg.CORBA.ULongSeqHelper
-
- type() -
Static method in class org.omg.CORBA.StringValueHelper
-
- type() -
Static method in class org.omg.CORBA.CharSeqHelper
-
- type() -
Static method in class org.omg.CORBA.SetOverrideTypeHelper
-
- type() -
Static method in class org.omg.CORBA.VersionSpecHelper
-
- type() -
Static method in class org.omg.CORBA.DefinitionKindHelper
-
- type() -
Static method in class org.omg.CORBA.StructMemberHelper
-
- type() -
Static method in class org.omg.CORBA.IDLTypeHelper
-
- type() -
Static method in class org.omg.CORBA.UShortSeqHelper
-
- type() -
Static method in class org.omg.CORBA.WCharSeqHelper
-
- type() -
Static method in class org.omg.CORBA.DoubleSeqHelper
-
- type() -
Static method in class org.omg.CORBA.WStringValueHelper
-
- type() -
Static method in class org.omg.CORBA.PolicyTypeHelper
-
- type() -
Static method in class org.omg.CORBA.ULongLongSeqHelper
-
- type() -
Static method in class org.omg.CORBA.RepositoryIdHelper
-
- type() -
Static method in class org.omg.CORBA.ShortSeqHelper
-
- type() -
Static method in class org.omg.CORBA.ObjectHelper
-
- type() -
Static method in class org.omg.CORBA.CurrentHelper
-
- type() -
Static method in class org.omg.CORBA.LongLongSeqHelper
-
- type() -
Method in class org.omg.CORBA._IDLTypeStub
-
- type() -
Static method in class org.omg.CORBA.CompletionStatusHelper
-
- type() -
Method in interface org.omg.CORBA.IDLTypeOperations
- The type attribute describes the type defined by an object
derived from
IDLType
.
- type() -
Static method in class org.omg.CORBA.FieldNameHelper
-
- type() -
Static method in class org.omg.CORBA.ValueBaseHelper
-
- type() -
Static method in class org.omg.CORBA.PolicyHelper
-
- type() -
Static method in class org.omg.CORBA.AnySeqHelper
-
- type() -
Static method in class org.omg.CORBA.ValueMemberHelper
-
- type() -
Static method in class org.omg.CosNaming.NameHelper
-
- type() -
Static method in class org.omg.CosNaming.IstringHelper
-
- type() -
Static method in class org.omg.CosNaming.BindingListHelper
-
- type() -
Static method in class org.omg.CosNaming.BindingIteratorHelper
-
- type() -
Static method in class org.omg.CosNaming.NameComponentHelper
-
- type() -
Static method in class org.omg.CosNaming.BindingTypeHelper
-
- type() -
Static method in class org.omg.CosNaming.NamingContextHelper
-
- type() -
Static method in class org.omg.CosNaming.BindingHelper
-
- type() -
Static method in class org.omg.CosNaming.NamingContextPackage.AlreadyBoundHelper
-
- type() -
Static method in class org.omg.CosNaming.NamingContextPackage.NotFoundReasonHelper
-
- type() -
Static method in class org.omg.CosNaming.NamingContextPackage.NotFoundHelper
-
- type() -
Static method in class org.omg.CosNaming.NamingContextPackage.CannotProceedHelper
-
- type() -
Static method in class org.omg.CosNaming.NamingContextPackage.InvalidNameHelper
-
- type() -
Static method in class org.omg.CosNaming.NamingContextPackage.NotEmptyHelper
-
- type(TypeCode) -
Method in class org.omg.CORBA.Any
- Sets this
Any
object's type
field
to the given TypeCode
object and clears its value.
- type2name(int) -
Static method in class javax.swing.text.html.parser.AttributeList
-
- TypeCode - class org.omg.CORBA.TypeCode.
- A container for information about a specific CORBA data
type.
- TypeCode() -
Constructor for class org.omg.CORBA.TypeCode
-
- TypeCodeHolder - class org.omg.CORBA.TypeCodeHolder.
- A Holder class for a
TypeCode
object
that is used to store "out" and "inout" parameters in IDL operations. - TypeCodeHolder() -
Constructor for class org.omg.CORBA.TypeCodeHolder
- Constructs a new
TypeCodeHolder
object with its
value
field initialized to null
.
- TypeCodeHolder(TypeCode) -
Constructor for class org.omg.CORBA.TypeCodeHolder
- Constructs a new
TypeCodeHolder
object with its
value
field initialized to the given
TypeCode
object.
- TypeMismatch - exception org.omg.CORBA.DynAnyPackage.TypeMismatch.
- TypeMismatch is thrown by dynamic any accessor methods when
type of the actual contents do not match what is trying to be
accessed.
- TypeMismatch() -
Constructor for class org.omg.CORBA.DynAnyPackage.TypeMismatch
- Constructs a
TypeMismatch
object.
- TypeMismatch(String) -
Constructor for class org.omg.CORBA.DynAnyPackage.TypeMismatch
- Constructs a
TypeMismatch
object.
- typeNoNulls -
Static variable in interface java.sql.DatabaseMetaData
- A possible value for column
NULLABLE
in the
ResultSet
object returned by the method
getTypeInfo
.
- typeNullable -
Static variable in interface java.sql.DatabaseMetaData
- A possible value for column
NULLABLE
in the
ResultSet
object returned by the method
getTypeInfo
.
- typeNullableUnknown -
Static variable in interface java.sql.DatabaseMetaData
- A possible value for column
NULLABLE
in the
ResultSet
object returned by the method
getTypeInfo
.
- typePredBasic -
Static variable in interface java.sql.DatabaseMetaData
- A possible value for column
SEARCHABLE
in the
ResultSet
object returned by the method
getTypeInfo
.
- typePredChar -
Static variable in interface java.sql.DatabaseMetaData
- A possible value for column
SEARCHABLE
in the
ResultSet
object returned by the method
getTypeInfo
.
- typePredNone -
Static variable in interface java.sql.DatabaseMetaData
- A possible value for column
SEARCHABLE
in the
ResultSet
object returned by the method
getTypeInfo
.
- Types - class java.sql.Types.
- The class that defines the constants that are used to identify generic
SQL types, called JDBC types.
- typeSearchable -
Static variable in interface java.sql.DatabaseMetaData
- A possible value for column
SEARCHABLE
in the
ResultSet
object returned by the method
getTypeInfo
.
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z _
Submit a bug or feature
For further API reference and developer documentation, see Java 2 SDK SE Developer Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples. Java, Java 2D, and JDBC are trademarks or registered trademarks of Sun Microsystems, Inc. in the US and other countries.
Copyright 1993-2001 Sun Microsystems, Inc. 901 San Antonio Road
Palo Alto, California, 94303, U.S.A. All Rights Reserved.