当前页面:
在线文档首页 >
JDK 5 Documentation v6.0, Java 2 SDK 英文文档
T-Index (Java Platform SE 6) - JDK 5 Documentation v6.0, 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 in javax.swing.text
- Interface for
View
s that have size dependent upon tabs. - tabAreaBackground -
Variable in class javax.swing.plaf.metal.MetalTabbedPaneUI
-
- tabAreaInsets -
Variable in class javax.swing.plaf.basic.BasicTabbedPaneUI
-
- TABBED_PANE -
Static variable in class javax.swing.plaf.synth.Region
- TabbedPane region.
- TABBED_PANE_CONTENT -
Static variable in class javax.swing.plaf.synth.Region
- Region of a TabbedPane containing the content.
- TABBED_PANE_TAB -
Static variable in class javax.swing.plaf.synth.Region
- Region of a TabbedPane for one tab.
- TABBED_PANE_TAB_AREA -
Static variable in class javax.swing.plaf.synth.Region
- Region of a TabbedPane containing the tabs.
- TabbedPaneUI - Class in javax.swing.plaf
- Pluggable look and feel interface for JTabbedPane.
- TabbedPaneUI() -
Constructor for class javax.swing.plaf.TabbedPaneUI
-
- tabChangeListener -
Variable in class javax.swing.plaf.basic.BasicTabbedPaneUI
-
- TabExpander - Interface in javax.swing.text
- Simple interface to allow for different types of
implementations of tab expansion.
- tabForCoordinate(JTabbedPane, int, int) -
Method in class javax.swing.plaf.basic.BasicTabbedPaneUI
- Returns the tab index which intersects the specified point
in the JTabbedPane's coordinate space.
- tabForCoordinate(JTabbedPane, int, int) -
Method in class javax.swing.plaf.multi.MultiTabbedPaneUI
- Invokes the
tabForCoordinate
method on each UI handled by this object.
- tabForCoordinate(JTabbedPane, int, int) -
Method in class javax.swing.plaf.TabbedPaneUI
-
- tabInsets -
Variable in class javax.swing.plaf.basic.BasicTabbedPaneUI
-
- TABLE -
Static variable in class javax.accessibility.AccessibleRole
- An object used to present information in terms of rows and columns.
- table -
Variable in class javax.swing.plaf.basic.BasicTableUI
-
- TABLE -
Static variable in class javax.swing.plaf.synth.Region
- Table region.
- table -
Variable in class javax.swing.table.JTableHeader
- The table for which this object is the header;
the default is
null
.
- TABLE -
Static variable in class javax.swing.text.html.HTML.Tag
-
- TABLE_HEADER -
Static variable in class javax.swing.plaf.synth.Region
- TableHeader region.
- TableCellEditor - Interface in javax.swing.table
- This interface defines the method any object that would like to be
an editor of values for components such as
JListBox
,
JComboBox
, JTree
, or JTable
needs to implement. - TableCellRenderer - Interface in javax.swing.table
- This interface defines the method required by any object that
would like to be a renderer for cells in a
JTable
. - tableChanged(TableModelEvent) -
Method in interface javax.swing.event.TableModelListener
- This fine grain notification tells listeners the exact range
of cells, rows, or columns that changed.
- tableChanged(TableModelEvent) -
Method in class javax.swing.JTable.AccessibleJTable
- Track changes to the table contents
- tableChanged(TableModelEvent) -
Method in class javax.swing.JTable
- Invoked when this table's
TableModel
generates
a TableModelEvent
.
- TableColumn - Class in javax.swing.table
- A
TableColumn
represents all the attributes of a column in a
JTable
, such as width, resizibility, minimum and maximum width. - TableColumn() -
Constructor for class javax.swing.table.TableColumn
- Cover method, using a default model index of 0,
default width of 75, a
null
renderer and a
null
editor.
- TableColumn(int) -
Constructor for class javax.swing.table.TableColumn
- Cover method, using a default width of 75, a
null
renderer and a null
editor.
- TableColumn(int, int) -
Constructor for class javax.swing.table.TableColumn
- Cover method, using a
null
renderer and a
null
editor.
- TableColumn(int, int, TableCellRenderer, TableCellEditor) -
Constructor for class javax.swing.table.TableColumn
- Creates and initializes an instance of
TableColumn
with the specified model index,
width, cell renderer, and cell editor;
all TableColumn
constructors delegate to this one.
- TableColumnModel - Interface in javax.swing.table
- Defines the requirements for a table column model object suitable for
use with
JTable
. - TableColumnModelEvent - Class in javax.swing.event
- TableColumnModelEvent is used to notify listeners that a table
column model has changed, such as a column was added, removed, or
moved.
- TableColumnModelEvent(TableColumnModel, int, int) -
Constructor for class javax.swing.event.TableColumnModelEvent
- Constructs a
TableColumnModelEvent
object.
- TableColumnModelListener - Interface in javax.swing.event
- TableColumnModelListener defines the interface for an object that listens
to changes in a TableColumnModel.
- tableColumns -
Variable in class javax.swing.table.DefaultTableColumnModel
- Array of TableColumn objects in this model
- tableHeader -
Variable in class javax.swing.JTable
- The
TableHeader
working with the table.
- TableHeaderUI - Class in javax.swing.plaf
- Pluggable look and feel interface for JTableHeader.
- TableHeaderUI() -
Constructor for class javax.swing.plaf.TableHeaderUI
-
- tableIndexClustered -
Static variable in interface java.sql.DatabaseMetaData
- Indicates that this table index is a clustered index.
- tableIndexHashed -
Static variable in interface java.sql.DatabaseMetaData
- Indicates that this table index is a hashed index.
- tableIndexOther -
Static variable in interface java.sql.DatabaseMetaData
- Indicates that this table index is not a clustered
index, a hashed index, or table statistics;
it is something other than these.
- tableIndexStatistic -
Static variable in interface java.sql.DatabaseMetaData
- Indicates that this column contains table statistics that
are returned in conjunction with a table's index descriptions.
- TableModel - Interface in javax.swing.table
- The
TableModel
interface specifies the methods the
JTable
will use to interrogate a tabular data model. - TableModelEvent - Class in javax.swing.event
- TableModelEvent is used to notify listeners that a table model
has changed.
- TableModelEvent(TableModel) -
Constructor for class javax.swing.event.TableModelEvent
- All row data in the table has changed, listeners should discard any state
that was based on the rows and requery the
TableModel
to get the new row count and all the appropriate values.
- TableModelEvent(TableModel, int) -
Constructor for class javax.swing.event.TableModelEvent
- This row of data has been updated.
- TableModelEvent(TableModel, int, int) -
Constructor for class javax.swing.event.TableModelEvent
- The data in rows [firstRow, lastRow] have been updated.
- TableModelEvent(TableModel, int, int, int) -
Constructor for class javax.swing.event.TableModelEvent
- The cells in column column in the range
[firstRow, lastRow] have been updated.
- TableModelEvent(TableModel, int, int, int, int) -
Constructor for class javax.swing.event.TableModelEvent
- The cells from (firstRow, column) to (lastRow, column) have been changed.
- TableModelListener - Interface in javax.swing.event
- TableModelListener defines the interface for an object that listens
to changes in a TableModel.
- tableRowsDeleted(TableModelEvent) -
Method in class javax.swing.JTable.AccessibleJTable
- Track changes to the table contents (row deletions)
- tableRowsInserted(TableModelEvent) -
Method in class javax.swing.JTable.AccessibleJTable
- Track changes to the table contents (row insertions)
- TableRowSorter<M extends TableModel> - Class in javax.swing.table
- An implementation of
RowSorter
that provides sorting
and filtering using a TableModel
. - TableRowSorter() -
Constructor for class javax.swing.table.TableRowSorter
- Creates a
TableRowSorter
with an empty model.
- TableRowSorter(M) -
Constructor for class javax.swing.table.TableRowSorter
- Creates a
TableRowSorter
using model
as the underlying TableModel
.
- TableStringConverter - Class in javax.swing.table
- TableStringConverter is used to convert objects from the model into
strings.
- TableStringConverter() -
Constructor for class javax.swing.table.TableStringConverter
-
- TableUI - Class in javax.swing.plaf
- Pluggable look and feel interface for JTable.
- TableUI() -
Constructor for class javax.swing.plaf.TableUI
-
- TableView - Class in javax.swing.text
-
Implements View interface for a table, that is composed of an
element structure where the child elements of the element
this view is responsible for represent rows and the child
elements of the row elements are cells.
- TableView(Element) -
Constructor for class javax.swing.text.TableView
- Constructs a TableView for the given element.
- TableView.TableCell - Class in javax.swing.text
- Deprecated. A table cell can now be any View implementation.
- TableView.TableCell(Element) -
Constructor for class javax.swing.text.TableView.TableCell
- Deprecated. Constructs a TableCell for the given element.
- TableView.TableRow - Class in javax.swing.text
- View of a row in a row-centric table.
- TableView.TableRow(Element) -
Constructor for class javax.swing.text.TableView.TableRow
- Constructs a TableView for the given element.
- TABLOID -
Static variable in class java.awt.PageAttributes.MediaType
- An alias for LEDGER.
- TABLOID -
Static variable in class javax.print.attribute.standard.MediaSize.Other
- Specifies the tabloid size, 11 inches by 17 inches.
- TABLOID -
Static variable in class javax.print.attribute.standard.MediaSizeName
- tabloid size .
- tabPane -
Variable in class javax.swing.plaf.basic.BasicTabbedPaneUI
-
- tabPlacement -
Variable in class javax.swing.JTabbedPane
- Where the tabs are placed.
- tabRunOverlay -
Variable in class javax.swing.plaf.basic.BasicTabbedPaneUI
-
- tabRuns -
Variable in class javax.swing.plaf.basic.BasicTabbedPaneUI
-
- TabSet -
Static variable in class javax.swing.text.StyleConstants
- TabSet for the paragraph, type is a TabSet containing
TabStops.
- TabSet - Class in javax.swing.text
- A TabSet is comprised of many TabStops.
- TabSet(TabStop[]) -
Constructor for class javax.swing.text.TabSet
- Creates and returns an instance of TabSet.
- tabSizeAttribute -
Static variable in class javax.swing.text.PlainDocument
- Name of the attribute that specifies the tab
size for tabs contained in the content.
- TabStop - Class in javax.swing.text
- This class encapsulates a single tab stop (basically as tab stops
are thought of by RTF).
- TabStop(float) -
Constructor for class javax.swing.text.TabStop
- Creates a tab at position
pos
with a default alignment
and default leader.
- TabStop(float, int, int) -
Constructor for class javax.swing.text.TabStop
- Creates a tab with the specified position
pos
,
alignment align
and leader leader
.
- TabularData - Interface in javax.management.openmbean
- The TabularData interface specifies the behavior of a specific type of complex open data objects
which represent tabular data structures.
- TabularDataSupport - Class in javax.management.openmbean
- The TabularDataSupport class is the open data class which implements the TabularData
and the Map interfaces, and which is internally based on a hash map data structure.
- TabularDataSupport(TabularType) -
Constructor for class javax.management.openmbean.TabularDataSupport
- Creates an empty TabularDataSupport instance whose open-type is tabularType,
and whose underlying HashMap has a default initial capacity (101) and default load factor (0.75).
- TabularDataSupport(TabularType, int, float) -
Constructor for class javax.management.openmbean.TabularDataSupport
- Creates an empty TabularDataSupport instance whose open-type is tabularType,
and whose underlying HashMap has the specified initial capacity and load factor.
- TabularType - Class in javax.management.openmbean
- The
TabularType
class is the open type class
whose instances describe the types of TabularData
values. - TabularType(String, String, CompositeType, String[]) -
Constructor for class javax.management.openmbean.TabularType
- Constructs a
TabularType
instance, checking for the validity of the given parameters.
- tag -
Variable in class org.omg.IOP.TaggedComponent
- The tag, represented as a component id.
- tag -
Variable in class org.omg.IOP.TaggedProfile
- The tag, represented as a profile id.
- TAG_ACNT -
Static variable in interface java.awt.font.OpenType
- Accent attachment.
- TAG_ALTERNATE_IIOP_ADDRESS - Interface in org.omg.IOP
- org/omg/IOP/TAG_ALTERNATE_IIOP_ADDRESS.java .
- TAG_AVAR -
Static variable in interface java.awt.font.OpenType
- Axis variaiton.
- TAG_BASE -
Static variable in interface java.awt.font.OpenType
- Baseline data.
- TAG_BDAT -
Static variable in interface java.awt.font.OpenType
- Bitmap data.
- TAG_BLOC -
Static variable in interface java.awt.font.OpenType
- Bitmap location.
- TAG_BSLN -
Static variable in interface java.awt.font.OpenType
- Baseline table.
- TAG_CFF -
Static variable in interface java.awt.font.OpenType
- Compact font format (Type1 font).
- TAG_CMAP -
Static variable in interface java.awt.font.OpenType
- Character to glyph mapping.
- TAG_CODE_SETS - Interface in org.omg.IOP
- org/omg/IOP/TAG_CODE_SETS.java .
- TAG_CVAR -
Static variable in interface java.awt.font.OpenType
- CVT variation.
- TAG_CVT -
Static variable in interface java.awt.font.OpenType
- Control value table.
- TAG_DSIG -
Static variable in interface java.awt.font.OpenType
- Digital signature.
- TAG_EBDT -
Static variable in interface java.awt.font.OpenType
- Embedded bitmap data.
- TAG_EBLC -
Static variable in interface java.awt.font.OpenType
- Embedded bitmap location.
- TAG_EBSC -
Static variable in interface java.awt.font.OpenType
- Embedded bitmap scaling.
- TAG_FDSC -
Static variable in interface java.awt.font.OpenType
- Font descriptors.
- TAG_FEAT -
Static variable in interface java.awt.font.OpenType
- Feature name.
- TAG_FMTX -
Static variable in interface java.awt.font.OpenType
- Font metrics.
- TAG_FPGM -
Static variable in interface java.awt.font.OpenType
- Font program.
- TAG_FVAR -
Static variable in interface java.awt.font.OpenType
- Font variation.
- TAG_GASP -
Static variable in interface java.awt.font.OpenType
- Grid-fitting and scan conversion procedure.
- TAG_GDEF -
Static variable in interface java.awt.font.OpenType
- Glyph definition.
- TAG_GLYF -
Static variable in interface java.awt.font.OpenType
- Glyph data.
- TAG_GPOS -
Static variable in interface java.awt.font.OpenType
- Glyph positioning.
- TAG_GSUB -
Static variable in interface java.awt.font.OpenType
- Glyph substitution.
- TAG_GVAR -
Static variable in interface java.awt.font.OpenType
- Glyph variation.
- TAG_HDMX -
Static variable in interface java.awt.font.OpenType
- Horizontal device metrics.
- TAG_HEAD -
Static variable in interface java.awt.font.OpenType
- Font header.
- TAG_HHEA -
Static variable in interface java.awt.font.OpenType
- Horizontal metrics header.
- TAG_HMTX -
Static variable in interface java.awt.font.OpenType
- Horizontal metrics.
- TAG_INTERNET_IOP - Interface in org.omg.IOP
- org/omg/IOP/TAG_INTERNET_IOP.java .
- TAG_JAVA_CODEBASE - Interface in org.omg.IOP
- org/omg/IOP/TAG_JAVA_CODEBASE.java .
- TAG_JSTF -
Static variable in interface java.awt.font.OpenType
- Justification.
- TAG_JUST -
Static variable in interface java.awt.font.OpenType
- Justification.
- TAG_KERN -
Static variable in interface java.awt.font.OpenType
- Kerning.
- TAG_LCAR -
Static variable in interface java.awt.font.OpenType
- Ligature caret.
- TAG_LOCA -
Static variable in interface java.awt.font.OpenType
- Index to location.
- TAG_LTSH -
Static variable in interface java.awt.font.OpenType
- Linear threshold.
- TAG_MAXP -
Static variable in interface java.awt.font.OpenType
- Maximum profile.
- TAG_MMFX -
Static variable in interface java.awt.font.OpenType
- Multiple master font metrics.
- TAG_MMSD -
Static variable in interface java.awt.font.OpenType
- Multiple master supplementary data.
- TAG_MORT -
Static variable in interface java.awt.font.OpenType
- Glyph metamorphosis.
- TAG_MULTIPLE_COMPONENTS - Interface in org.omg.IOP
- org/omg/IOP/TAG_MULTIPLE_COMPONENTS.java .
- TAG_NAME -
Static variable in interface java.awt.font.OpenType
- Naming table.
- TAG_OPBD -
Static variable in interface java.awt.font.OpenType
- Optical bounds.
- TAG_ORB_TYPE - Interface in org.omg.IOP
- org/omg/IOP/TAG_ORB_TYPE.java .
- TAG_OS2 -
Static variable in interface java.awt.font.OpenType
- OS/2 and Windows specific metrics.
- TAG_PCLT -
Static variable in interface java.awt.font.OpenType
- PCL 5 data.
- TAG_POLICIES - Interface in org.omg.IOP
- org/omg/IOP/TAG_POLICIES.java .
- TAG_POST -
Static variable in interface java.awt.font.OpenType
- PostScript Information.
- TAG_PREP -
Static variable in interface java.awt.font.OpenType
- CVT preprogram.
- TAG_PROP -
Static variable in interface java.awt.font.OpenType
- Glyph properties.
- TAG_RMI_CUSTOM_MAX_STREAM_FORMAT - Interface in org.omg.IOP
- org/omg/IOP/TAG_RMI_CUSTOM_MAX_STREAM_FORMAT.java .
- TAG_TRAK -
Static variable in interface java.awt.font.OpenType
- Tracking.
- TAG_TYP1 -
Static variable in interface java.awt.font.OpenType
- Adobe Type 1 font data.
- TAG_VDMX -
Static variable in interface java.awt.font.OpenType
- Vertical device metrics.
- TAG_VHEA -
Static variable in interface java.awt.font.OpenType
- Vertical metrics header.
- TAG_VMTX -
Static variable in interface java.awt.font.OpenType
- Vertical metrics.
- TAGALOG -
Static variable in class java.lang.Character.UnicodeBlock
- Constant for the "Tagalog" Unicode character block.
- TAGBANWA -
Static variable in class java.lang.Character.UnicodeBlock
- Constant for the "Tagbanwa" Unicode character block.
- TagElement - Class in javax.swing.text.html.parser
- A generic HTML TagElement class.
- TagElement(Element) -
Constructor for class javax.swing.text.html.parser.TagElement
-
- TagElement(Element, boolean) -
Constructor for class javax.swing.text.html.parser.TagElement
-
- TaggedComponent - Class in org.omg.IOP
- org/omg/IOP/TaggedComponent.java .
- TaggedComponent() -
Constructor for class org.omg.IOP.TaggedComponent
-
- TaggedComponent(int, byte[]) -
Constructor for class org.omg.IOP.TaggedComponent
-
- TaggedComponentHelper - Class in org.omg.IOP
- org/omg/IOP/TaggedComponentHelper.java .
- TaggedComponentHelper() -
Constructor for class org.omg.IOP.TaggedComponentHelper
-
- TaggedComponentHolder - Class in org.omg.IOP
- org/omg/IOP/TaggedComponentHolder.java .
- TaggedComponentHolder() -
Constructor for class org.omg.IOP.TaggedComponentHolder
-
- TaggedComponentHolder(TaggedComponent) -
Constructor for class org.omg.IOP.TaggedComponentHolder
-
- TaggedProfile - Class in org.omg.IOP
- org/omg/IOP/TaggedProfile.java .
- TaggedProfile() -
Constructor for class org.omg.IOP.TaggedProfile
-
- TaggedProfile(int, byte[]) -
Constructor for class org.omg.IOP.TaggedProfile
-
- TaggedProfileHelper - Class in org.omg.IOP
- org/omg/IOP/TaggedProfileHelper.java .
- TaggedProfileHelper() -
Constructor for class org.omg.IOP.TaggedProfileHelper
-
- TaggedProfileHolder - Class in org.omg.IOP
- org/omg/IOP/TaggedProfileHolder.java .
- TaggedProfileHolder() -
Constructor for class org.omg.IOP.TaggedProfileHolder
-
- TaggedProfileHolder(TaggedProfile) -
Constructor for class org.omg.IOP.TaggedProfileHolder
-
- TAGS -
Static variable in class java.lang.Character.UnicodeBlock
- Constant for the "Tags" Unicode character block.
- TAI_LE -
Static variable in class java.lang.Character.UnicodeBlock
- Constant for the "Tai Le" Unicode character block.
- TAI_XUAN_JING_SYMBOLS -
Static variable in class java.lang.Character.UnicodeBlock
- Constant for the "Tai Xuan Jing Symbols" Unicode character block.
- tailMap(K, boolean) -
Method in interface java.util.concurrent.ConcurrentNavigableMap
-
- tailMap(K) -
Method in interface java.util.concurrent.ConcurrentNavigableMap
-
- tailMap(K, boolean) -
Method in class java.util.concurrent.ConcurrentSkipListMap
-
- tailMap(K) -
Method in class java.util.concurrent.ConcurrentSkipListMap
-
- tailMap(K, boolean) -
Method in interface java.util.NavigableMap
- Returns a view of the portion of this map whose keys are greater than (or
equal to, if
inclusive
is true) fromKey
.
- tailMap(K) -
Method in interface java.util.NavigableMap
- Returns a view of the portion of this map whose keys are
greater than or equal to fromKey.
- tailMap(K) -
Method in interface java.util.SortedMap
- Returns a view of the portion of this map whose keys are
greater than or equal to fromKey.
- tailMap(K, boolean) -
Method in class java.util.TreeMap
-
- tailMap(K) -
Method in class java.util.TreeMap
-
- tailSet(E, boolean) -
Method in class java.util.concurrent.ConcurrentSkipListSet
-
- tailSet(E) -
Method in class java.util.concurrent.ConcurrentSkipListSet
-
- tailSet(E, boolean) -
Method in interface java.util.NavigableSet
- Returns a view of the portion of this set whose elements are greater
than (or equal to, if
inclusive
is true) fromElement
.
- tailSet(E) -
Method in interface java.util.NavigableSet
- Returns a view of the portion of this set whose elements are
greater than or equal to fromElement.
- tailSet(E) -
Method in interface java.util.SortedSet
- Returns a view of the portion of this set whose elements are
greater than or equal to fromElement.
- tailSet(E, boolean) -
Method in class java.util.TreeSet
-
- tailSet(E) -
Method in class java.util.TreeSet
-
- TAIWAN -
Static variable in class java.util.Locale
- Useful constant for country.
- take() -
Method in class java.util.concurrent.ArrayBlockingQueue
-
- take() -
Method in interface java.util.concurrent.BlockingDeque
- Retrieves and removes the head of the queue represented by this deque
(in other words, the first element of this deque), waiting if
necessary until an element becomes available.
- take() -
Method in interface java.util.concurrent.BlockingQueue
- Retrieves and removes the head of this queue, waiting if necessary
until an element becomes available.
- take() -
Method in interface java.util.concurrent.CompletionService
- Retrieves and removes the Future representing the next
completed task, waiting if none are yet present.
- take() -
Method in class java.util.concurrent.DelayQueue
- Retrieves and removes the head of this queue, waiting if necessary
until an element with an expired delay is available on this queue.
- take() -
Method in class java.util.concurrent.ExecutorCompletionService
-
- take() -
Method in class java.util.concurrent.LinkedBlockingDeque
-
- take() -
Method in class java.util.concurrent.LinkedBlockingQueue
-
- take() -
Method in class java.util.concurrent.PriorityBlockingQueue
-
- take() -
Method in class java.util.concurrent.SynchronousQueue
- Retrieves and removes the head of this queue, waiting if necessary
for another thread to insert it.
- takeFirst() -
Method in interface java.util.concurrent.BlockingDeque
- Retrieves and removes the first element of this deque, waiting
if necessary until an element becomes available.
- takeFirst() -
Method in class java.util.concurrent.LinkedBlockingDeque
-
- takeLast() -
Method in interface java.util.concurrent.BlockingDeque
- Retrieves and removes the last element of this deque, waiting
if necessary until an element becomes available.
- takeLast() -
Method in class java.util.concurrent.LinkedBlockingDeque
-
- TAMIL -
Static variable in class java.awt.font.NumericShaper
- Identifies the TAMIL range and decimal base.
- TAMIL -
Static variable in class java.lang.Character.UnicodeBlock
- Constant for the "Tamil" Unicode character block.
- tan(double) -
Static method in class java.lang.Math
- Returns the trigonometric tangent of an angle.
- tan(double) -
Static method in class java.lang.StrictMath
- Returns the trigonometric tangent of an angle.
- tanh(double) -
Static method in class java.lang.Math
- Returns the hyperbolic tangent of a
double
value.
- tanh(double) -
Static method in class java.lang.StrictMath
- Returns the hyperbolic tangent of a
double
value.
- target -
Variable in class java.awt.Event
- The target component.
- Target - Annotation Type in java.lang.annotation
- Indicates the kinds of program element to which an annotation type
is applicable.
- TARGET -
Static variable in class javax.swing.text.html.HTML.Attribute
-
- target() -
Method in class org.omg.CORBA.Request
- Retrieves the the target object reference.
- target() -
Method in interface org.omg.PortableInterceptor.ClientRequestInfoOperations
- Returns the object which the client called to perform the
operation.
- target_is_a(String) -
Method in interface org.omg.PortableInterceptor.ServerRequestInfoOperations
- Returns true if the servant is the given repository id,
false if it is not.
- target_most_derived_interface() -
Method in interface org.omg.PortableInterceptor.ServerRequestInfoOperations
- Returns the repository id for the most derived interface of the
servant.
- TargetDataLine - Interface in javax.sound.sampled
- A target data line is a type of
DataLine
from which
audio data can be read. - TargetedNotification - Class in javax.management.remote
- A (Notification, Listener ID) pair.
- TargetedNotification(Notification, Integer) -
Constructor for class javax.management.remote.TargetedNotification
- Constructs a
TargetedNotification
object.
- targetMustExist() -
Method in interface javax.naming.event.EventContext
- Determines whether a listener can register interest in a target
that does not exist.
- TC_ARRAY -
Static variable in interface java.io.ObjectStreamConstants
- new Array.
- TC_BASE -
Static variable in interface java.io.ObjectStreamConstants
- First tag value.
- TC_BLOCKDATA -
Static variable in interface java.io.ObjectStreamConstants
- Block of optional data.
- TC_BLOCKDATALONG -
Static variable in interface java.io.ObjectStreamConstants
- long Block data.
- TC_CLASS -
Static variable in interface java.io.ObjectStreamConstants
- Reference to Class.
- TC_CLASSDESC -
Static variable in interface java.io.ObjectStreamConstants
- new Class Descriptor.
- TC_ENDBLOCKDATA -
Static variable in interface java.io.ObjectStreamConstants
- End of optional block data blocks for an object.
- TC_ENUM -
Static variable in interface java.io.ObjectStreamConstants
- new Enum constant.
- TC_EXCEPTION -
Static variable in interface java.io.ObjectStreamConstants
- Exception during write.
- TC_LONGSTRING -
Static variable in interface java.io.ObjectStreamConstants
- Long string.
- TC_MAX -
Static variable in interface java.io.ObjectStreamConstants
- Last tag value.
- TC_NULL -
Static variable in interface java.io.ObjectStreamConstants
- Null object reference.
- TC_OBJECT -
Static variable in interface java.io.ObjectStreamConstants
- new Object.
- TC_PROXYCLASSDESC -
Static variable in interface java.io.ObjectStreamConstants
- new Proxy Class Descriptor.
- TC_REFERENCE -
Static variable in interface java.io.ObjectStreamConstants
- Reference to an object already written into the stream.
- TC_RESET -
Static variable in interface java.io.ObjectStreamConstants
- Reset stream context.
- TC_STRING -
Static variable in interface java.io.ObjectStreamConstants
- new String.
- TCKind - Class in org.omg.CORBA
- The Java mapping of the IDL enum
TCKind
, which
specifies the kind of a TypeCode
object. - TCKind(int) -
Constructor for class org.omg.CORBA.TCKind
- Deprecated. Do not use this constructor as this method should be private
according to the OMG specification. Use
TCKind.from_int(int)
instead.
- TCP_NODELAY -
Static variable in interface java.net.SocketOptions
- Disable Nagle's algorithm for this connection.
- TD -
Static variable in class javax.swing.text.html.HTML.Tag
-
- TELUGU -
Static variable in class java.awt.font.NumericShaper
- Identifies the TELUGU range and decimal base.
- TELUGU -
Static variable in class java.lang.Character.UnicodeBlock
- Constant for the "Telugu" Unicode character block.
- Templates - Interface in javax.xml.transform
- An object that implements this interface is the runtime representation of processed
transformation instructions.
- TemplatesHandler - Interface in javax.xml.transform.sax
- A SAX ContentHandler that may be used to process SAX
parse events (parsing transformation instructions) into a Templates object.
- TEN -
Static variable in class java.math.BigDecimal
- The value 10, with a scale of 0.
- TEN -
Static variable in class java.math.BigInteger
- The BigInteger constant ten.
- terminated() -
Method in class java.util.concurrent.ThreadPoolExecutor
- Method invoked when the Executor has terminated.
- TERTIARY -
Static variable in class java.text.Collator
- Collator strength value.
- tertiaryOrder(int) -
Static method in class java.text.CollationElementIterator
- Return the tertiary component of a collation element.
- testBit(int) -
Method in class java.math.BigInteger
- Returns true if and only if the designated bit is set.
- TEXT -
Static variable in class java.awt.SystemColor
- The array index for the
SystemColor.text
system color.
- text -
Static variable in class java.awt.SystemColor
- The color rendered for the background of text control objects, such as
textfields and comboboxes.
- TEXT -
Static variable in class javax.accessibility.AccessibleRole
- An object that presents text to the user.
- text -
Variable in class javax.accessibility.AccessibleTextSequence
- The text
- text(Element) -
Method in class javax.swing.text.AbstractWriter
- Writes out text.
- TEXT -
Static variable in class javax.swing.text.html.HTML.Attribute
-
- text(Element) -
Method in class javax.swing.text.html.HTMLWriter
- Writes out text.
- text(Element) -
Method in class javax.swing.text.html.MinimalHTMLWriter
- Writes out text.
- Text - Interface in javax.xml.soap
- A representation of a node whose value is text.
- Text - Interface in org.w3c.dom
- The
Text
interface inherits from CharacterData
and represents the textual content (termed character data in XML) of an Element
or Attr
. - TEXT_ALIGN -
Static variable in class javax.swing.text.html.CSS.Attribute
-
- TEXT_AREA -
Static variable in class javax.swing.plaf.synth.Region
- TextArea region.
- TEXT_BACKGROUND -
Static variable in class javax.swing.plaf.synth.ColorType
- ColorType for the background of a region.
- TEXT_CHANGED_PROPERTY -
Static variable in class javax.swing.AbstractButton
- Identifies a change in the button's text.
- TEXT_CURSOR -
Static variable in class java.awt.Cursor
- The text cursor type.
- TEXT_CURSOR -
Static variable in class java.awt.Frame
- Deprecated. replaced by
Cursor.TEXT_CURSOR
.
- TEXT_DECORATION -
Static variable in class javax.swing.text.html.CSS.Attribute
-
- TEXT_EVENT_MASK -
Static variable in class java.awt.AWTEvent
- The event mask for selecting text events.
- TEXT_FIELD -
Static variable in class javax.swing.plaf.synth.Region
- TextField region.
- TEXT_FIRST -
Static variable in class java.awt.event.TextEvent
- The first number in the range of ids used for text events.
- TEXT_FOREGROUND -
Static variable in class javax.swing.plaf.synth.ColorType
- ColorType for the foreground of a region.
- TEXT_HIGHLIGHT -
Static variable in class java.awt.SystemColor
- The array index for the
SystemColor.textHighlight
system color.
- TEXT_HIGHLIGHT_TEXT -
Static variable in class java.awt.SystemColor
- The array index for the
SystemColor.textHighlightText
system color.
- TEXT_HTML -
Static variable in class javax.print.DocFlavor.CHAR_ARRAY
- Doc flavor with MIME type =
"text/html;
charset=utf-16"
, print data representation class name =
"[C"
(character array).
- TEXT_HTML -
Static variable in class javax.print.DocFlavor.READER
- Doc flavor with MIME type =
"text/html;
charset=utf-16"
, print data representation class name =
"java.io.Reader"
(character stream).
- TEXT_HTML -
Static variable in class javax.print.DocFlavor.STRING
- Doc flavor with MIME type =
"text/html;
charset=utf-16"
, print data representation class name =
"java.lang.String"
.
- TEXT_HTML_HOST -
Static variable in class javax.print.DocFlavor.BYTE_ARRAY
- Doc flavor with MIME type =
"text/html"
,
encoded in the host platform encoding.
- TEXT_HTML_HOST -
Static variable in class javax.print.DocFlavor.INPUT_STREAM
- Doc flavor with MIME type =
"text/html"
,
encoded in the host platform encoding.
- TEXT_HTML_HOST -
Static variable in class javax.print.DocFlavor.URL
- Doc flavor with MIME type =
"text/html"
,
encoded in the host platform encoding.
- TEXT_HTML_US_ASCII -
Static variable in class javax.print.DocFlavor.BYTE_ARRAY
- Doc flavor with MIME type =
"text/html; charset=us-ascii"
,
print data representation class name =
"[B"
(byte array).
- TEXT_HTML_US_ASCII -
Static variable in class javax.print.DocFlavor.INPUT_STREAM
- Doc flavor with MIME type =
"text/html; charset=us-ascii"
,
print data representation class name =
"java.io.InputStream"
(byte stream).
- TEXT_HTML_US_ASCII -
Static variable in class javax.print.DocFlavor.URL
- Doc flavor with MIME type =
"text/html; charset=us-ascii"
,
print data representation class name =
"java.net.URL"
(byte stream).
- TEXT_HTML_UTF_16 -
Static variable in class javax.print.DocFlavor.BYTE_ARRAY
- Doc flavor with MIME type =
"text/html; charset=utf-16"
,
print data representation class name = "[B"
(byte
array).
- TEXT_HTML_UTF_16 -
Static variable in class javax.print.DocFlavor.INPUT_STREAM
- Doc flavor with MIME type =
"text/html; charset=utf-16"
,
print data representation class name =
"java.io.InputStream"
(byte stream).
- TEXT_HTML_UTF_16 -
Static variable in class javax.print.DocFlavor.URL
- Doc flavor with MIME type =
"text/html; charset=utf-16"
,
print data representation class name =
"java.net.URL"
(byte stream).
- TEXT_HTML_UTF_16BE -
Static variable in class javax.print.DocFlavor.BYTE_ARRAY
- Doc flavor with MIME type =
"text/html; charset=utf-16be"
(big-endian byte ordering),
print data representation class name = "[B"
(byte
array).
- TEXT_HTML_UTF_16BE -
Static variable in class javax.print.DocFlavor.INPUT_STREAM
- Doc flavor with MIME type =
"text/html; charset=utf-16be"
(big-endian byte ordering),
print data representation class name =
"java.io.InputStream"
(byte stream).
- TEXT_HTML_UTF_16BE -
Static variable in class javax.print.DocFlavor.URL
- Doc flavor with MIME type =
"text/html; charset=utf-16be"
(big-endian byte ordering),
print data representation class name =
"java.net.URL"
(byte stream).
- TEXT_HTML_UTF_16LE -
Static variable in class javax.print.DocFlavor.BYTE_ARRAY
- Doc flavor with MIME type =
"text/html; charset=utf-16le"
(little-endian byte ordering),
print data representation class name = "[B"
(byte
array).
- TEXT_HTML_UTF_16LE -
Static variable in class javax.print.DocFlavor.INPUT_STREAM
- Doc flavor with MIME type =
"text/html; charset=utf-16le"
(little-endian byte ordering),
print data representation class name =
"java.io.InputStream"
(byte stream).
- TEXT_HTML_UTF_16LE -
Static variable in class javax.print.DocFlavor.URL
- Doc flavor with MIME type =
"text/html; charset=utf-16le"
(little-endian byte ordering),
print data representation class name =
"java.net.URL"
(byte stream).
- TEXT_HTML_UTF_8 -
Static variable in class javax.print.DocFlavor.BYTE_ARRAY
- Doc flavor with MIME type =
"text/html; charset=utf-8"
,
print data representation class name = "[B"
(byte
array).
- TEXT_HTML_UTF_8 -
Static variable in class javax.print.DocFlavor.INPUT_STREAM
- Doc flavor with MIME type =
"text/html; charset=utf-8"
,
print data representation class name =
"java.io.InputStream"
(byte stream).
- TEXT_HTML_UTF_8 -
Static variable in class javax.print.DocFlavor.URL
- Doc flavor with MIME type =
"text/html; charset=utf-8"
,
print data representation class name =
"java.net.URL"
(byte stream).
- TEXT_INACTIVE_TEXT -
Static variable in class java.awt.SystemColor
- The array index for the
SystemColor.textInactiveText
system color.
- TEXT_INDENT -
Static variable in class javax.swing.text.html.CSS.Attribute
-
- TEXT_INSET_H -
Static variable in class javax.swing.border.TitledBorder
-
- TEXT_LAST -
Static variable in class java.awt.event.TextEvent
- The last number in the range of ids used for text events.
- TEXT_NODE -
Static variable in interface org.w3c.dom.Node
- The node is a
Text
node.
- TEXT_PANE -
Static variable in class javax.swing.plaf.synth.Region
- TextPane region.
- TEXT_PLAIN -
Static variable in class javax.print.DocFlavor.CHAR_ARRAY
- Doc flavor with MIME type =
"text/plain;
charset=utf-16"
, print data representation class name =
"[C"
(character array).
- TEXT_PLAIN -
Static variable in class javax.print.DocFlavor.READER
- Doc flavor with MIME type =
"text/plain;
charset=utf-16"
, print data representation class name =
"java.io.Reader"
(character stream).
- TEXT_PLAIN -
Static variable in class javax.print.DocFlavor.STRING
- Doc flavor with MIME type =
"text/plain;
charset=utf-16"
, print data representation class name =
"java.lang.String"
.
- TEXT_PLAIN_HOST -
Static variable in class javax.print.DocFlavor.BYTE_ARRAY
- Doc flavor with MIME type =
"text/plain"
,
encoded in the host platform encoding.
- TEXT_PLAIN_HOST -
Static variable in class javax.print.DocFlavor.INPUT_STREAM
- Doc flavor with MIME type =
"text/plain"
,
encoded in the host platform encoding.
- TEXT_PLAIN_HOST -
Static variable in class javax.print.DocFlavor.URL
- Doc flavor with MIME type =
"text/plain"
,
encoded in the host platform encoding.
- TEXT_PLAIN_US_ASCII -
Static variable in class javax.print.DocFlavor.BYTE_ARRAY
- Doc flavor with MIME type =
"text/plain; charset=us-ascii"
,
print data representation class name =
"[B"
(byte array).
- TEXT_PLAIN_US_ASCII -
Static variable in class javax.print.DocFlavor.INPUT_STREAM
- Doc flavor with MIME type =
"text/plain; charset=us-ascii"
,
print data representation class name =
"java.io.InputStream"
(byte stream).
- TEXT_PLAIN_US_ASCII -
Static variable in class javax.print.DocFlavor.URL
- Doc flavor with MIME type =
"text/plain; charset=us-ascii"
,
print data representation class name =
"java.net.URL"
(byte stream).
- TEXT_PLAIN_UTF_16 -
Static variable in class javax.print.DocFlavor.BYTE_ARRAY
- Doc flavor with MIME type =
"text/plain; charset=utf-16"
,
print data representation class name = "[B"
(byte
array).
- TEXT_PLAIN_UTF_16 -
Static variable in class javax.print.DocFlavor.INPUT_STREAM
- Doc flavor with MIME type =
"text/plain; charset=utf-16"
,
print data representation class name =
"java.io.InputStream"
(byte stream).
- TEXT_PLAIN_UTF_16 -
Static variable in class javax.print.DocFlavor.URL
- Doc flavor with MIME type =
"text/plain; charset=utf-16"
,
print data representation class name =
java.net.URL""
(byte stream).
- TEXT_PLAIN_UTF_16BE -
Static variable in class javax.print.DocFlavor.BYTE_ARRAY
- Doc flavor with MIME type =
"text/plain; charset=utf-16be"
(big-endian byte ordering),
print data representation class name = "[B"
(byte
array).
- TEXT_PLAIN_UTF_16BE -
Static variable in class javax.print.DocFlavor.INPUT_STREAM
- Doc flavor with MIME type =
"text/plain; charset=utf-16be"
(big-endian byte ordering),
print data representation class name =
"java.io.InputStream"
(byte stream).
- TEXT_PLAIN_UTF_16BE -
Static variable in class javax.print.DocFlavor.URL
- Doc flavor with MIME type =
"text/plain; charset=utf-16be"
(big-endian byte ordering),
print data representation class name =
"java.net.URL"
(byte stream).
- TEXT_PLAIN_UTF_16LE -
Static variable in class javax.print.DocFlavor.BYTE_ARRAY
- Doc flavor with MIME type =
"text/plain; charset=utf-16le"
(little-endian byte ordering),
print data representation class name = "[B"
(byte
array).
- TEXT_PLAIN_UTF_16LE -
Static variable in class javax.print.DocFlavor.INPUT_STREAM
- Doc flavor with MIME type =
"text/plain; charset=utf-16le"
(little-endian byte ordering),
print data representation class name =
"java.io.InputStream"
(byte stream).
- TEXT_PLAIN_UTF_16LE -
Static variable in class javax.print.DocFlavor.URL
- Doc flavor with MIME type =
"text/plain; charset=utf-16le"
(little-endian byte ordering),
print data representation class name =
"java.net.URL"
(byte stream).
- TEXT_PLAIN_UTF_8 -
Static variable in class javax.print.DocFlavor.BYTE_ARRAY
- Doc flavor with MIME type =
"text/plain; charset=utf-8"
,
print data representation class name = "[B"
(byte
array).
- TEXT_PLAIN_UTF_8 -
Static variable in class javax.print.DocFlavor.INPUT_STREAM
- Doc flavor with MIME type =
"text/plain; charset=utf-8"
,
print data representation class name =
"java.io.InputStream"
(byte stream).
- TEXT_PLAIN_UTF_8 -
Static variable in class javax.print.DocFlavor.URL
- Doc flavor with MIME type =
"text/plain; charset=utf-8"
,
print data representation class name =
"java.net.URL"
(byte stream).
- TEXT_SPACING -
Static variable in class javax.swing.border.TitledBorder
-
- TEXT_TEXT -
Static variable in class java.awt.SystemColor
- The array index for the
SystemColor.textText
system color.
- TEXT_TRANSFORM -
Static variable in class javax.swing.text.html.CSS.Attribute
-
- TEXT_VALUE_CHANGED -
Static variable in class java.awt.event.TextEvent
- This event id indicates that object's text changed.
- TextAction - Class in javax.swing.text
- An Action implementation useful for key bindings that are
shared across a number of different text components.
- TextAction(String) -
Constructor for class javax.swing.text.TextAction
- Creates a new JTextAction object.
- TextArea - Class in java.awt
- A
TextArea
object is a multi-line region
that displays text. - TextArea() -
Constructor for class java.awt.TextArea
- Constructs a new text area with the empty string as text.
- TextArea(String) -
Constructor for class java.awt.TextArea
- Constructs a new text area with the specified text.
- TextArea(int, int) -
Constructor for class java.awt.TextArea
- Constructs a new text area with the specified number of
rows and columns and the empty string as text.
- TextArea(String, int, int) -
Constructor for class java.awt.TextArea
- Constructs a new text area with the specified text,
and with the specified number of rows and columns.
- TextArea(String, int, int, int) -
Constructor for class java.awt.TextArea
- Constructs a new text area with the specified text,
and with the rows, columns, and scroll bar visibility
as specified.
- TEXTAREA -
Static variable in class javax.swing.text.html.HTML.Tag
-
- TextArea.AccessibleAWTTextArea - Class in java.awt
- This class implements accessibility support for the
TextArea
class. - TextArea.AccessibleAWTTextArea() -
Constructor for class java.awt.TextArea.AccessibleAWTTextArea
-
- textAreaContent(char[]) -
Method in class javax.swing.text.html.HTMLDocument.HTMLReader
- Adds the given content to the textarea document.
- textAreaContent(AttributeSet) -
Method in class javax.swing.text.html.HTMLWriter
- Writes out text that is contained in a TEXTAREA form
element.
- TextAttribute - Class in java.awt.font
- The
TextAttribute
class defines attribute keys and
attribute values used for text rendering. - TextAttribute(String) -
Constructor for class java.awt.font.TextAttribute
- Constructs a
TextAttribute
with the specified name.
- TextComponent - Class in java.awt
- The
TextComponent
class is the superclass of
any component that allows the editing of some text. - TextComponent.AccessibleAWTTextComponent - Class in java.awt
- This class implements accessibility support for the
TextComponent
class. - TextComponent.AccessibleAWTTextComponent() -
Constructor for class java.awt.TextComponent.AccessibleAWTTextComponent
- Constructs an AccessibleAWTTextComponent.
- TextEvent - Class in java.awt.event
- A semantic event which indicates that an object's text changed.
- TextEvent(Object, int) -
Constructor for class java.awt.event.TextEvent
- Constructs a
TextEvent
object.
- TextField - Class in java.awt
- A
TextField
object is a text component
that allows for the editing of a single line of text. - TextField() -
Constructor for class java.awt.TextField
- Constructs a new text field.
- TextField(String) -
Constructor for class java.awt.TextField
- Constructs a new text field initialized with the specified text.
- TextField(int) -
Constructor for class java.awt.TextField
- Constructs a new empty text field with the specified number
of columns.
- TextField(String, int) -
Constructor for class java.awt.TextField
- Constructs a new text field initialized with the specified text
to be displayed, and wide enough to hold the specified
number of columns.
- TextField.AccessibleAWTTextField - Class in java.awt
- This class implements accessibility support for the
TextField
class. - TextField.AccessibleAWTTextField() -
Constructor for class java.awt.TextField.AccessibleAWTTextField
-
- textHighlight -
Static variable in class java.awt.SystemColor
- The color rendered for the background of selected items, such as in menus,
comboboxes, and text.
- textHighlightText -
Static variable in class java.awt.SystemColor
- The color rendered for the text of selected items, such as in menus, comboboxes,
and text.
- TextHitInfo - Class in java.awt.font
- The
TextHitInfo
class represents a character position in a
text model, and a bias, or "side," of the character. - textIconGap -
Variable in class javax.swing.plaf.basic.BasicTabbedPaneUI
-
- textInactiveText -
Static variable in class java.awt.SystemColor
- The color rendered for the text of inactive items, such as in menus.
- TextInputCallback - Class in javax.security.auth.callback
- Underlying security services instantiate and pass a
TextInputCallback
to the handle
method of a CallbackHandler
to retrieve generic text
information. - TextInputCallback(String) -
Constructor for class javax.security.auth.callback.TextInputCallback
- Construct a
TextInputCallback
with a prompt.
- TextInputCallback(String, String) -
Constructor for class javax.security.auth.callback.TextInputCallback
- Construct a
TextInputCallback
with a prompt
and default input value.
- TextLayout - Class in java.awt.font
TextLayout
is an immutable graphical representation of styled
character data.- TextLayout(String, Font, FontRenderContext) -
Constructor for class java.awt.font.TextLayout
- Constructs a
TextLayout
from a String
and a Font
.
- TextLayout(String, Map<? extends AttributedCharacterIterator.Attribute, ?>, FontRenderContext) -
Constructor for class java.awt.font.TextLayout
- Constructs a
TextLayout
from a String
and an attribute set.
- TextLayout(AttributedCharacterIterator, FontRenderContext) -
Constructor for class java.awt.font.TextLayout
- Constructs a
TextLayout
from an iterator over styled text.
- TextLayout.CaretPolicy - Class in java.awt.font
- Defines a policy for determining the strong caret location.
- TextLayout.CaretPolicy() -
Constructor for class java.awt.font.TextLayout.CaretPolicy
- Constructs a
CaretPolicy
.
- TextListener - Interface in java.awt.event
- The listener interface for receiving text events.
- textListener -
Variable in class java.awt.TextComponent
-
- TextMeasurer - Class in java.awt.font
- The
TextMeasurer
class provides the primitive operations
needed for line break: measuring up to a given advance, determining the
advance of a range of characters, and generating a
TextLayout
for a range of characters. - TextMeasurer(AttributedCharacterIterator, FontRenderContext) -
Constructor for class java.awt.font.TextMeasurer
- Constructs a
TextMeasurer
from the source text.
- textNonSelectionColor -
Variable in class javax.swing.tree.DefaultTreeCellRenderer
- Color to use for the foreground for non-selected nodes.
- TextOutputCallback - Class in javax.security.auth.callback
- Underlying security services instantiate and pass a
TextOutputCallback
to the handle
method of a CallbackHandler
to display information messages,
warning messages and error messages. - TextOutputCallback(int, String) -
Constructor for class javax.security.auth.callback.TextOutputCallback
- Construct a TextOutputCallback with a message type and message
to be displayed.
- textSelectionColor -
Variable in class javax.swing.tree.DefaultTreeCellRenderer
- Color to use for the foreground for selected nodes.
- TextSyntax - Class in javax.print.attribute
- Class TextSyntax is an abstract base class providing the common
implementation of all attributes whose value is a string.
- TextSyntax(String, Locale) -
Constructor for class javax.print.attribute.TextSyntax
- Constructs a TextAttribute with the specified string and locale.
- textText -
Static variable in class java.awt.SystemColor
- The color rendered for the text of text control objects, such as textfields
and comboboxes.
- TextUI - Class in javax.swing.plaf
- Text editor user interface
- TextUI() -
Constructor for class javax.swing.plaf.TextUI
-
- TexturePaint - Class in java.awt
- The
TexturePaint
class provides a way to fill a
Shape
with a texture that is specified as
a BufferedImage
. - TexturePaint(BufferedImage, Rectangle2D) -
Constructor for class java.awt.TexturePaint
- Constructs a
TexturePaint
object.
- textValueChanged(TextEvent) -
Method in class java.awt.AWTEventMulticaster
-
- textValueChanged(TextEvent) -
Method in interface java.awt.event.TextListener
- Invoked when the value of the text has changed.
- textValueChanged(TextEvent) -
Method in class java.awt.TextComponent.AccessibleAWTTextComponent
- TextListener notification of a text value change.
- TH -
Static variable in class javax.swing.text.html.HTML.Tag
-
- THAANA -
Static variable in class java.lang.Character.UnicodeBlock
- Constant for the "Thaana" Unicode character block.
- THAI -
Static variable in class java.awt.font.NumericShaper
- Identifies the THAI range and decimal base.
- THAI -
Static variable in class java.lang.Character.UnicodeBlock
- Constant for the "Thai" Unicode character block.
- the_activator() -
Method in interface org.omg.PortableServer.POAOperations
- This attribute identifies the adapter activator
associated with the POA.
- the_activator(AdapterActivator) -
Method in interface org.omg.PortableServer.POAOperations
- This attribute identifies the adapter activator
associated with the POA.
- the_children() -
Method in interface org.omg.PortableServer.POAOperations
- This attribute identifies the current set of all
child POAs of the POA.
- the_name() -
Method in interface org.omg.PortableServer.POAOperations
- This attribute identifies the POA relative to its
parent.
- the_parent() -
Method in interface org.omg.PortableServer.POAOperations
- This attribute identifies the parent of the POA.
- the_POAManager() -
Method in interface org.omg.PortableServer.POAOperations
- This attribute identifies the POA manager
associated with the POA.
- thickness -
Variable in class javax.swing.border.LineBorder
-
- this_object(Servant) -
Method in interface org.omg.PortableServer.portable.Delegate
- This allows the servant to obtain the object reference for
the target CORBA Object it is incarnating for that request.
- thisObject() -
Method in interface javax.rmi.CORBA.Tie
- Returns an object reference for the target object represented by
this tie.
- Thread - Class in java.lang
- A thread is a thread of execution in a program.
- Thread() -
Constructor for class java.lang.Thread
- Allocates a new
Thread
object.
- Thread(Runnable) -
Constructor for class java.lang.Thread
- Allocates a new
Thread
object.
- Thread(ThreadGroup, Runnable) -
Constructor for class java.lang.Thread
- Allocates a new
Thread
object.
- Thread(String) -
Constructor for class java.lang.Thread
- Allocates a new
Thread
object.
- Thread(ThreadGroup, String) -
Constructor for class java.lang.Thread
- Allocates a new
Thread
object.
- Thread(Runnable, String) -
Constructor for class java.lang.Thread
- Allocates a new
Thread
object.
- Thread(ThreadGroup, Runnable, String) -
Constructor for class java.lang.Thread
- Allocates a new
Thread
object so that it has
target
as its run object, has the specified
name
as its name, and belongs to the thread group
referred to by group
.
- Thread(ThreadGroup, Runnable, String, long) -
Constructor for class java.lang.Thread
- Allocates a new
Thread
object so that it has
target
as its run object, has the specified
name
as its name, belongs to the thread group referred to
by group
, and has the specified stack size.
- Thread.State - Enum in java.lang
- A thread state.
- Thread.UncaughtExceptionHandler - Interface in java.lang
- Interface for handlers invoked when a Thread abruptly
terminates due to an uncaught exception.
- THREAD_MXBEAN_NAME -
Static variable in class java.lang.management.ManagementFactory
- String representation of the
ObjectName for the
ThreadMXBean
.
- THREAD_POLICY_ID - Interface in org.omg.PortableServer
- org/omg/PortableServer/THREAD_POLICY_ID.java .
- ThreadDeath - Error in java.lang
- An instance of
ThreadDeath
is thrown in the victim
thread when the stop
method with zero arguments in
class Thread
is called. - ThreadDeath() -
Constructor for error java.lang.ThreadDeath
-
- ThreadFactory - Interface in java.util.concurrent
- An object that creates new threads on demand.
- ThreadGroup - Class in java.lang
- A thread group represents a set of threads.
- ThreadGroup(String) -
Constructor for class java.lang.ThreadGroup
- Constructs a new thread group.
- ThreadGroup(ThreadGroup, String) -
Constructor for class java.lang.ThreadGroup
- Creates a new thread group.
- ThreadInfo - Class in java.lang.management
- Thread information.
- ThreadLocal<T> - Class in java.lang
- This class provides thread-local variables.
- ThreadLocal() -
Constructor for class java.lang.ThreadLocal
- Creates a thread local variable.
- ThreadMXBean - Interface in java.lang.management
- The management interface for the thread system of
the Java virtual machine.
- ThreadPolicy - Interface in org.omg.PortableServer
- The ThreadPolicy specifies the threading model
used with the created POA.
- ThreadPolicyOperations - Interface in org.omg.PortableServer
- The ThreadPolicy specifies the threading model
used with the created POA.
- ThreadPolicyValue - Class in org.omg.PortableServer
- The ThreadPolicyValue can have the following values.
- ThreadPolicyValue(int) -
Constructor for class org.omg.PortableServer.ThreadPolicyValue
-
- ThreadPoolExecutor - Class in java.util.concurrent
- An
ExecutorService
that executes each submitted task using
one of possibly several pooled threads, normally configured
using Executors
factory methods. - ThreadPoolExecutor(int, int, long, TimeUnit, BlockingQueue<Runnable>) -
Constructor for class java.util.concurrent.ThreadPoolExecutor
- Creates a new ThreadPoolExecutor with the given initial
parameters and default thread factory and rejected execution handler.
- ThreadPoolExecutor(int, int, long, TimeUnit, BlockingQueue<Runnable>, ThreadFactory) -
Constructor for class java.util.concurrent.ThreadPoolExecutor
- Creates a new ThreadPoolExecutor with the given initial
parameters and default rejected execution handler.
- ThreadPoolExecutor(int, int, long, TimeUnit, BlockingQueue<Runnable>, RejectedExecutionHandler) -
Constructor for class java.util.concurrent.ThreadPoolExecutor
- Creates a new ThreadPoolExecutor with the given initial
parameters and default thread factory.
- ThreadPoolExecutor(int, int, long, TimeUnit, BlockingQueue<Runnable>, ThreadFactory, RejectedExecutionHandler) -
Constructor for class java.util.concurrent.ThreadPoolExecutor
- Creates a new ThreadPoolExecutor with the given initial
parameters.
- ThreadPoolExecutor.AbortPolicy - Class in java.util.concurrent
- A handler for rejected tasks that throws a
RejectedExecutionException.
- ThreadPoolExecutor.AbortPolicy() -
Constructor for class java.util.concurrent.ThreadPoolExecutor.AbortPolicy
- Creates an AbortPolicy.
- ThreadPoolExecutor.CallerRunsPolicy - Class in java.util.concurrent
- A handler for rejected tasks that runs the rejected task
directly in the calling thread of the execute method,
unless the executor has been shut down, in which case the task
is discarded.
- ThreadPoolExecutor.CallerRunsPolicy() -
Constructor for class java.util.concurrent.ThreadPoolExecutor.CallerRunsPolicy
- Creates a CallerRunsPolicy.
- ThreadPoolExecutor.DiscardOldestPolicy - Class in java.util.concurrent
- A handler for rejected tasks that discards the oldest unhandled
request and then retries execute, unless the executor
is shut down, in which case the task is discarded.
- ThreadPoolExecutor.DiscardOldestPolicy() -
Constructor for class java.util.concurrent.ThreadPoolExecutor.DiscardOldestPolicy
- Creates a DiscardOldestPolicy for the given executor.
- ThreadPoolExecutor.DiscardPolicy - Class in java.util.concurrent
- A handler for rejected tasks that silently discards the
rejected task.
- ThreadPoolExecutor.DiscardPolicy() -
Constructor for class java.util.concurrent.ThreadPoolExecutor.DiscardPolicy
- Creates a DiscardPolicy.
- THRESHOLD_ERROR -
Static variable in class javax.management.monitor.MonitorNotification
- Notification type denoting that the type of the thresholds, offset or modulus is not correct.
- THRESHOLD_HIGH_VALUE_EXCEEDED -
Static variable in class javax.management.monitor.MonitorNotification
- Notification type denoting that the observed attribute has exceeded the threshold high value.
- THRESHOLD_LOW_VALUE_EXCEEDED -
Static variable in class javax.management.monitor.MonitorNotification
- Notification type denoting that the observed attribute has exceeded the threshold low value.
- THRESHOLD_VALUE_EXCEEDED -
Static variable in class javax.management.monitor.MonitorNotification
- Notification type denoting that the observed attribute has reached the threshold value.
- Throwable - Class in java.lang
- The
Throwable
class is the superclass of all errors and
exceptions in the Java language. - Throwable() -
Constructor for class java.lang.Throwable
- Constructs a new throwable with
null
as its detail message.
- Throwable(String) -
Constructor for class java.lang.Throwable
- Constructs a new throwable with the specified detail message.
- Throwable(String, Throwable) -
Constructor for class java.lang.Throwable
- Constructs a new throwable with the specified detail message and
cause.
- Throwable(Throwable) -
Constructor for class java.lang.Throwable
- Constructs a new throwable with the specified cause and a detail
message of (cause==null ? null : cause.toString()) (which
typically contains the class and detail message of cause).
- throwException() -
Method in class java.nio.charset.CoderResult
- Throws an exception appropriate to the result described by this object.
- throwing(String, String, Throwable) -
Method in class java.util.logging.Logger
- Log throwing an exception.
- 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
-
- thumbnailComplete(ImageReader) -
Method in interface javax.imageio.event.IIOReadProgressListener
- Reports that a thumbnail read operation has completed.
- thumbnailComplete(ImageWriter) -
Method in interface javax.imageio.event.IIOWriteProgressListener
- Reports that a thumbnail write operation has completed.
- thumbnailPassComplete(ImageReader, BufferedImage) -
Method in interface javax.imageio.event.IIOReadUpdateListener
- Reports that the current thumbnail read operation has completed
a progressive pass.
- thumbnailPassStarted(ImageReader, BufferedImage, int, int, int, int, int, int, int, int[]) -
Method in interface javax.imageio.event.IIOReadUpdateListener
- Reports that the current thumbnail read operation is about to
begin a progressive pass.
- thumbnailProgress(ImageReader, float) -
Method in interface javax.imageio.event.IIOReadProgressListener
- Reports the approximate degree of completion of the current
getThumbnail
call within the associated
ImageReader
.
- thumbnailProgress(ImageWriter, float) -
Method in interface javax.imageio.event.IIOWriteProgressListener
- Reports the approximate degree of completion of the current
thumbnail write within the associated
ImageWriter
.
- thumbnails -
Variable in class javax.imageio.IIOImage
- A
List
of BufferedImage
thumbnails,
or null
.
- thumbnailStarted(ImageReader, int, int) -
Method in interface javax.imageio.event.IIOReadProgressListener
- Reports that a thumbnail read operation is beginning.
- thumbnailStarted(ImageWriter, int, int) -
Method in interface javax.imageio.event.IIOWriteProgressListener
- Reports that a thumbnail write operation is beginning.
- thumbnailUpdate(ImageReader, BufferedImage, int, int, int, int, int, int, int[]) -
Method in interface javax.imageio.event.IIOReadUpdateListener
- Reports that a given region of a thumbnail image has been updated.
- 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
Calendar.DAY_OF_WEEK
field indicating
Thursday.
- TIBETAN -
Static variable in class java.awt.font.NumericShaper
- Identifies the TIBETAN range and decimal base.
- TIBETAN -
Static variable in class java.lang.Character.UnicodeBlock
- Constant for the "Tibetan" Unicode character block.
- 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 in javax.rmi.CORBA
- Defines methods which all RMI-IIOP server side ties must implement.
- tileGridXOffset -
Variable in class javax.imageio.ImageWriteParam
- The amount by which the tile grid origin should be offset
horizontally from the image origin if tiling has been set,
or 0 otherwise.
- tileGridYOffset -
Variable in class javax.imageio.ImageWriteParam
- The amount by which the tile grid origin should be offset
vertically from the image origin if tiling has been set,
or 0 otherwise.
- tileHeight -
Variable in class javax.imageio.ImageWriteParam
- The height of each tile if tiling has been set, or 0 otherwise.
- tileIcon -
Variable in class javax.swing.border.MatteBorder
-
- TileObserver - Interface in java.awt.image
- 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).
- tileWidth -
Variable in class javax.imageio.ImageWriteParam
- The width of each tile if tiling has been set, or 0 otherwise.
- tilingMode -
Variable in class javax.imageio.ImageWriteParam
- The mode controlling tiling settings, which Must be
set to one of the four
MODE_*
values.
- tilingSet -
Variable in class javax.imageio.ImageWriteParam
- A
boolean
that is true
if tiling
parameters have been specified.
- Time - Class in java.sql
- A thin wrapper around the
java.util.Date
class that allows the JDBC
API to identify this as an SQL TIME
value. - 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.
- 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 -
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 -
Static variable in class javax.xml.datatype.DatatypeConstants
- Fully qualified name for W3C XML Schema 1.0 datatype
time
.
- TIME_ZONE -
Static variable in class java.text.DateFormat.Field
- Constant identifying the time zone field.
- TIMED_OUT -
Static variable in class javax.print.attribute.standard.PrinterStateReason
- The server was able to connect to the output device (or is always
connected), but was unable to get a response from the output device.
- timedJoin(Thread, long) -
Method in enum java.util.concurrent.TimeUnit
- Performs a timed Thread.join using this time unit.
- timedWait(Object, long) -
Method in enum java.util.concurrent.TimeUnit
- Performs a timed Object.wait using this time unit.
- TimeLimitExceededException - Exception in javax.naming
- This exception is thrown when a method
does not terminate within the specified time limit.
- TimeLimitExceededException() -
Constructor for exception javax.naming.TimeLimitExceededException
- Constructs a new instance of TimeLimitExceededException.
- TimeLimitExceededException(String) -
Constructor for exception javax.naming.TimeLimitExceededException
- Constructs a new instance of TimeLimitExceededException
using the argument supplied.
- TIMEOUT - Exception in org.omg.CORBA
TIMEOUT
is raised when no delivery has been made and the
specified time-to-live period has been exceeded.- TIMEOUT() -
Constructor for exception org.omg.CORBA.TIMEOUT
- Constructs an
TIMEOUT
exception with
minor code set to 0 and CompletionStatus set to COMPLETED_NO.
- TIMEOUT(String) -
Constructor for exception org.omg.CORBA.TIMEOUT
- Constructs an
TIMEOUT
exception with the
specified message.
- TIMEOUT(int, CompletionStatus) -
Constructor for exception org.omg.CORBA.TIMEOUT
- Constructs an
TIMEOUT
exception with the
specified minor code and completion status.
- TIMEOUT(String, int, CompletionStatus) -
Constructor for exception org.omg.CORBA.TIMEOUT
- Constructs an
TIMEOUT
exception with the
specified message, minor code, and completion status.
- TimeoutException - Exception in java.util.concurrent
- Exception thrown when a blocking operation times out.
- TimeoutException() -
Constructor for exception java.util.concurrent.TimeoutException
- Constructs a TimeoutException with no specified detail
message.
- TimeoutException(String) -
Constructor for exception java.util.concurrent.TimeoutException
- Constructs a TimeoutException with the specified detail
message.
- Timer - Class in java.util
- A facility for threads to schedule tasks for future execution in a
background thread.
- Timer() -
Constructor for class java.util.Timer
- Creates a new timer.
- Timer(boolean) -
Constructor for class java.util.Timer
- Creates a new timer whose associated thread may be specified to
run as a daemon.
- Timer(String) -
Constructor for class java.util.Timer
- Creates a new timer whose associated thread has the specified name.
- Timer(String, boolean) -
Constructor for class java.util.Timer
- Creates a new timer whose associated thread has the specified name,
and may be specified to run as a daemon.
- Timer - Class in javax.management.timer
- Provides the implementation of the timer MBean.
- Timer() -
Constructor for class javax.management.timer.Timer
- Default constructor.
- timer -
Variable in class javax.swing.plaf.basic.BasicTreeUI.ComponentHandler
- Timer used when inside a scrollpane and the scrollbar is
adjusting.
- Timer - Class in javax.swing
- Fires one or more
ActionEvent
s at specified
intervals. - Timer(int, ActionListener) -
Constructor for class javax.swing.Timer
- Creates a
Timer
and initializes both the initial delay and
between-event delay to delay
milliseconds.
- timer -
Variable in class javax.swing.tree.DefaultTreeCellEditor
- Used before starting the editing session.
- TimerMBean - Interface in javax.management.timer
- Exposes the management interface of the timer MBean.
- TimerNotification - Class in javax.management.timer
- This class provides definitions of the notifications sent by timer MBeans.
- TimerNotification(String, Object, long, long, String, Integer) -
Constructor for class javax.management.timer.TimerNotification
- Creates a timer notification object.
- TimerTask - Class in java.util
- 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.
- TIMES -
Static variable in class javax.management.Query
- A code representing the
Query.times(javax.management.ValueExp, javax.management.ValueExp)
expression.
- times(ValueExp, ValueExp) -
Static method in class javax.management.Query
- Returns a binary expression representing the product of two numeric values.
- Timestamp - Class in java.security
- This class encapsulates information about a signed timestamp.
- Timestamp(Date, CertPath) -
Constructor for class java.security.Timestamp
- Constructs a Timestamp.
- Timestamp - Class in java.sql
- A thin wrapper around
java.util.Date
that allows
the JDBC API to identify this as an SQL TIMESTAMP
value. - 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.
- 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() -
Method in class java.util.UUID
- The timestamp value associated with this UUID.
- TimeUnit - Enum in java.util.concurrent
- A TimeUnit represents time durations at a given unit of
granularity and provides utility methods to convert across units,
and to perform timing and delay operations in these units.
- TimeZone - Class in java.util
TimeZone
represents a time zone offset, and also figures out daylight
savings.- TimeZone() -
Constructor for class java.util.TimeZone
- Sole constructor.
- TIMEZONE_FIELD -
Static variable in class java.text.DateFormat
- Useful constant for TIMEZONE field alignment.
- TimeZoneNameProvider - Class in java.util.spi
- An abstract class for service providers that
provide localized time zone names for the
TimeZone
class. - TimeZoneNameProvider() -
Constructor for class java.util.spi.TimeZoneNameProvider
- 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.border.TitledBorder
-
- title -
Variable in class javax.swing.JInternalFrame
- The title displayed in this internal frame's title bar.
- TITLE -
Static variable in class javax.swing.text.html.HTML.Attribute
-
- TITLE -
Static variable in class javax.swing.text.html.HTML.Tag
-
- title -
Variable in class javax.swing.text.html.parser.DTD
-
- TITLE_PROPERTY -
Static variable in class javax.swing.JInternalFrame
- Bound property name.
- TITLECASE_LETTER -
Static variable in class java.lang.Character
- General category "Lt" in the Unicode specification.
- titleColor -
Variable in class javax.swing.border.TitledBorder
-
- TitledBorder - Class in javax.swing.border
- A class which implements an arbitrary border
with the addition of a String title in a
specified position and justification.
- TitledBorder(String) -
Constructor for class javax.swing.border.TitledBorder
- Creates a TitledBorder instance.
- 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.
- 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
.
- TMENDRSCAN -
Static variable in interface javax.transaction.xa.XAResource
- Ends a recovery scan.
- TMFAIL -
Static variable in interface javax.transaction.xa.XAResource
- Disassociates the caller and marks the transaction branch
rollback-only.
- TMJOIN -
Static variable in interface javax.transaction.xa.XAResource
- Caller is joining existing transaction branch.
- TMNOFLAGS -
Static variable in interface javax.transaction.xa.XAResource
- Use TMNOFLAGS to indicate no flags value is selected.
- TMONEPHASE -
Static variable in interface javax.transaction.xa.XAResource
- Caller is using one-phase optimization.
- TMRESUME -
Static variable in interface javax.transaction.xa.XAResource
- Caller is resuming association with a suspended
transaction branch.
- TMSTARTRSCAN -
Static variable in interface javax.transaction.xa.XAResource
- Starts a recovery scan.
- TMSUCCESS -
Static variable in interface javax.transaction.xa.XAResource
- Disassociates caller from a transaction branch.
- TMSUSPEND -
Static variable in interface javax.transaction.xa.XAResource
- Caller is suspending (not ending) its association with
a transaction branch.
- to_any() -
Method in interface org.omg.CORBA.DynAny
- Deprecated. Convert a
DynAny
object to an Any
object.
- to_any() -
Method in class org.omg.DynamicAny._DynAnyStub
- Creates an any value from a DynAny object.
- to_any() -
Method in class org.omg.DynamicAny._DynArrayStub
- Creates an any value from a DynAny object.
- to_any() -
Method in class org.omg.DynamicAny._DynEnumStub
- Creates an any value from a DynAny object.
- to_any() -
Method in class org.omg.DynamicAny._DynFixedStub
- Creates an any value from a DynAny object.
- to_any() -
Method in class org.omg.DynamicAny._DynSequenceStub
- Creates an any value from a DynAny object.
- to_any() -
Method in class org.omg.DynamicAny._DynStructStub
- Creates an any value from a DynAny object.
- to_any() -
Method in class org.omg.DynamicAny._DynUnionStub
- Creates an any value from a DynAny object.
- to_any() -
Method in class org.omg.DynamicAny._DynValueStub
- Creates an any value from a DynAny object.
- to_any() -
Method in interface org.omg.DynamicAny.DynAnyOperations
- Creates an any value from a DynAny object.
- to_name(String) -
Method in class org.omg.CosNaming._NamingContextExtStub
- This operation converts a Stringified Name into an equivalent array
of Name Components.
- to_name(String) -
Method in interface org.omg.CosNaming.NamingContextExtOperations
- This operation converts a Stringified Name into an equivalent array
of Name Components.
- to_string(NameComponent[]) -
Method in class org.omg.CosNaming._NamingContextExtStub
- This operation creates a stringified name from the array of Name
components.
- to_string(NameComponent[]) -
Method in interface org.omg.CosNaming.NamingContextExtOperations
- This operation creates a stringified name from the array of Name
components.
- to_url(String, String) -
Method in class org.omg.CosNaming._NamingContextExtStub
- This operation creates a URL based "iiopname://" format name
from the Stringified Name of the object.
- to_url(String, String) -
Method in interface org.omg.CosNaming.NamingContextExtOperations
- This operation creates a URL based "iiopname://" format name
from the Stringified Name of the object.
- toArray() -
Method in class java.awt.dnd.DragGestureEvent
- Returns an
Object
array of the
events comprising the drag gesture.
- toArray(Object[]) -
Method in class java.awt.dnd.DragGestureEvent
- Returns an 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(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() -
Method in class java.util.AbstractCollection
- Returns an array containing all of the elements in this collection.
- toArray(T[]) -
Method in class java.util.AbstractCollection
- Returns an array containing all of the elements in this collection;
the runtime type of the returned array is that of the specified array.
- toArray() -
Method in class java.util.ArrayDeque
- Returns an array containing all of the elements in this deque
in proper sequence (from first to last element).
- toArray(T[]) -
Method in class java.util.ArrayDeque
- Returns an array containing all of the elements in this deque in
proper sequence (from first to last element); the runtime type of the
returned array is that of the specified array.
- toArray() -
Method in class java.util.ArrayList
- Returns an array containing all of the elements in this list
in proper sequence (from first to last element).
- toArray(T[]) -
Method in class java.util.ArrayList
- Returns an array containing all of the elements in this list in proper
sequence (from first to last element); the runtime type of the returned
array is that of the specified array.
- toArray() -
Method in interface java.util.Collection
- Returns an array containing all of the elements in this collection.
- toArray(T[]) -
Method in interface java.util.Collection
- Returns an array containing all of the elements in this collection;
the runtime type of the returned array is that of the specified array.
- toArray() -
Method in class java.util.concurrent.ArrayBlockingQueue
- Returns an array containing all of the elements in this queue, in
proper sequence.
- toArray(T[]) -
Method in class java.util.concurrent.ArrayBlockingQueue
- Returns an array containing all of the elements in this queue, in
proper sequence; the runtime type of the returned array is that of
the specified array.
- toArray() -
Method in class java.util.concurrent.ConcurrentLinkedQueue
- Returns an array containing all of the elements in this queue, in
proper sequence.
- toArray(T[]) -
Method in class java.util.concurrent.ConcurrentLinkedQueue
- Returns an array containing all of the elements in this queue, in
proper sequence; the runtime type of the returned array is that of
the specified array.
- toArray() -
Method in class java.util.concurrent.CopyOnWriteArrayList
- Returns an array containing all of the elements in this list
in proper sequence (from first to last element).
- toArray(T[]) -
Method in class java.util.concurrent.CopyOnWriteArrayList
- Returns an array containing all of the elements in this list in
proper sequence (from first to last element); the runtime type of
the returned array is that of the specified array.
- toArray() -
Method in class java.util.concurrent.CopyOnWriteArraySet
- Returns an array containing all of the elements in this set.
- toArray(T[]) -
Method in class java.util.concurrent.CopyOnWriteArraySet
- Returns an array containing all of the elements in this set; the
runtime type of the returned array is that of the specified array.
- toArray() -
Method in class java.util.concurrent.DelayQueue
- Returns an array containing all of the elements in this queue.
- toArray(T[]) -
Method in class java.util.concurrent.DelayQueue
- Returns an array containing all of the elements in this queue; the
runtime type of the returned array is that of the specified array.
- toArray() -
Method in class java.util.concurrent.LinkedBlockingDeque
- Returns an array containing all of the elements in this deque, in
proper sequence (from first to last element).
- toArray(T[]) -
Method in class java.util.concurrent.LinkedBlockingDeque
- Returns an array containing all of the elements in this deque, in
proper sequence; the runtime type of the returned array is that of
the specified array.
- toArray() -
Method in class java.util.concurrent.LinkedBlockingQueue
- Returns an array containing all of the elements in this queue, in
proper sequence.
- toArray(T[]) -
Method in class java.util.concurrent.LinkedBlockingQueue
- Returns an array containing all of the elements in this queue, in
proper sequence; the runtime type of the returned array is that of
the specified array.
- toArray() -
Method in class java.util.concurrent.PriorityBlockingQueue
- Returns an array containing all of the elements in this queue.
- toArray(T[]) -
Method in class java.util.concurrent.PriorityBlockingQueue
- Returns an array containing all of the elements in this queue; the
runtime type of the returned array is that of the specified array.
- toArray() -
Method in class java.util.concurrent.SynchronousQueue
- Returns a zero-length array.
- toArray(T[]) -
Method in class java.util.concurrent.SynchronousQueue
- Sets the zeroeth element of the specified array to null
(if the array has non-zero length) and returns it.
- toArray() -
Method in class java.util.LinkedList
- Returns an array containing all of the elements in this list
in proper sequence (from first to last element).
- toArray(T[]) -
Method in class java.util.LinkedList
- Returns an array containing all of the elements in this list in
proper sequence (from first to last element); the runtime type of
the returned array is that of the specified array.
- toArray() -
Method in interface java.util.List
- Returns an array containing all of the elements in this list in proper
sequence (from first to last element).
- toArray(T[]) -
Method in interface java.util.List
- Returns an array containing all of the elements in this list in
proper sequence (from first to last element); the runtime type of
the returned array is that of the specified array.
- toArray() -
Method in class java.util.PriorityQueue
- Returns an array containing all of the elements in this queue.
- toArray(T[]) -
Method in class java.util.PriorityQueue
- Returns an array containing all of the elements in this queue; the
runtime type of the returned array is that of the specified array.
- toArray() -
Method in interface java.util.Set
- Returns an array containing all of the elements in this set.
- toArray(T[]) -
Method in interface java.util.Set
- Returns an array containing all of the elements in this set; the
runtime type of the returned array is that of the specified array.
- toArray() -
Method in class java.util.Vector
- Returns an array containing all of the elements in this Vector
in the correct order.
- toArray(T[]) -
Method in class java.util.Vector
- Returns an array containing all of the elements in this Vector in the
correct order; the runtime type of the returned array is that of the
specified array.
- toArray() -
Method in class javax.accessibility.AccessibleRelationSet
- Returns the current relation set as an array of AccessibleRelation
- toArray() -
Method in class javax.accessibility.AccessibleStateSet
- Returns the current state set as an array of AccessibleState
- toArray() -
Method in interface javax.print.attribute.AttributeSet
- Returns an array of the attributes contained in this set.
- toArray() -
Method in class javax.print.attribute.HashAttributeSet
-
- toArray() -
Method in class javax.swing.DefaultListModel
- Returns an array containing all of the elements in this list in the
correct order.
- toASCII(String, int) -
Static method in class java.net.IDN
- Translates a string from Unicode to ASCII Compatible Encoding (ACE),
as defined by the ToASCII operation of RFC 3490.
- toASCII(String) -
Static method in class java.net.IDN
- Translates a string from Unicode to ASCII Compatible Encoding (ACE),
as defined by the ToASCII operation of RFC 3490.
- toASCIIString() -
Method in class java.net.URI
- Returns the content of this URI as a US-ASCII string.
- toAttributes() -
Method in class javax.naming.ldap.Rdn
- Retrieves the
Attributes
view of the type/value mappings contained in this Rdn.
- toBack() -
Method in class java.awt.Dialog
- If this Window is visible, sends this Window to the back and may cause
it to lose focus or activation if it is the focused or active Window.
- toBack() -
Method in class java.awt.Window
- If this Window is visible, sends this Window to the back and may cause
it to lose focus or activation if it is the focused or active Window.
- 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.
- toBigIntegerExact() -
Method in class java.math.BigDecimal
- Converts this BigDecimal to a BigInteger,
checking for lost information.
- toBinaryString(int) -
Static method in class java.lang.Integer
- Returns a string representation of the integer argument as an
unsigned integer in base 2.
- toBinaryString(long) -
Static method in class java.lang.Long
- Returns a string representation of the
long
argument as an unsigned integer in base 2.
- TOBOTTOM_TOLEFT -
Static variable in class javax.print.attribute.standard.PresentationDirection
- Pages are laid out in columns starting at the top right,
proceeeding towards the bottom & left.
- TOBOTTOM_TORIGHT -
Static variable in class javax.print.attribute.standard.PresentationDirection
- Pages are laid out in columns starting at the top left,
proceeeding towards the bottom & right.
- toBundleName(String, Locale) -
Method in class java.util.ResourceBundle.Control
- Converts the given
baseName
and locale
to the bundle name.
- 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.
- toCachedRowSet() -
Method in interface javax.sql.rowset.JoinRowSet
- Creates a new
CachedRowSet
object containing the
data in this JoinRowSet
object, which can be saved
to a data source using the SyncProvider
object for
the CachedRowSet
object.
- 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.
- toChars(int, char[], int) -
Static method in class java.lang.Character
- Converts the specified character (Unicode code point) to its
UTF-16 representation.
- toChars(int) -
Static method in class java.lang.Character
- Converts the specified character (Unicode code point) to its
UTF-16 representation stored in a
char
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.
- toCodePoint(char, char) -
Static method in class java.lang.Character
- Converts the specified surrogate pair to its supplementary code
point value.
- toCollection() -
Method in interface javax.sql.rowset.CachedRowSet
- Converts this
CachedRowSet
object to a Collection
object that contains all of this CachedRowSet
object's data.
- toCollection(int) -
Method in interface javax.sql.rowset.CachedRowSet
- Converts the designated column in this
CachedRowSet
object
to a Collection
object.
- toCollection(String) -
Method in interface javax.sql.rowset.CachedRowSet
- Converts the designated column in this
CachedRowSet
object
to a Collection
object.
- toCompositeData(CompositeType) -
Method in interface javax.management.openmbean.CompositeDataView
- Return a
CompositeData
corresponding to the values in
this object.
- toDays(long) -
Method in enum java.util.concurrent.TimeUnit
- Equivalent to DAYS.convert(duration, this).
- toDegrees(double) -
Static method in class java.lang.Math
- Converts an angle measured in radians to an approximately
equivalent angle measured in degrees.
- toDegrees(double) -
Static method in class java.lang.StrictMath
- Converts an angle measured in radians to an approximately
equivalent angle measured in degrees.
- toDisplayString(String, Locale) -
Method in class javax.accessibility.AccessibleBundle
- Obtains the key as a localized string.
- toDisplayString(Locale) -
Method in class javax.accessibility.AccessibleBundle
- Obtains the key as a localized string.
- toDisplayString() -
Method in class javax.accessibility.AccessibleBundle
- Gets localized string describing the key using the default locale.
- toEngineeringString() -
Method in class java.math.BigDecimal
- Returns a string representation of this BigDecimal,
using engineering notation if an exponent is needed.
- 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
- If this Window is visible, brings this Window to the front and may make
it the focused Window.
- toFront() -
Method in class javax.swing.JInternalFrame
- Brings this internal frame to the front.
- toGenericString() -
Method in class java.lang.reflect.Constructor
- Returns a string describing this
Constructor
,
including type parameters.
- toGenericString() -
Method in class java.lang.reflect.Field
- Returns a string describing this
Field
, including
its generic type.
- toGenericString() -
Method in class java.lang.reflect.Method
- Returns a string describing this
Method
, including
type parameters.
- 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_BUTTON -
Static variable in class javax.swing.plaf.synth.Region
- ToggleButton region.
- TOGGLE_CLICK_COUNT_PROPERTY -
Static variable in class javax.swing.JTree
- Bound property name for
toggleClickCount
.
- TOGGLE_EXPAND -
Static variable in interface javax.accessibility.AccessibleAction
- An action which causes a tree node to
collapse if expanded and expand if collapsed.
- TOGGLE_POPUP -
Static variable in interface javax.accessibility.AccessibleAction
- An action which causes a popup to become visible if it is hidden and
hidden if it is visible.
- 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.
- toggleSortOrder(int) -
Method in class javax.swing.DefaultRowSorter
- Reverses the sort order from ascending to descending (or
descending to ascending) if the specified column is already the
primary sorted column; otherwise, makes the specified column
the primary sorted column, with an ascending sort order.
- toggleSortOrder(int) -
Method in class javax.swing.RowSorter
- Reverses the sort order of the specified column.
- toGMTString() -
Method in class java.util.Date
- Deprecated. As of JDK version 1.1,
replaced by
DateFormat.format(Date date)
, using a
GMT TimeZone
.
- toGregorianCalendar() -
Method in class javax.xml.datatype.XMLGregorianCalendar
- Convert this
XMLGregorianCalendar
to a GregorianCalendar
.
- toGregorianCalendar(TimeZone, Locale, XMLGregorianCalendar) -
Method in class javax.xml.datatype.XMLGregorianCalendar
- Convert this
XMLGregorianCalendar
along with provided parameters
to a GregorianCalendar
instance.
- toHexString(double) -
Static method in class java.lang.Double
- Returns a hexadecimal string representation of the
double
argument.
- toHexString(float) -
Static method in class java.lang.Float
- Returns a hexadecimal string representation of the
float
argument.
- toHexString(int) -
Static method in class java.lang.Integer
- Returns a string representation of the integer argument as an
unsigned integer in base 16.
- toHexString(long) -
Static method in class java.lang.Long
- Returns a string representation of the
long
argument as an unsigned integer in base 16.
- toHours(long) -
Method in enum java.util.concurrent.TimeUnit
- Equivalent to HOURS.convert(duration, this).
- toIndex -
Variable in class javax.swing.event.TableColumnModelEvent
- The index of the column to where it was moved or added
- toJMXConnector(Map<String, ?>) -
Method in class javax.management.remote.JMXConnectorServer
- Returns a client stub for this connector server.
- toJMXConnector(Map<String, ?>) -
Method in interface javax.management.remote.JMXConnectorServerMBean
- Returns a client stub for this connector server.
- toJMXConnector(Map<String, ?>) -
Method in class javax.management.remote.rmi.RMIConnectorServer
- Returns a client stub for this connector server.
- TOLEFT_TOBOTTOM -
Static variable in class javax.print.attribute.standard.PresentationDirection
- Pages are laid out in rows starting at the top right,
proceeeding towards the left & bottom.
- TOLEFT_TOTOP -
Static variable in class javax.print.attribute.standard.PresentationDirection
- Pages are laid out in rows starting at the bottom right,
proceeeding towards the left & top.
- 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.DecimalFormat
- Synthesizes a localized pattern string that represents the current
state of this Format object.
- toLocalizedPattern() -
Method in class java.text.SimpleDateFormat
- Returns a localized pattern string describing this date format.
- toLowerCase(char) -
Static method in class java.lang.Character
- Converts the character argument to lowercase using case
mapping information from the UnicodeData file.
- toLowerCase(int) -
Static method in class java.lang.Character
- Converts the character (Unicode code point) argument to
lowercase using case mapping information from the UnicodeData
file.
- toLowerCase(Locale) -
Method in class java.lang.String
- Converts all of the characters in this
String
to lower
case using the rules of the given Locale
.
- toLowerCase() -
Method in class java.lang.String
- Converts all of the characters in this
String
to lower
case using the rules of the default locale.
- toMatchResult() -
Method in class java.util.regex.Matcher
- Returns the match state of this matcher as a
MatchResult
.
- toMicros(long) -
Method in enum java.util.concurrent.TimeUnit
- Equivalent to MICROSECONDS.convert(duration, this).
- toMillis(long) -
Method in enum java.util.concurrent.TimeUnit
- Equivalent to MILLISECONDS.convert(duration, this).
- toMinutes(long) -
Method in enum java.util.concurrent.TimeUnit
- Equivalent to MINUTES.convert(duration, this).
- toNanos(long) -
Method in enum java.util.concurrent.TimeUnit
- Equivalent to NANOSECONDS.convert(duration, this).
- TONER_EMPTY -
Static variable in class javax.print.attribute.standard.PrinterStateReason
- The device is out of toner.
- TONER_LOW -
Static variable in class javax.print.attribute.standard.PrinterStateReason
- The device is low on toner.
- toOctalString(int) -
Static method in class java.lang.Integer
- Returns a string representation of the integer argument as an
unsigned integer in base 8.
- toOctalString(long) -
Static method in class java.lang.Long
- Returns a string representation of the
long
argument as an unsigned integer in base 8.
- Tool - Interface in javax.tools
- Common interface for tools that can be invoked from a program.
- TOOL_BAR -
Static variable in class javax.accessibility.AccessibleRole
- A bar or palette usually composed of push buttons or toggle buttons.
- TOOL_BAR -
Static variable in class javax.swing.plaf.synth.Region
- ToolBar region.
- TOOL_BAR_CONTENT -
Static variable in class javax.swing.plaf.synth.Region
- Region of the ToolBar containing the content.
- TOOL_BAR_DRAG_WINDOW -
Static variable in class javax.swing.plaf.synth.Region
- Region for the Window containing the ToolBar.
- TOOL_BAR_SEPARATOR -
Static variable in class javax.swing.plaf.synth.Region
- ToolBar separator region.
- TOOL_TIP -
Static variable in class javax.accessibility.AccessibleRole
- An object that provides information about another object.
- TOOL_TIP -
Static variable in class javax.swing.plaf.synth.Region
- ToolTip region.
- 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.DockingListener
-
- toolBar -
Variable in class javax.swing.plaf.basic.BasicToolBarUI
-
- toolBarContListener -
Variable in class javax.swing.plaf.basic.BasicToolBarUI
-
- toolBarFocusListener -
Variable in class javax.swing.plaf.basic.BasicToolBarUI
-
- ToolBarUI - Class in javax.swing.plaf
- Pluggable look and feel interface for JToolBar.
- ToolBarUI() -
Constructor for class javax.swing.plaf.ToolBarUI
-
- Toolkit - Class in java.awt
- This class is the abstract superclass of all actual
implementations of the Abstract Window Toolkit.
- Toolkit() -
Constructor for class java.awt.Toolkit
-
- ToolProvider - Class in javax.tools
- Provides methods for locating tool providers, for example,
providers of compilers.
- ToolTipManager - Class in javax.swing
- Manages all the
ToolTips
in the system. - ToolTipManager.insideTimerAction - Class in javax.swing
-
- ToolTipManager.insideTimerAction() -
Constructor for class javax.swing.ToolTipManager.insideTimerAction
-
- ToolTipManager.outsideTimerAction - Class in javax.swing
-
- ToolTipManager.outsideTimerAction() -
Constructor for class javax.swing.ToolTipManager.outsideTimerAction
-
- ToolTipManager.stillInsideTimerAction - Class in javax.swing
-
- ToolTipManager.stillInsideTimerAction() -
Constructor for class javax.swing.ToolTipManager.stillInsideTimerAction
-
- ToolTipUI - Class in javax.swing.plaf
- Pluggable look and feel interface for JToolTip.
- ToolTipUI() -
Constructor for class javax.swing.plaf.ToolTipUI
-
- TooManyListenersException - Exception in java.util
-
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 exception java.util.TooManyListenersException
- Constructs a TooManyListenersException with no detail message.
- TooManyListenersException(String) -
Constructor for exception java.util.TooManyListenersException
- Constructs a TooManyListenersException with the specified detail message.
- top -
Variable in class java.awt.Insets
- The inset from the top.
- TOP -
Static variable in class javax.print.attribute.standard.MediaTray
- The top input tray in the printer.
- top -
Variable in class javax.swing.border.EmptyBorder
-
- TOP -
Static variable in class javax.swing.border.TitledBorder
- Position the title in the middle of the border's top line.
- TOP -
Static variable in class javax.swing.JSplitPane
- Used to add a
Component
above the other
Component
.
- TOP -
Static variable in interface javax.swing.SwingConstants
- Box-orientation constant used to specify the top of a box.
- 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.DecimalFormat
- Synthesizes a pattern string that represents the current state
of this Format object.
- toPattern() -
Method in class java.text.MessageFormat
- Returns a pattern representing the current state of the message format.
- toPattern() -
Method in class java.text.SimpleDateFormat
- Returns a pattern string describing this date format.
- TOPDOWNLEFTRIGHT -
Static variable in interface java.awt.image.ImageConsumer
- The pixels will be delivered in top-down, left-to-right order.
- toPlainString() -
Method in class java.math.BigDecimal
- Returns a string representation of this BigDecimal
without an exponent field.
- toRadians(double) -
Static method in class java.lang.Math
- Converts an angle measured in degrees to an approximately
equivalent angle measured in radians.
- toRadians(double) -
Static method in class java.lang.StrictMath
- Converts an angle measured in degrees to an approximately
equivalent angle measured in radians.
- toResourceName(String, String) -
Method in class java.util.ResourceBundle.Control
- Converts the given
bundleName
to the form required
by the ClassLoader.getResource
method by replacing all occurrences of '.'
in
bundleName
with '/'
and appending a
'.'
and the given file suffix
.
- 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.
- TORIGHT_TOBOTTOM -
Static variable in class javax.print.attribute.standard.PresentationDirection
- Pages are laid out in rows starting at the top left,
proceeeding towards the right & bottom.
- TORIGHT_TOTOP -
Static variable in class javax.print.attribute.standard.PresentationDirection
- Pages are laid out in rows starting at the bottom left,
proceeeding towards the right & top.
- toSeconds(long) -
Method in enum java.util.concurrent.TimeUnit
- Equivalent to SECONDS.convert(duration, this).
- toString() -
Method in class java.awt.AWTEvent
- Returns a String representation of this object.
- toString() -
Method in class java.awt.AWTKeyStroke
- Returns a string that displays and identifies this object's properties.
- toString() -
Method in class java.awt.BorderLayout
- Returns a string representation of the state of this border layout.
- toString() -
Method in class java.awt.CardLayout
- Returns a string representation of the state of this card layout.
- 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.Color
- Returns a string representation of this
Color
.
- toString() -
Method in class java.awt.Component
- Returns a string representation of this component and its values.
- toString() -
Method in class java.awt.Cursor
- Returns a string representation of this cursor.
- toString() -
Method in class java.awt.datatransfer.DataFlavor
- String representation of this
DataFlavor
and its
parameters.
- 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.Event
- NOTE: The
Event
class is obsolete and is
available only for backwards compatilibility.
- toString() -
Method in class java.awt.FlowLayout
- Returns a string representation of this
FlowLayout
object and its values.
- toString() -
Method in class java.awt.font.NumericShaper
- Returns a
String
that describes this shaper.
- toString() -
Method in class java.awt.font.TextHitInfo
- Returns a
String
representing the hit for debugging
use only.
- toString() -
Method in class java.awt.font.TextLayout
- Returns debugging information for this
TextLayout
.
- toString() -
Method in class java.awt.Font
- Converts this
Font
object to a String
representation.
- 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.geom.AffineTransform
- Returns a
String
that represents the value of this
Object
.
- 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.Point2D.Float
- Returns a
String
that represents the value
of this Point2D
.
- toString() -
Method in class java.awt.geom.Rectangle2D.Double
- Returns the
String
representation of this
Rectangle2D
.
- toString() -
Method in class java.awt.geom.Rectangle2D.Float
- Returns the
String
representation of this
Rectangle2D
.
- toString() -
Method in class java.awt.Graphics
- Returns a
String
object representing this
Graphics
object's value.
- toString() -
Method in class java.awt.GridBagLayout
- Returns a string representation of this grid bag layout's values.
- toString() -
Method in class java.awt.GridLayout
- Returns the string representation of this grid layout's values.
- 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.awt.Insets
- Returns a string representation of this
Insets
object.
- toString() -
Method in class java.awt.JobAttributes
- Returns a string representation of this JobAttributes.
- toString() -
Method in class java.awt.MenuComponent
- Returns a representation of this menu component as a string.
- toString() -
Method in class java.awt.MenuShortcut
- Returns an internationalized description of the MenuShortcut.
- toString() -
Method in class java.awt.PageAttributes
- Returns a string representation of this PageAttributes.
- 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.Rectangle
- Returns a
String
representing this
Rectangle
and its values.
- 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.Robot
- Returns a string representation of this Robot.
- toString() -
Method in class java.awt.ScrollPaneAdjustable
- Returns a string representation of this scrollbar and its values.
- toString() -
Method in class java.awt.SystemColor
- Returns a string representation of this
Color
's values.
- toString() -
Method in class java.beans.Expression
- Prints the value of this expression using a Java-style syntax.
- toString() -
Method in class java.beans.Statement
- Prints the value of this statement using a Java-style syntax.
- toString() -
Method in class java.io.ByteArrayOutputStream
- Converts the buffer's contents into a string decoding bytes using the
platform's default character set.
- toString(String) -
Method in class java.io.ByteArrayOutputStream
- Converts the buffer's contents into a string by decoding the bytes using
the specified
charsetName
.
- 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() -
Method in class java.io.CharArrayWriter
- Converts input data to a string.
- toString() -
Method in class java.io.File
- Returns the pathname string of this abstract pathname.
- toString() -
Method in class java.io.ObjectStreamClass
- Return a string describing this ObjectStreamClass.
- toString() -
Method in class java.io.ObjectStreamField
- Return a string that describes this field.
- toString() -
Method in class java.io.StreamTokenizer
- Returns the string representation of the current stream token and
the line number it occurs on.
- toString() -
Method in class java.io.StringWriter
- Return the buffer's current value as a string.
- toString() -
Method in interface java.lang.annotation.Annotation
- Returns a string representation of this annotation.
- toString(boolean) -
Static method in class java.lang.Boolean
- Returns a String object representing the specified
boolean.
- toString() -
Method in class java.lang.Boolean
- Returns a String object representing this Boolean's
value.
- toString(byte) -
Static method in class java.lang.Byte
- Returns a new
String
object representing the
specified byte
.
- toString() -
Method in class java.lang.Byte
- Returns a
String
object representing this
Byte
's value.
- toString() -
Method in class java.lang.Character.Subset
- Returns the name of this subset.
- toString() -
Method in class java.lang.Character
- Returns a
String
object representing this
Character
's value.
- toString(char) -
Static method in class java.lang.Character
- Returns a
String
object representing the
specified char
.
- toString() -
Method in interface java.lang.CharSequence
- Returns a string containing the characters in this sequence in the same
order as this sequence.
- toString() -
Method in class java.lang.Class
- Converts the object to a string.
- toString(double) -
Static method in class java.lang.Double
- Returns a string representation of the
double
argument.
- toString() -
Method in class java.lang.Double
- Returns a string representation of this
Double
object.
- toString() -
Method in class java.lang.Enum
- Returns the name of this enum constant, as contained in the
declaration.
- toString(float) -
Static method in class java.lang.Float
- Returns a string representation of the
float
argument.
- toString() -
Method in class java.lang.Float
- Returns a string representation of this
Float
object.
- toString(int, int) -
Static method in class java.lang.Integer
- Returns a string representation of the first argument in the
radix specified by the second argument.
- toString(int) -
Static method in class java.lang.Integer
- Returns a
String
object representing the
specified integer.
- toString() -
Method in class java.lang.Integer
- Returns a
String
object representing this
Integer
's value.
- toString(long, int) -
Static method in class java.lang.Long
- Returns a string representation of the first argument in the
radix specified by the second argument.
- toString(long) -
Static method in class java.lang.Long
- Returns a
String
object representing the specified
long
.
- toString() -
Method in class java.lang.Long
- Returns a
String
object representing this
Long
's value.
- toString() -
Method in class java.lang.management.LockInfo
- Returns a string representation of a lock.
- toString() -
Method in enum java.lang.management.MemoryType
- Returns the string representation of this MemoryType.
- toString() -
Method in class java.lang.management.MemoryUsage
- Returns a descriptive representation of this memory usage.
- toString() -
Method in class java.lang.management.ThreadInfo
- Returns a string representation of this thread info.
- toString() -
Method in class java.lang.Object
- Returns a string representation of the object.
- toString() -
Method in class java.lang.Package
- Returns the string representation of this Package.
- toString() -
Method in class java.lang.reflect.Constructor
- Returns a string describing this
Constructor
.
- toString() -
Method in class java.lang.reflect.Field
- Returns a string describing this
Field
.
- toString() -
Method in class java.lang.reflect.Method
- Returns a string describing this
Method
.
- toString(int) -
Static method in class java.lang.reflect.Modifier
- Return a string describing the access modifier flags in
the specified modifier.
- toString(short) -
Static method in class java.lang.Short
- Returns a new
String
object representing the
specified short
.
- toString() -
Method in class java.lang.Short
- Returns a
String
object representing this
Short
's value.
- toString() -
Method in class java.lang.StackTraceElement
- Returns a string representation of this stack trace element.
- toString() -
Method in class java.lang.String
- This object (which is already a string!) is itself returned.
- toString() -
Method in class java.lang.StringBuffer
-
- toString() -
Method in class java.lang.StringBuilder
-
- toString() -
Method in class java.lang.Thread
- Returns a string representation of this thread, including the
thread's name, priority, and thread group.
- toString() -
Method in class java.lang.ThreadGroup
- Returns a string representation of this Thread group.
- toString() -
Method in class java.lang.Throwable
- Returns a short description of this throwable.
- toString() -
Method in class java.math.BigDecimal
- Returns the string representation of this BigDecimal,
using scientific notation if an exponent is needed.
- toString(int) -
Method in class java.math.BigInteger
- Returns the String representation of this BigInteger in the
given radix.
- toString() -
Method in class java.math.BigInteger
- Returns the decimal String representation of this BigInteger.
- toString() -
Method in class java.math.MathContext
- Returns the string representation of this
MathContext
.
- toString() -
Method in class java.net.HttpCookie
- Constructs a cookie header string representation of this cookie,
which is in the format defined by corresponding cookie specification,
but without the leading "Cookie:" token.
- toString() -
Method in class java.net.InetAddress
- Converts this IP address to a
String
.
- toString() -
Method in class java.net.InetSocketAddress
- Constructs a string representation of this InetSocketAddress.
- toString() -
Method in class java.net.InterfaceAddress
- Converts this Interface address to a
String
.
- toString() -
Method in class java.net.NetworkInterface
-
- toString() -
Method in class java.net.Proxy
- Constructs a string representation of this Proxy.
- toString() -
Method in class java.net.ServerSocket
- Returns the implementation address and implementation port of
this socket as a
String
.
- toString() -
Method in class java.net.Socket
- Converts this socket to a
String
.
- toString() -
Method in class java.net.SocketImpl
- Returns the address and port of this socket as a
String
.
- toString() -
Method in class java.net.URI
- Returns the content of this URI as a string.
- toString() -
Method in class java.net.URL
- Constructs a string representation of this
URL
.
- toString() -
Method in class java.net.URLConnection
- Returns a
String
representation of this URL connection.
- toString() -
Method in class java.nio.ByteBuffer
- Returns a string summarizing the state of this buffer.
- toString() -
Method in class java.nio.ByteOrder
- Constructs a string describing this object.
- toString() -
Method in class java.nio.channels.FileChannel.MapMode
- Returns a string describing this file-mapping mode.
- toString() -
Method in class java.nio.channels.FileLock
- Returns a string describing the range, type, and validity of this lock.
- toString() -
Method in class java.nio.CharBuffer
- Returns a string containing the characters in this buffer.
- toString() -
Method in class java.nio.charset.Charset
- Returns a string describing this charset.
- toString() -
Method in class java.nio.charset.CoderResult
- Returns a string describing this coder result.
- toString() -
Method in class java.nio.charset.CodingErrorAction
- Returns a string describing this action.
- toString() -
Method in class java.nio.DoubleBuffer
- Returns a string summarizing the state of this buffer.
- toString() -
Method in class java.nio.FloatBuffer
- Returns a string summarizing the state of this buffer.
- toString() -
Method in class java.nio.IntBuffer
- Returns a string summarizing the state of this buffer.
- toString() -
Method in class java.nio.LongBuffer
- Returns a string summarizing the state of this buffer.
- toString() -
Method in class java.nio.ShortBuffer
- Returns a string summarizing the state of this buffer.
- toString() -
Method in class java.rmi.dgc.VMID
- Return string representation of this VMID.
- toString() -
Method in class java.rmi.server.LogStream
- Deprecated. no replacement
- toString() -
Method in class java.rmi.server.ObjID
- Returns a string representation of this object identifier.
- toString() -
Method in class java.rmi.server.Operation
- Deprecated. no replacement
- 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 a string representation of this
UID
.
- toString() -
Method in interface java.security.acl.Acl
- Returns a string representation of the
ACL contents.
- toString() -
Method in interface java.security.acl.AclEntry
- Returns a string representation of the contents of this ACL entry.
- toString() -
Method in interface java.security.acl.Permission
- Prints a string representation of this permission.
- toString() -
Method in class java.security.AlgorithmParameters
- Returns a formatted string describing the parameters.
- toString() -
Method in class java.security.cert.Certificate
- Returns a string representation of this certificate.
- toString() -
Method in class java.security.cert.CertPath
- Returns a string representation of this certification path.
- toString() -
Method in class java.security.cert.CollectionCertStoreParameters
- Returns a formatted string describing the parameters.
- toString() -
Method in class java.security.cert.CRL
- Returns a string representation of this CRL.
- toString() -
Method in class java.security.cert.LDAPCertStoreParameters
- Returns a formatted string describing the parameters.
- toString() -
Method in class java.security.cert.PKIXBuilderParameters
- Returns a formatted string describing the parameters.
- toString() -
Method in class java.security.cert.PKIXCertPathBuilderResult
- Return a printable representation of this
PKIXCertPathBuilderResult
.
- toString() -
Method in class java.security.cert.PKIXCertPathValidatorResult
- Return a printable representation of this
PKIXCertPathValidatorResult
.
- toString() -
Method in class java.security.cert.PKIXParameters
- Returns a formatted string describing the parameters.
- toString() -
Method in class java.security.cert.PolicyQualifierInfo
- Return a printable representation of this
PolicyQualifierInfo
.
- toString() -
Method in class java.security.cert.TrustAnchor
- Returns a formatted string describing the
TrustAnchor
.
- toString() -
Method in class java.security.cert.X509CertSelector
- Return a printable representation of the
CertSelector
.
- toString() -
Method in class java.security.cert.X509CRLEntry
- Returns a string representation of this CRL entry.
- toString() -
Method in class java.security.cert.X509CRLSelector
- Returns a printable representation of the
X509CRLSelector
.
- toString(boolean) -
Method in interface java.security.Certificate
- Deprecated. Returns a string that represents the contents of the certificate.
- toString() -
Method in class java.security.CodeSigner
- Returns a string describing this code signer.
- toString() -
Method in class java.security.CodeSource
- Returns a string describing this CodeSource, telling its
URL and certificates.
- toString() -
Method in class java.security.DigestInputStream
- Prints a string representation of this digest input stream and
its associated message digest object.
- toString() -
Method in class java.security.DigestOutputStream
- Prints a string representation of this digest output stream and
its associated message digest object.
- toString() -
Method in class java.security.Identity
- Deprecated. Returns a short string describing this identity, telling its
name and its scope (if any).
- toString(boolean) -
Method in class java.security.Identity
- Deprecated. Returns a string representation of this identity, with
optionally more details than that provided by the
toString
method without any arguments.
- toString() -
Method in class java.security.IdentityScope
- Deprecated. Returns a string representation of this identity scope, including
its name, its scope name, and the number of identities in this
identity scope.
- toString() -
Method in class java.security.KeyStore.PrivateKeyEntry
- Returns a string representation of this PrivateKeyEntry.
- toString() -
Method in class java.security.KeyStore.SecretKeyEntry
- Returns a string representation of this SecretKeyEntry.
- toString() -
Method in class java.security.KeyStore.TrustedCertificateEntry
- Returns a string representation of this TrustedCertificateEntry.
- toString() -
Method in class java.security.MessageDigest
- Returns a string representation of this message digest object.
- toString() -
Method in class java.security.Permission
- Returns a string describing this Permission.
- toString() -
Method in class java.security.PermissionCollection
- Returns a string describing this PermissionCollection object,
providing information about all the permissions it contains.
- toString() -
Method in interface java.security.Principal
- Returns a string representation of this principal.
- toString() -
Method in exception java.security.PrivilegedActionException
-
- toString() -
Method in class java.security.ProtectionDomain
- Convert a ProtectionDomain to a String.
- toString() -
Method in class java.security.Provider.Service
- Return a String representation of this service.
- toString() -
Method in class java.security.Provider
- Returns a string with the name and the version number
of this provider.
- toString() -
Method in class java.security.Signature
- Returns a string representation of this signature object,
providing information that includes the state of the object
and the name of the algorithm used.
- toString() -
Method in class java.security.Signer
- Deprecated. Returns a string of information about the signer.
- toString() -
Method in class java.security.Timestamp
- Returns a string describing this timestamp.
- toString() -
Method in class java.security.UnresolvedPermission
- Returns a string describing this UnresolvedPermission.
- toString() -
Method in class java.sql.Date
- Formats a date in the date escape format yyyy-mm-dd.
- toString() -
Method in interface java.sql.RowId
- Returns a String representing the value of the SQL ROWID designated by this
java.sql.RowId
object.
- toString() -
Method in class java.sql.Time
- Formats a time in JDBC time escape format.
- toString() -
Method in class java.sql.Timestamp
- Formats a timestamp in JDBC timestamp escape format.
- toString() -
Method in class java.text.Annotation
- Returns the String representation of this Annotation.
- toString() -
Method in class java.text.AttributedCharacterIterator.Attribute
- Returns a string representation of the object.
- toString() -
Method in class java.text.Bidi
- Display the bidi internal state, used in debugging.
- toString() -
Method in class java.text.FieldPosition
- Return a string representation of this FieldPosition.
- toString() -
Method in class java.text.ParsePosition
- Return a string representation of this ParsePosition.
- toString() -
Method in class java.util.AbstractCollection
- Returns a string representation of this collection.
- toString() -
Method in class java.util.AbstractMap.SimpleEntry
- Returns a String representation of this map entry.
- toString() -
Method in class java.util.AbstractMap.SimpleImmutableEntry
- Returns a String representation of this map entry.
- toString() -
Method in class java.util.AbstractMap
- Returns a string representation of this map.
- toString(long[]) -
Static method in class java.util.Arrays
- Returns a string representation of the contents of the specified array.
- toString(int[]) -
Static method in class java.util.Arrays
- Returns a string representation of the contents of the specified array.
- toString(short[]) -
Static method in class java.util.Arrays
- Returns a string representation of the contents of the specified array.
- toString(char[]) -
Static method in class java.util.Arrays
- Returns a string representation of the contents of the specified array.
- toString(byte[]) -
Static method in class java.util.Arrays
- Returns a string representation of the contents of the specified array.
- toString(boolean[]) -
Static method in class java.util.Arrays
- Returns a string representation of the contents of the specified array.
- toString(float[]) -
Static method in class java.util.Arrays
- Returns a string representation of the contents of the specified array.
- toString(double[]) -
Static method in class java.util.Arrays
- Returns a string representation of the contents of the specified array.
- toString(Object[]) -
Static method in class java.util.Arrays
- Returns a string representation of the contents of the specified array.
- toString() -
Method in class java.util.BitSet
- Returns a string representation of this bit set.
- toString() -
Method in class java.util.Calendar
- Return a string representation of this calendar.
- toString() -
Method in class java.util.concurrent.ArrayBlockingQueue
-
- toString() -
Method in class java.util.concurrent.atomic.AtomicBoolean
- Returns the String representation of the current value.
- toString() -
Method in class java.util.concurrent.atomic.AtomicInteger
- Returns the String representation of the current value.
- toString() -
Method in class java.util.concurrent.atomic.AtomicIntegerArray
- Returns the String representation of the current values of array.
- toString() -
Method in class java.util.concurrent.atomic.AtomicLong
- Returns the String representation of the current value.
- toString() -
Method in class java.util.concurrent.atomic.AtomicLongArray
- Returns the String representation of the current values of array.
- toString() -
Method in class java.util.concurrent.atomic.AtomicReference
- Returns the String representation of the current value.
- toString() -
Method in class java.util.concurrent.atomic.AtomicReferenceArray
- Returns the String representation of the current values of array.
- toString() -
Method in class java.util.concurrent.CopyOnWriteArrayList
- Returns a string representation of this list.
- toString() -
Method in class java.util.concurrent.CountDownLatch
- Returns a string identifying this latch, as well as its state.
- toString() -
Method in class java.util.concurrent.LinkedBlockingDeque
-
- toString() -
Method in class java.util.concurrent.LinkedBlockingQueue
-
- toString() -
Method in class java.util.concurrent.locks.AbstractQueuedLongSynchronizer
- Returns a string identifying this synchronizer, as well as its state.
- toString() -
Method in class java.util.concurrent.locks.AbstractQueuedSynchronizer
- Returns a string identifying this synchronizer, as well as its state.
- toString() -
Method in class java.util.concurrent.locks.ReentrantLock
- Returns a string identifying this lock, as well as its lock state.
- toString() -
Method in class java.util.concurrent.locks.ReentrantReadWriteLock.ReadLock
- Returns a string identifying this lock, as well as its lock state.
- toString() -
Method in class java.util.concurrent.locks.ReentrantReadWriteLock
- Returns a string identifying this lock, as well as its lock state.
- toString() -
Method in class java.util.concurrent.locks.ReentrantReadWriteLock.WriteLock
- Returns a string identifying this lock, as well as its lock
state.
- toString() -
Method in class java.util.concurrent.PriorityBlockingQueue
-
- toString() -
Method in class java.util.concurrent.Semaphore
- Returns a string identifying this semaphore, as well as its state.
- toString() -
Method in class java.util.Currency
- Returns the ISO 4217 currency code of this currency.
- toString() -
Method in class java.util.Date
- Converts this
Date
object to a String
of the form:
- toString() -
Method in class java.util.EventObject
- Returns a String representation of this EventObject.
- toString() -
Method in class java.util.Formatter
- Returns the result of invoking toString() on the destination
for the output.
- 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.jar.Attributes.Name
- Returns the attribute name as a String.
- 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.logging.Level
-
- toString() -
Method in class java.util.prefs.AbstractPreferences
- Returns the absolute path name of this preferences node.
- toString() -
Method in class java.util.prefs.Preferences
- Returns a string representation of this preferences node,
as if computed by the expression:(this.isUserNode() ? "User" :
"System") + " Preference Node: " + this.absolutePath().
- toString() -
Method in class java.util.regex.Matcher
- Returns the string representation of this matcher.
- toString() -
Method in class java.util.regex.Pattern
- Returns the string representation of this pattern.
- toString() -
Method in class java.util.Scanner
- Returns the string representation of this
Scanner
.
- toString() -
Method in class java.util.ServiceLoader
- Returns a string describing this service.
- toString() -
Method in class java.util.SimpleTimeZone
- Returns a string representation of this time zone.
- toString() -
Method in class java.util.UUID
- Returns a
String
object representing this
UUID
.
- 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.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.AccessibleRelationSet
- Creates a localized String representing all the relations in the set
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.activation.MimeType
- Return the String representation of this object.
- toString() -
Method in class javax.activation.MimeTypeParameterList
- Return a string representation of this object.
- toString() -
Method in class javax.imageio.plugins.jpeg.JPEGHuffmanTable
-
- toString() -
Method in class javax.imageio.plugins.jpeg.JPEGQTable
-
- toString() -
Method in interface javax.lang.model.element.AnnotationValue
- Returns a string representation of this value.
- toString() -
Method in enum javax.lang.model.element.Modifier
- Returns this modifier's name in lowercase.
- toString() -
Method in interface javax.lang.model.type.TypeMirror
- Returns an informative string representation of this type.
- toString() -
Method in class javax.management.Attribute
- Returns a String object representing this Attribute's value.
- toString() -
Method in class javax.management.AttributeValueExp
- Returns the string representing its value.
- toString() -
Method in exception javax.management.BadAttributeValueExpException
- Returns the string representing the object.
- toString() -
Method in exception javax.management.BadBinaryOpValueExpException
- Returns the string representing the object.
- toString() -
Method in exception javax.management.BadStringOperationException
- Returns the string representing the object.
- toString() -
Method in class javax.management.ImmutableDescriptor
-
- toString() -
Method in class javax.management.MBeanAttributeInfo
-
- toString() -
Method in class javax.management.MBeanConstructorInfo
-
- toString() -
Method in class javax.management.MBeanInfo
-
- toString() -
Method in class javax.management.MBeanNotificationInfo
-
- toString() -
Method in class javax.management.MBeanOperationInfo
-
- toString() -
Method in class javax.management.MBeanParameterInfo
-
- toString() -
Method in class javax.management.modelmbean.DescriptorSupport
- Returns a human readable string representing the
descriptor.
- toString() -
Method in class javax.management.modelmbean.ModelMBeanAttributeInfo
- Returns a human-readable version of the
ModelMBeanAttributeInfo instance.
- toString() -
Method in class javax.management.modelmbean.ModelMBeanConstructorInfo
- Returns a string containing the entire contents of the ModelMBeanConstructorInfo in human readable form.
- toString() -
Method in class javax.management.modelmbean.ModelMBeanNotificationInfo
- Returns a human readable string containing
ModelMBeanNotificationInfo.
- toString() -
Method in class javax.management.modelmbean.ModelMBeanOperationInfo
- Returns a string containing the entire contents of the ModelMBeanOperationInfo in human readable form.
- toString() -
Method in class javax.management.Notification
- Returns a String representation of this notification.
- toString() -
Method in class javax.management.ObjectInstance
- Returns a string representing this ObjectInstance object.
- toString() -
Method in class javax.management.ObjectName
- Returns a string representation of the object name.
- toString() -
Method in class javax.management.openmbean.ArrayType
- Returns a string representation of this
ArrayType
instance.
- toString() -
Method in interface javax.management.openmbean.CompositeData
- Returns a string representation of this
CompositeData
instance.
- toString() -
Method in class javax.management.openmbean.CompositeDataSupport
- Returns a string representation of this
CompositeDataSupport
instance.
- toString() -
Method in class javax.management.openmbean.CompositeType
- Returns a string representation of this
CompositeType
instance.
- toString() -
Method in interface javax.management.openmbean.OpenMBeanAttributeInfo
- Returns a string representation of this
OpenMBeanAttributeInfo
instance.
- toString() -
Method in class javax.management.openmbean.OpenMBeanAttributeInfoSupport
- Returns a string representation of this
OpenMBeanAttributeInfoSupport
instance.
- toString() -
Method in interface javax.management.openmbean.OpenMBeanConstructorInfo
- Returns a string representation of this
OpenMBeanConstructorInfo
instance.
- toString() -
Method in class javax.management.openmbean.OpenMBeanConstructorInfoSupport
- Returns a string representation of this
OpenMBeanConstructorInfoSupport
instance.
- toString() -
Method in interface javax.management.openmbean.OpenMBeanInfo
- Returns a string representation of this
OpenMBeanInfo
instance.
- toString() -
Method in class javax.management.openmbean.OpenMBeanInfoSupport
- Returns a string representation of this
OpenMBeanInfoSupport
instance.
- toString() -
Method in interface javax.management.openmbean.OpenMBeanOperationInfo
- Returns a string representation of this
OpenMBeanOperationInfo
instance.
- toString() -
Method in class javax.management.openmbean.OpenMBeanOperationInfoSupport
- Returns a string representation of this
OpenMBeanOperationInfoSupport
instance.
- toString() -
Method in interface javax.management.openmbean.OpenMBeanParameterInfo
- Returns a string representation of this
OpenMBeanParameterInfo
instance.
- toString() -
Method in class javax.management.openmbean.OpenMBeanParameterInfoSupport
- Returns a string representation of this
OpenMBeanParameterInfoSupport
instance.
- toString() -
Method in class javax.management.openmbean.OpenType
- Returns a string representation of this open type instance.
- toString() -
Method in class javax.management.openmbean.SimpleType
- Returns a string representation of this
SimpleType
instance.
- toString() -
Method in interface javax.management.openmbean.TabularData
- Returns a string representation of this
TabularData
instance.
- toString() -
Method in class javax.management.openmbean.TabularDataSupport
- Returns a string representation of this
TabularDataSupport
instance.
- toString() -
Method in class javax.management.openmbean.TabularType
- Returns a string representation of this
TabularType
instance.
- toString() -
Method in class javax.management.relation.Role
- Returns a string describing the role.
- toString() -
Method in class javax.management.relation.RoleInfo
- Returns a string describing the role info.
- toString() -
Method in class javax.management.relation.RoleUnresolved
- Return a string describing this object.
- toString() -
Method in class javax.management.remote.JMXPrincipal
- Returns a string representation of this
JMXPrincipal
.
- toString() -
Method in class javax.management.remote.JMXServiceURL
- The string representation of this Service URL.
- toString() -
Method in class javax.management.remote.NotificationResult
- Returns a string representation of the object.
- toString() -
Method in class javax.management.remote.rmi.RMIConnectionImpl
- Returns a string representation of this object.
- toString() -
Method in class javax.management.remote.rmi.RMIConnector
- Returns a string representation of this object.
- toString() -
Method in class javax.management.remote.TargetedNotification
- Returns a textual representation of this Targeted Notification.
- toString() -
Method in class javax.management.StringValueExp
- Returns the string representing the object.
- toString() -
Method in class javax.naming.BinaryRefAddr
- Generates the string representation of this address.
- toString() -
Method in class javax.naming.Binding
- Generates the string representation of this binding.
- toString() -
Method in class javax.naming.CompositeName
- Generates the string representation of this composite name.
- 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 exception 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.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.naming.directory.SearchResult
- Generates the string representation of this SearchResult.
- toString() -
Method in class javax.naming.ldap.LdapName
- Returns a string representation of this LDAP name in a format
defined by RFC 2253
and described in the class description.
- toString() -
Method in class javax.naming.ldap.Rdn
- Returns this Rdn as a string represented in a format defined by
RFC 2253 and described
in the class description for
LdapName
.
- toString() -
Method in exception javax.naming.LinkException
- Generates the string representation of this exception.
- toString(boolean) -
Method in exception javax.naming.LinkException
- Generates the string representation of this exception.
- toString() -
Method in class javax.naming.NameClassPair
- Generates the string representation of this name/class pair.
- toString() -
Method in exception javax.naming.NamingException
- Generates the string representation of this exception.
- toString(boolean) -
Method in exception javax.naming.NamingException
- Generates the string representation in more detail.
- toString() -
Method in class javax.naming.RefAddr
- Generates the string representation of this address.
- toString() -
Method in class javax.naming.Reference
- Generates the string representation of this reference.
- toString() -
Method in class javax.net.ssl.SSLEngineResult
- Returns a String representation of this object.
- toString() -
Method in class javax.print.attribute.DateTimeSyntax
- Returns a string value corresponding to this date-time attribute.
- toString() -
Method in class javax.print.attribute.EnumSyntax
- Returns a string value corresponding to this enumeration value.
- toString() -
Method in class javax.print.attribute.IntegerSyntax
- Returns a string value corresponding to this integer attribute.
- toString(int, String) -
Method in class javax.print.attribute.ResolutionSyntax
- Returns a string version of this resolution attribute in the given units.
- toString() -
Method in class javax.print.attribute.ResolutionSyntax
- Returns a string version of this resolution attribute.
- toString() -
Method in class javax.print.attribute.SetOfIntegerSyntax
- Returns a string value corresponding to this set-of-integer attribute.
- toString(int, String) -
Method in class javax.print.attribute.Size2DSyntax
- Returns a string version of this two-dimensional size attribute in the
given units.
- toString() -
Method in class javax.print.attribute.Size2DSyntax
- Returns a string version of this two-dimensional size attribute.
- toString(int, String) -
Method in class javax.print.attribute.standard.MediaPrintableArea
- Returns a string version of this rectangular size attribute in the
given units.
- toString() -
Method in class javax.print.attribute.standard.MediaPrintableArea
- Returns a string version of this rectangular size attribute in mm.
- toString() -
Method in class javax.print.attribute.TextSyntax
- Returns a String identifying this text attribute.
- toString() -
Method in class javax.print.attribute.URISyntax
- Returns a String identifying this URI attribute.
- toString() -
Method in class javax.print.DocFlavor
- Converts this
DocFlavor
to a string.
- toString() -
Method in class javax.print.event.PrintEvent
-
- toString() -
Method in class javax.rmi.CORBA.Stub
- Returns a string representation of this stub.
- toString(Stub) -
Method in interface javax.rmi.CORBA.StubDelegate
- Delegation call for
Stub.toString()
.
- toString() -
Method in class javax.security.auth.kerberos.KerberosKey
-
- toString() -
Method in class javax.security.auth.kerberos.KerberosPrincipal
-
- toString() -
Method in class javax.security.auth.kerberos.KerberosTicket
-
- toString() -
Method in class javax.security.auth.login.AppConfigurationEntry.LoginModuleControlFlag
- Return a String representation of this controlFlag.
- toString() -
Method in class javax.security.auth.Subject
- Return the String representation of this
Subject
.
- toString() -
Method in class javax.security.auth.x500.X500Principal
- Return a user-friendly string representation of this
X500Principal
.
- toString() -
Method in class javax.security.cert.Certificate
- Returns a string representation of this certificate.
- toString() -
Method in exception javax.security.sasl.SaslException
- Returns the string representation of this exception.
- 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.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.AudioFormat.Encoding
- Provides the
String
representation of the encoding.
- 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".
- toString() -
Method in class javax.sound.sampled.BooleanControl
- 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.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.DataLine.Info
- Obtains a textual description of the data line info.
- toString() -
Method in class javax.sound.sampled.EnumControl
- Provides a string representation of the control.
- toString() -
Method in class javax.sound.sampled.FloatControl
- Provides a string representation of the control
- toString() -
Method in class javax.sound.sampled.Line.Info
- Obtains a textual description of the line info.
- 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.Mixer.Info
- Provides a string representation of the mixer info.
- toString() -
Method in class javax.sound.sampled.Port.Info
- Provides a
String
representation
of the port.
- 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.swing.DefaultBoundedRangeModel
- Returns a string that displays all of the
BoundedRangeModel
properties.
- toString() -
Method in class javax.swing.DefaultListModel
- 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.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.HyperlinkEvent.EventType
- Converts the type to a string.
- toString() -
Method in class javax.swing.event.ListDataEvent
- Returns a string representation of this ListDataEvent.
- 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.filechooser.FileNameExtensionFilter
- Returns a string representation of the
FileNameExtensionFilter
.
- toString() -
Method in class javax.swing.GroupLayout
- Returns a string representation of this
GroupLayout
.
- toString() -
Method in class javax.swing.ImageIcon
- Returns a string representation of this image.
- toString() -
Method in class javax.swing.JList.DropLocation
- Returns a string representation of this drop location.
- toString() -
Method in class javax.swing.JTable.DropLocation
- Returns a string representation of this drop location.
- toString() -
Method in class javax.swing.JTree.DropLocation
- Returns a string representation of this drop location.
- toString() -
Method in class javax.swing.LookAndFeel
- Returns a string that displays and identifies this
object's properties.
- toString() -
Method in class javax.swing.plaf.synth.ColorType
- Returns the textual description of this
ColorType
.
- toString() -
Method in class javax.swing.plaf.synth.Region
- Returns the name of the Region.
- toString() -
Method in class javax.swing.RepaintManager
- 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(TableModel, int, int) -
Method in class javax.swing.table.TableStringConverter
- Returns the string representation of the value at the specified
location.
- toString() -
Method in class javax.swing.text.AbstractDocument.BranchElement
- 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.AbstractDocument.LeafElement
- Converts the element to a string.
- toString() -
Method in class javax.swing.text.DefaultCaret
-
- toString() -
Method in class javax.swing.text.DefaultStyledDocument.ElementSpec
- Converts the element to a string.
- toString() -
Method in class javax.swing.text.html.CSS.Attribute
- The string representation of the attribute.
- toString() -
Method in class javax.swing.text.html.HTML.Attribute
- Returns the string representation of this attribute.
- toString() -
Method in class javax.swing.text.html.HTML.Tag
- Returns the string representation of the
tag.
- toString() -
Method in class javax.swing.text.html.Option
- String representation is the label.
- toString() -
Method in class javax.swing.text.html.parser.AttributeList
-
- toString() -
Method in class javax.swing.text.html.parser.ContentModel
- Convert to a string.
- toString() -
Method in class javax.swing.text.html.parser.DTD
- Returns a string representation of this DTD.
- toString() -
Method in class javax.swing.text.html.parser.Element
- Convert to a string.
- toString() -
Method in class javax.swing.text.JTextComponent.DropLocation
- Returns a string representation of this drop location.
- toString() -
Method in class javax.swing.text.Position.Bias
- string representation
- toString() -
Method in class javax.swing.text.Segment
- Converts a segment into a String.
- toString() -
Method in class javax.swing.text.SimpleAttributeSet
- Converts the attribute set to a String.
- toString() -
Method in class javax.swing.text.StyleConstants
- Returns the string representation.
- toString() -
Method in class javax.swing.text.StyleContext.NamedStyle
- Converts the style 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
- Converts a StyleContext to a String.
- toString() -
Method in class javax.swing.text.TabSet
- Returns the string representation of the set of tabs.
- toString() -
Method in class javax.swing.text.TabStop
-
- toString() -
Method in class javax.swing.TransferHandler.DropLocation
- Returns a string representation of this drop location.
- 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.DefaultTreeSelectionModel
- Returns a string that displays and identifies this
object's properties.
- 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.UIManager.LookAndFeelInfo
- 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.UndoableEditSupport
- 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.tools.SimpleJavaFileObject
-
- toString() -
Method in class javax.xml.bind.helpers.ValidationEventImpl
- Returns a string representation of this object in a format
helpful to debugging.
- toString() -
Method in class javax.xml.bind.helpers.ValidationEventLocatorImpl
- Returns a string representation of this object in a format
helpful to debugging.
- toString() -
Method in exception javax.xml.bind.JAXBException
- Returns a short description of this JAXBException.
- toString() -
Method in exception javax.xml.bind.TypeConstraintException
- Returns a short description of this TypeConstraintException.
- toString() -
Method in class javax.xml.crypto.dsig.spec.XPathType.Filter
- Returns the string form of the operation.
- toString() -
Method in class javax.xml.crypto.KeySelector.Purpose
- Returns a string representation of this purpose ("sign",
"verify", "encrypt", or "decrypt").
- toString() -
Method in class javax.xml.datatype.DatatypeConstants.Field
- Returns a field name in English.
- toString() -
Method in class javax.xml.datatype.Duration
- Returns a
String
representation of this Duration
Object
.
- toString() -
Method in class javax.xml.datatype.XMLGregorianCalendar
- Returns a
String
representation of this XMLGregorianCalendar
Object
.
- toString() -
Method in class javax.xml.namespace.QName
String
representation of this
QName
.
- toString() -
Method in exception org.ietf.jgss.GSSException
- Returns a textual representation of both the major and the minor
status codes.
- toString() -
Method in interface org.ietf.jgss.GSSName
- Returns a textual representation of the
GSSName
object.
- toString() -
Method in class org.ietf.jgss.Oid
- Returns a string representation of the oid's integer components
in dot separated notation.
- toString(Object) -
Method in class org.omg.CORBA.portable.Delegate
- Provides the implementation to override the toString() method
of the delegating CORBA object.
- toString() -
Method in class org.omg.CORBA.portable.ObjectImpl
- Returns a
String
object that represents this
ObjectImpl
object.
- toString() -
Method in exception org.omg.CORBA.SystemException
- Converts this exception to a representative string.
- toString() -
Method in exception org.xml.sax.SAXException
- Override toString to pick up any embedded exception.
- toStub(Remote) -
Static method in class java.rmi.server.RemoteObject
- Returns the stub for the remote object
obj
passed
as a parameter.
- toStub() -
Method in class javax.management.remote.rmi.RMIIIOPServerImpl
- Returns an IIOP stub.
- toStub() -
Method in class javax.management.remote.rmi.RMIJRMPServerImpl
- Returns a serializable stub for this
RMIServer
object.
- toStub() -
Method in class javax.management.remote.rmi.RMIServerImpl
- Returns a remotable stub for this server object.
- toStub(Remote) -
Method in interface javax.rmi.CORBA.PortableRemoteObjectDelegate
- Delegation call for
PortableRemoteObject.toStub(java.rmi.Remote)
.
- toStub(Remote) -
Static method in class javax.rmi.PortableRemoteObject
- Returns a stub for the given server object.
- 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 using case mapping
information from the UnicodeData file.
- toTitleCase(int) -
Static method in class java.lang.Character
- Converts the character (Unicode code point) argument to titlecase using case mapping
information from the UnicodeData file.
- TOTOP_TOLEFT -
Static variable in class javax.print.attribute.standard.PresentationDirection
- Pages are laid out in columns starting at the bottom right,
proceeeding towards the top & left.
- TOTOP_TORIGHT -
Static variable in class javax.print.attribute.standard.PresentationDirection
- Pages are laid out in columns starting at the bottom left,
proceeeding towards the top & right.
- toUnicode(String, int) -
Static method in class java.net.IDN
- Translates a string from ASCII Compatible Encoding (ACE) to Unicode,
as defined by the ToUnicode operation of RFC 3490.
- toUnicode(String) -
Static method in class java.net.IDN
- Translates a string from ASCII Compatible Encoding (ACE) to Unicode,
as defined by the ToUnicode operation of RFC 3490.
- toUpperCase(char) -
Static method in class java.lang.Character
- Converts the character argument to uppercase using case mapping
information from the UnicodeData file.
- toUpperCase(int) -
Static method in class java.lang.Character
- Converts the character (Unicode code point) argument to
uppercase using case mapping information from the UnicodeData
file.
- toUpperCase(Locale) -
Method in class java.lang.String
- Converts all of the characters in this
String
to upper
case using the rules of the given Locale
.
- toUpperCase() -
Method in class java.lang.String
- Converts all of the characters in this
String
to upper
case using the rules of the default locale.
- toURI() -
Method in class java.io.File
- Constructs a file: URI that represents this abstract pathname.
- toURI() -
Method in class java.net.URL
- Returns a
URI
equivalent to this URL.
- toUri() -
Method in interface javax.tools.FileObject
- Returns a URI identifying this file object.
- toUri() -
Method in class javax.tools.ForwardingFileObject
-
- toUri() -
Method in class javax.tools.SimpleJavaFileObject
-
- toURL() -
Method in class java.io.File
- Deprecated. This method does not automatically escape characters that
are illegal in URLs. It is recommended that new code convert an
abstract pathname into a URL by first converting it into a URI, via the
toURI
method, and then converting the URI into a URL
via the URI.toURL
method.
- toURL() -
Method in class java.net.URI
- Constructs a URL from this URI.
- 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.
- toXMLFormat() -
Method in class javax.xml.datatype.XMLGregorianCalendar
- Return the lexical representation of
this
instance.
- toXMLString() -
Method in class javax.management.modelmbean.DescriptorSupport
- Returns an XML String representing the descriptor.
- 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 -
Static variable in class java.awt.event.AdjustmentEvent
- The absolute tracking adjustment type.
- Track - Class in javax.sound.midi
- 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.
- 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
-
- TRACKING -
Static variable in class java.awt.font.TextAttribute
- Attribute key to control tracking.
- TRACKING_LOOSE -
Static variable in class java.awt.font.TextAttribute
- Perform loose tracking.
- TRACKING_TIGHT -
Static variable in class java.awt.font.TextAttribute
- Perform tight tracking.
- 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 trailing edge of the container's
orientation, for example, to the right in left-to-right orientations.
- trailing(int) -
Static method in class java.awt.font.TextHitInfo
- Creates a hit on the trailing edge of the character at
the specified
charIndex
.
- 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 -
Static variable in interface javax.swing.SwingConstants
- Identifies the trailing edge of text for use with left-to-right
and right-to-left languages.
- TRANSACTION_MODE - Exception in org.omg.CORBA
- The CORBA
TRANSACTION_MODE
exception is thrown
by the client ORB if it detects a mismatch between the
InvocationPolicy in the IOR and the chosen invocation path
(i.e, direct or routed invocation). - TRANSACTION_MODE() -
Constructor for exception org.omg.CORBA.TRANSACTION_MODE
- Constructs a
TRANSACTION_MODE
exception with a default
minor code of 0, a completion state of CompletionStatus.COMPLETED_NO,
and a null description.
- TRANSACTION_MODE(String) -
Constructor for exception org.omg.CORBA.TRANSACTION_MODE
- Constructs a
TRANSACTION_MODE
exception with the specified
description message, a minor code of 0, and a completion state of
COMPLETED_NO.
- TRANSACTION_MODE(int, CompletionStatus) -
Constructor for exception org.omg.CORBA.TRANSACTION_MODE
- Constructs a
TRANSACTION_MODE
exception with the specified
minor code and completion status.
- TRANSACTION_MODE(String, int, CompletionStatus) -
Constructor for exception org.omg.CORBA.TRANSACTION_MODE
- Constructs a
TRANSACTION_MODE
exception with the specified
description message, minor code, and completion status.
- TRANSACTION_NONE -
Static variable in interface java.sql.Connection
- A constant indicating that transactions are not supported.
- TRANSACTION_READ_COMMITTED -
Static variable in interface java.sql.Connection
- A constant indicating that
dirty reads are prevented; non-repeatable reads and phantom
reads can occur.
- TRANSACTION_READ_UNCOMMITTED -
Static variable in interface java.sql.Connection
- A constant indicating that
dirty reads, non-repeatable reads and phantom reads can occur.
- TRANSACTION_REPEATABLE_READ -
Static variable in interface java.sql.Connection
- A constant indicating that
dirty reads and non-repeatable reads are prevented; phantom
reads can occur.
- TRANSACTION_REQUIRED - Exception in org.omg.CORBA
- Exception indicates that the request carried a null transaction context,
but an active transaction is required.
- TRANSACTION_REQUIRED() -
Constructor for exception 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(String) -
Constructor for exception 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(int, CompletionStatus) -
Constructor for exception org.omg.CORBA.TRANSACTION_REQUIRED
- Constructs a
TRANSACTION_REQUIRED
exception with the specified
minor code and completion status.
- TRANSACTION_REQUIRED(String, int, CompletionStatus) -
Constructor for exception org.omg.CORBA.TRANSACTION_REQUIRED
- Constructs a
TRANSACTION_REQUIRED
exception with the specified description
message, minor code, and completion status.
- TRANSACTION_ROLLEDBACK - Exception in org.omg.CORBA
- Exception thrown when the transaction associated with the request has
already been rolled back or marked to roll back.
- TRANSACTION_ROLLEDBACK() -
Constructor for exception 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(String) -
Constructor for exception 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(int, CompletionStatus) -
Constructor for exception org.omg.CORBA.TRANSACTION_ROLLEDBACK
- Constructs a
TRANSACTION_ROLLEDBACK
exception with the specified
minor code and completion status.
- TRANSACTION_ROLLEDBACK(String, int, CompletionStatus) -
Constructor for exception 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
- A constant indicating that
dirty reads, non-repeatable reads and phantom reads are prevented.
- TRANSACTION_UNAVAILABLE - Exception in org.omg.CORBA
- The CORBA
TRANSACTION_UNAVAILABLE
exception is thrown
by the ORB when it cannot process a transaction service context because
its connection to the Transaction Service has been abnormally terminated. - TRANSACTION_UNAVAILABLE() -
Constructor for exception org.omg.CORBA.TRANSACTION_UNAVAILABLE
- Constructs a
TRANSACTION_UNAVAILABLE
exception
with a default minor code of 0, a completion state of
CompletionStatus.COMPLETED_NO, and a null description.
- TRANSACTION_UNAVAILABLE(String) -
Constructor for exception org.omg.CORBA.TRANSACTION_UNAVAILABLE
- Constructs a
TRANSACTION_UNAVAILABLE
exception with the
specifieddescription message, a minor code of 0, and a completion state
of COMPLETED_NO.
- TRANSACTION_UNAVAILABLE(int, CompletionStatus) -
Constructor for exception org.omg.CORBA.TRANSACTION_UNAVAILABLE
- Constructs a
TRANSACTION_UNAVAILABLE
exception with the
specified minor code and completion status.
- TRANSACTION_UNAVAILABLE(String, int, CompletionStatus) -
Constructor for exception org.omg.CORBA.TRANSACTION_UNAVAILABLE
- Constructs a
TRANSACTION_UNAVAILABLE
exception with the
specified description message, minor code, and completion status.
- TransactionalWriter - Interface in javax.sql.rowset.spi
- A specialized interface that facilitates an extension of the standard
SyncProvider
abstract class so that it has finer grained
transaction control. - TransactionRequiredException - Exception in javax.transaction
- This exception indicates that a request carried a null transaction context,
but the target object requires an activate transaction.
- TransactionRequiredException() -
Constructor for exception javax.transaction.TransactionRequiredException
-
- TransactionRequiredException(String) -
Constructor for exception javax.transaction.TransactionRequiredException
-
- TransactionRolledbackException - Exception in javax.transaction
- This exception indicates that the transaction associated with processing
of the request has been rolled back, or marked to roll back.
- TransactionRolledbackException() -
Constructor for exception javax.transaction.TransactionRolledbackException
-
- TransactionRolledbackException(String) -
Constructor for exception javax.transaction.TransactionRolledbackException
-
- TransactionService - Interface in org.omg.IOP
- org/omg/IOP/TransactionService.java .
- Transferable - Interface in java.awt.datatransfer
- Defines the interface for classes that can be used to provide data
for a transfer operation.
- transferable -
Variable in class java.awt.dnd.DropTargetContext.TransferableProxy
- The encapsulated
Transferable
object.
- transferablesFlavorsChanged() -
Method in class java.awt.dnd.DragSourceContext
- Notifies the peer that the
Transferable
's
DataFlavor
s have changed.
- transferFocus() -
Method in class java.awt.Component
- Transfers the focus to the next component, as though this Component were
the focus owner.
- transferFocusBackward() -
Method in class java.awt.Component
- Transfers the focus to the previous component, as though this Component
were the focus owner.
- transferFocusBackward() -
Method in class java.awt.Container
-
- transferFocusDownCycle() -
Method in class java.awt.Container
- Transfers the focus down one focus traversal cycle.
- transferFocusUpCycle() -
Method in class java.awt.Component
- Transfers the focus up one focus traversal cycle.
- transferFrom(ReadableByteChannel, long, long) -
Method in class java.nio.channels.FileChannel
- Transfers bytes into this channel's file from the given readable byte
channel.
- TransferHandler - Class in javax.swing
- This class is used to handle the transfer of a
Transferable
to and from Swing components. - TransferHandler(String) -
Constructor for class javax.swing.TransferHandler
- Constructs a transfer handler that can transfer a Java Bean property
from one component to another via the clipboard or a drag and drop
operation.
- TransferHandler() -
Constructor for class javax.swing.TransferHandler
- Convenience constructor for subclasses.
- TransferHandler.DropLocation - Class in javax.swing
- Represents a location where dropped data should be inserted.
- TransferHandler.DropLocation(Point) -
Constructor for class javax.swing.TransferHandler.DropLocation
- Constructs a drop location for the given point.
- TransferHandler.TransferSupport - Class in javax.swing
- This class encapsulates all relevant details of a clipboard
or drag and drop transfer, and also allows for customizing
aspects of the drag and drop experience.
- TransferHandler.TransferSupport(Component, Transferable) -
Constructor for class javax.swing.TransferHandler.TransferSupport
- Create a
TransferSupport
with isDrop()
false
for the given component and
Transferable
.
- transferTo(long, long, WritableByteChannel) -
Method in class java.nio.channels.FileChannel
- Transfers bytes from this channel's file to the given writable byte
channel.
- 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(Point2D, Point2D) -
Method in class java.awt.geom.AffineTransform
- Transforms the specified
ptSrc
and stores the result
in ptDst
.
- transform(Point2D[], int, Point2D[], int, int) -
Method in class java.awt.geom.AffineTransform
- Transforms an array of point objects by this transform.
- transform(float[], int, float[], int, int) -
Method in class java.awt.geom.AffineTransform
- Transforms an array of floating point coordinates by this transform.
- transform(double[], int, double[], int, int) -
Method in class java.awt.geom.AffineTransform
- Transforms an array of double precision coordinates by this transform.
- 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(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(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.Path2D.Double
- Transforms the geometry of this path using the specified
AffineTransform
.
- transform(AffineTransform) -
Method in class java.awt.geom.Path2D.Float
- Transforms the geometry of this path using the specified
AffineTransform
.
- transform(AffineTransform) -
Method in class java.awt.geom.Path2D
- Transforms the geometry of this path using the specified
AffineTransform
.
- 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(ClassLoader, String, Class<?>, ProtectionDomain, byte[]) -
Method in interface java.lang.instrument.ClassFileTransformer
- The implementation of this method may transform the supplied class file and
return a new replacement class file.
- Transform - Interface in javax.xml.crypto.dsig
- A representation of the XML
Transform
element as
defined in the
W3C Recommendation for XML-Signature Syntax and Processing. - transform(Data, XMLCryptoContext) -
Method in interface javax.xml.crypto.dsig.Transform
- Transforms the specified data using the underlying transform algorithm.
- transform(Data, XMLCryptoContext, OutputStream) -
Method in interface javax.xml.crypto.dsig.Transform
- Transforms the specified data using the underlying transform algorithm.
- transform(Source, Result) -
Method in class javax.xml.transform.Transformer
- Transform the XML
Source
to a Result
.
- TransformAttribute - Class in java.awt.font
- 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.
- Transformer - Class in javax.xml.transform
- An instance of this abstract class can transform a
source tree into a result tree.
- Transformer() -
Constructor for class javax.xml.transform.Transformer
- Default constructor is protected on purpose.
- TransformerConfigurationException - Exception in javax.xml.transform
- Indicates a serious configuration error.
- TransformerConfigurationException() -
Constructor for exception javax.xml.transform.TransformerConfigurationException
- Create a new
TransformerConfigurationException
with no
detail mesage.
- TransformerConfigurationException(String) -
Constructor for exception javax.xml.transform.TransformerConfigurationException
- Create a new
TransformerConfigurationException
with
the String
specified as an error message.
- TransformerConfigurationException(Throwable) -
Constructor for exception javax.xml.transform.TransformerConfigurationException
- Create a new
TransformerConfigurationException
with a
given Exception
base cause of the error.
- TransformerConfigurationException(String, Throwable) -
Constructor for exception javax.xml.transform.TransformerConfigurationException
- Create a new
TransformerConfigurationException
with the
given Exception
base cause and detail message.
- TransformerConfigurationException(String, SourceLocator) -
Constructor for exception javax.xml.transform.TransformerConfigurationException
- Create a new TransformerConfigurationException from a message and a Locator.
- TransformerConfigurationException(String, SourceLocator, Throwable) -
Constructor for exception javax.xml.transform.TransformerConfigurationException
- Wrap an existing exception in a TransformerConfigurationException.
- TransformerException - Exception in javax.xml.transform
- This class specifies an exceptional condition that occured
during the transformation process.
- TransformerException(String) -
Constructor for exception javax.xml.transform.TransformerException
- Create a new TransformerException.
- TransformerException(Throwable) -
Constructor for exception javax.xml.transform.TransformerException
- Create a new TransformerException wrapping an existing exception.
- TransformerException(String, Throwable) -
Constructor for exception javax.xml.transform.TransformerException
- Wrap an existing exception in a TransformerException.
- TransformerException(String, SourceLocator) -
Constructor for exception javax.xml.transform.TransformerException
- Create a new TransformerException from a message and a Locator.
- TransformerException(String, SourceLocator, Throwable) -
Constructor for exception javax.xml.transform.TransformerException
- Wrap an existing exception in a TransformerException.
- TransformerFactory - Class in javax.xml.transform
- A TransformerFactory instance can be used to create
Transformer
and
Templates
objects. - TransformerFactory() -
Constructor for class javax.xml.transform.TransformerFactory
- Default constructor is protected on purpose.
- TransformerFactoryConfigurationError - Error in javax.xml.transform
- Thrown when a problem with configuration with the Transformer Factories
exists.
- TransformerFactoryConfigurationError() -
Constructor for error javax.xml.transform.TransformerFactoryConfigurationError
- Create a new
TransformerFactoryConfigurationError
with no
detail mesage.
- TransformerFactoryConfigurationError(String) -
Constructor for error javax.xml.transform.TransformerFactoryConfigurationError
- Create a new
TransformerFactoryConfigurationError
with
the String
specified as an error message.
- TransformerFactoryConfigurationError(Exception) -
Constructor for error javax.xml.transform.TransformerFactoryConfigurationError
- Create a new
TransformerFactoryConfigurationError
with a
given Exception
base cause of the error.
- TransformerFactoryConfigurationError(Exception, String) -
Constructor for error javax.xml.transform.TransformerFactoryConfigurationError
- Create a new
TransformerFactoryConfigurationError
with the
given Exception
base cause and detail message.
- TransformerHandler - Interface in javax.xml.transform.sax
- A TransformerHandler
listens for SAX ContentHandler parse events and transforms
them to a Result.
- TransformException - Exception in javax.xml.crypto.dsig
- Indicates an exceptional condition that occured while executing a
transform algorithm.
- TransformException() -
Constructor for exception javax.xml.crypto.dsig.TransformException
- Constructs a new
TransformException
with
null
as its detail message.
- TransformException(String) -
Constructor for exception javax.xml.crypto.dsig.TransformException
- Constructs a new
TransformException
with the specified
detail message.
- TransformException(String, Throwable) -
Constructor for exception javax.xml.crypto.dsig.TransformException
- Constructs a new
TransformException
with the
specified detail message and cause.
- TransformException(Throwable) -
Constructor for exception javax.xml.crypto.dsig.TransformException
- Constructs a new
TransformException
with the specified
cause and a detail message of
(cause==null ? null : cause.toString())
(which typically contains the class and detail message of
cause
).
- TransformParameterSpec - Interface in javax.xml.crypto.dsig.spec
- A specification of algorithm parameters for a
Transform
algorithm. - TransformService - Class in javax.xml.crypto.dsig
- A Service Provider Interface for transform and canonicalization algorithms.
- TransformService() -
Constructor for class javax.xml.crypto.dsig.TransformService
- Default constructor, for invocation by subclasses.
- 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 - Exception in org.omg.CORBA
- Exception thrown when the ORB attempted to reach an object and failed.
- TRANSIENT() -
Constructor for exception 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(String) -
Constructor for exception 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(int, CompletionStatus) -
Constructor for exception org.omg.CORBA.TRANSIENT
- Constructs a
TRANSIENT
exception with the specified
minor code and completion status.
- TRANSIENT(String, int, CompletionStatus) -
Constructor for exception org.omg.CORBA.TRANSIENT
- Constructs a
TRANSIENT
exception with the specified description
message, minor code, and completion status.
- TRANSIENT -
Static variable in class org.omg.PortableServer.LifespanPolicyValue
-
- translate(int, int) -
Method in class java.awt.Event
- NOTE: The
Event
class is obsolete and is
available only for backwards compatilibility.
- 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.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(double, double) -
Method in class java.awt.Graphics2D
- Concatenates the current
Graphics2D
Transform
with a translation transform.
- 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.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.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.
- translateKey(SecretKey) -
Method in class javax.crypto.SecretKeyFactory
- Translates a key object, whose provider may be unknown or potentially
untrusted, into a corresponding key object of this secret-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
(vertical) 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 in javax.sound.midi
- A
Transmitter
sends MidiEvent
objects to one or more
Receivers
. - transparency -
Variable in class java.awt.image.VolatileImage
- The transparency value with which this image was created.
- Transparency - Interface in java.awt
- The
Transparency
interface defines the common transparency
modes for implementing classes. - TRANSPORT_RETRY - Interface in org.omg.PortableInterceptor
- org/omg/PortableInterceptor/TRANSPORT_RETRY.java .
- TrayIcon - Class in java.awt
- A
TrayIcon
object represents a tray icon that can be
added to the system tray
. - TrayIcon(Image) -
Constructor for class java.awt.TrayIcon
- Creates a
TrayIcon
with the specified image.
- TrayIcon(Image, String) -
Constructor for class java.awt.TrayIcon
- Creates a
TrayIcon
with the specified image and
tooltip text.
- TrayIcon(Image, String, PopupMenu) -
Constructor for class java.awt.TrayIcon
- Creates a
TrayIcon
with the specified image,
tooltip and popup menu.
- TrayIcon.MessageType - Enum in java.awt
- The message type determines which icon will be displayed in the
caption of the message, and a possible system sound a message
may generate upon showing.
- TREE -
Static variable in class javax.accessibility.AccessibleRole
- An object used to present hierarchical information to the user.
- tree -
Variable in class javax.swing.plaf.basic.BasicTreeUI
- Component that we're going to be drawing into.
- TREE -
Static variable in class javax.swing.plaf.synth.Region
- Tree region.
- tree -
Variable in class javax.swing.tree.DefaultTreeCellEditor
JTree
instance listening too.
- TREE_CELL -
Static variable in class javax.swing.plaf.synth.Region
- Region of the Tree for one cell.
- TREE_MODEL_PROPERTY -
Static variable in class javax.swing.JTree
- Bound property name for
treeModel
.
- TreeCellEditor - Interface in javax.swing.tree
- Adds to CellEditor the extensions necessary to configure an editor
in a tree.
- TreeCellRenderer - Interface in javax.swing.tree
- Defines the requirements for an object that displays a tree node.
- 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.JTree.AccessibleJTree
- Tree Collapsed notification.
- 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 interface javax.swing.event.TreeExpansionListener
- Called whenever an item in the tree has been expanded.
- treeExpanded(TreeExpansionEvent) -
Method in class javax.swing.JTree.AccessibleJTree
- Tree Model Expansion notification.
- treeExpanded(TreeExpansionEvent) -
Method in class javax.swing.plaf.basic.BasicTreeUI.TreeExpansionHandler
- Called whenever an item in the tree has been expanded.
- TreeExpansionEvent - Class in javax.swing.event
- 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 in javax.swing.event
- The listener that's notified when a tree expands or collapses
a node.
- TreeMap<K,V> - Class in java.util
- A Red-Black tree based
NavigableMap
implementation. - TreeMap() -
Constructor for class java.util.TreeMap
- Constructs a new, empty tree map, using the natural ordering of its
keys.
- TreeMap(Comparator<? super K>) -
Constructor for class java.util.TreeMap
- Constructs a new, empty tree map, ordered according to the given
comparator.
- TreeMap(Map<? extends K, ? extends V>) -
Constructor for class java.util.TreeMap
- Constructs a new tree map containing the same mappings as the given
map, ordered according to the natural ordering of its keys.
- TreeMap(SortedMap<K, ? extends V>) -
Constructor for class java.util.TreeMap
- Constructs a new tree map containing the same mappings and
using the same ordering as the specified sorted map.
- treeModel -
Variable in class javax.swing.JTree
- The model that defines the tree displayed by this object.
- treeModel -
Variable in class javax.swing.plaf.basic.BasicTreeUI
- Used to determine what to display.
- treeModel -
Variable in class javax.swing.tree.AbstractLayoutCache
- Model providing information.
- TreeModel - Interface in javax.swing.tree
- The model used by
JTree
. - TreeModelEvent - Class in javax.swing.event
- Encapsulates information describing changes to a tree model, and
used to notify tree model listeners of the change.
- 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, 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.
- 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, 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.
- TreeModelListener - Interface in javax.swing.event
- Defines the interface for an object that listens
to changes in a TreeModel.
- treeModelListener -
Variable in class javax.swing.JTree
- Updates the
expandedState
.
- TreeNode - Interface in javax.swing.tree
- Defines the requirements for an object that can be used as a
tree node in a JTree.
- 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.JTree.AccessibleJTree
- Tree Model Node change notification.
- treeNodesChanged(TreeModelEvent) -
Method in class javax.swing.JTree.TreeModelHandler
-
- treeNodesChanged(TreeModelEvent) -
Method in class javax.swing.plaf.basic.BasicTreeUI.TreeModelHandler
-
- 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.FixedHeightLayoutCache
- 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.
- 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.JTree.AccessibleJTree
- Tree Model Node change notification.
- treeNodesInserted(TreeModelEvent) -
Method in class javax.swing.JTree.TreeModelHandler
-
- treeNodesInserted(TreeModelEvent) -
Method in class javax.swing.plaf.basic.BasicTreeUI.TreeModelHandler
-
- 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.FixedHeightLayoutCache
- 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.
- 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.JTree.AccessibleJTree
- Tree Model Node change notification.
- treeNodesRemoved(TreeModelEvent) -
Method in class javax.swing.JTree.TreeModelHandler
-
- treeNodesRemoved(TreeModelEvent) -
Method in class javax.swing.plaf.basic.BasicTreeUI.TreeModelHandler
-
- 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.FixedHeightLayoutCache
- 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.
- TreePath - Class in javax.swing.tree
- Represents a path to a node.
- 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) -
Constructor for class javax.swing.tree.TreePath
- Constructs a TreePath containing only a single element.
- TreePath(TreePath, Object) -
Constructor for class javax.swing.tree.TreePath
- Constructs a new TreePath, which is the path identified by
parent
ending in lastElement
.
- TreePath(Object[], int) -
Constructor for class javax.swing.tree.TreePath
- Constructs a new TreePath with the identified path components of
length
length
.
- TreePath() -
Constructor for class javax.swing.tree.TreePath
- Primarily provided for subclasses
that represent paths in a different manner.
- TreeSelectionEvent - Class in javax.swing.event
- 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 in javax.swing.event
- The listener that's notified when the selection in a TreeSelectionModel
changes.
- treeSelectionModel -
Variable in class javax.swing.plaf.basic.BasicTreeUI
- Model maintaing the selection.
- treeSelectionModel -
Variable in class javax.swing.tree.AbstractLayoutCache
- Selection model.
- TreeSelectionModel - Interface in javax.swing.tree
- This interface represents the current state of the selection for
the tree component.
- TreeSet<E> - Class in java.util
- A
NavigableSet
implementation based on a TreeMap
. - TreeSet() -
Constructor for class java.util.TreeSet
- Constructs a new, empty tree set, sorted according to the
natural ordering of its elements.
- TreeSet(Comparator<? super E>) -
Constructor for class java.util.TreeSet
- Constructs a new, empty tree set, sorted according to the specified
comparator.
- TreeSet(Collection<? extends E>) -
Constructor for class java.util.TreeSet
- Constructs a new tree set containing the elements in the specified
collection, sorted according to the natural ordering of its
elements.
- TreeSet(SortedSet<E>) -
Constructor for class java.util.TreeSet
- Constructs a new tree set containing the same elements and
using the same ordering as the specified sorted set.
- treeState -
Variable in class javax.swing.plaf.basic.BasicTreeUI
- Object responsible for handling sizing and expanded issues.
- 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.JTree.AccessibleJTree
- Tree Model structure change change notification.
- treeStructureChanged(TreeModelEvent) -
Method in class javax.swing.JTree.TreeModelHandler
-
- treeStructureChanged(TreeModelEvent) -
Method in class javax.swing.plaf.basic.BasicTreeUI.TreeModelHandler
-
- 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.FixedHeightLayoutCache
- 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.
- TreeUI - Class in javax.swing.plaf
- 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 in javax.swing.event
- The listener that's notified when a tree expands or collapses
a node.
- trim() -
Method in class java.lang.String
- Returns a copy of the string, with leading and trailing whitespace
omitted.
- trimEdits(int, int) -
Method in class javax.swing.undo.UndoManager
- Removes edits in the specified range.
- trimForLimit() -
Method in class javax.swing.undo.UndoManager
- Reduces the number of queued edits to a range of size limit,
centered on the index of the next edit.
- trimToSize() -
Method in class java.lang.StringBuffer
-
- trimToSize() -
Method in class java.util.ArrayList
- Trims the capacity of this ArrayList instance to be the
list's current size.
- trimToSize() -
Method in class java.util.Vector
- Trims the capacity of this vector to be the vector's current
size.
- 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
.
- TRUE -
Static variable in interface java.util.jar.Pack200.Packer
- The string "true", a possible value for certain properties.
- TRUE -
Static variable in interface java.util.jar.Pack200.Unpacker
- The string "true", a possible value for certain properties.
- TRUETYPE_FONT -
Static variable in class java.awt.Font
- Identify a font resource of type TRUETYPE.
- truncate(long) -
Method in class java.nio.channels.FileChannel
- Truncates this channel's file to the given size.
- truncate(long) -
Method in interface java.sql.Blob
- Truncates the
BLOB
value that this Blob
object represents to be len
bytes in length.
- truncate(long) -
Method in interface java.sql.Clob
- Truncates the
CLOB
value that this Clob
designates to have a length of len
characters.
- truncate(long) -
Method in class javax.sql.rowset.serial.SerialBlob
- Truncates the
BLOB
value that this Blob
object represents to be len
bytes in length.
- truncate(long) -
Method in class javax.sql.rowset.serial.SerialClob
- Truncates the
CLOB
value that this SerialClob
object represents so that it has a length of len
characters.
- TRUNCATED -
Static variable in class javax.accessibility.AccessibleState
- A state indicating that text is truncated by a bounding rectangle
and that some of the text is not displayed on the screen.
- TrustAnchor - Class in java.security.cert
- A trust anchor or most-trusted Certification Authority (CA).
- TrustAnchor(X509Certificate, byte[]) -
Constructor for class java.security.cert.TrustAnchor
- Creates an instance of
TrustAnchor
with the specified
X509Certificate
and optional name constraints, which
are intended to be used as additional constraints when validating
an X.509 certification path.
- TrustAnchor(X500Principal, PublicKey, byte[]) -
Constructor for class java.security.cert.TrustAnchor
- Creates an instance of
TrustAnchor
where the
most-trusted CA is specified as an X500Principal and public key.
- TrustAnchor(String, PublicKey, byte[]) -
Constructor for class java.security.cert.TrustAnchor
- Creates an instance of
TrustAnchor
where the
most-trusted CA is specified as a distinguished name and public key.
- TrustManager - Interface in javax.net.ssl
- This is the base interface for JSSE trust managers.
- TrustManagerFactory - Class in javax.net.ssl
- This class acts as a factory for trust managers based on a
source of trust material.
- TrustManagerFactory(TrustManagerFactorySpi, Provider, String) -
Constructor for class javax.net.ssl.TrustManagerFactory
- Creates a TrustManagerFactory object.
- TrustManagerFactorySpi - Class in javax.net.ssl
- This class defines the Service Provider Interface (SPI)
for the
TrustManagerFactory
class. - TrustManagerFactorySpi() -
Constructor for class javax.net.ssl.TrustManagerFactorySpi
-
- tryAcquire(long) -
Method in class java.util.concurrent.locks.AbstractQueuedLongSynchronizer
- Attempts to acquire in exclusive mode.
- tryAcquire(int) -
Method in class java.util.concurrent.locks.AbstractQueuedSynchronizer
- Attempts to acquire in exclusive mode.
- tryAcquire() -
Method in class java.util.concurrent.Semaphore
- Acquires a permit from this semaphore, only if one is available at the
time of invocation.
- tryAcquire(long, TimeUnit) -
Method in class java.util.concurrent.Semaphore
- Acquires a permit from this semaphore, if one becomes available
within the given waiting time and the current thread has not
been interrupted.
- tryAcquire(int) -
Method in class java.util.concurrent.Semaphore
- Acquires the given number of permits from this semaphore, only
if all are available at the time of invocation.
- tryAcquire(int, long, TimeUnit) -
Method in class java.util.concurrent.Semaphore
- Acquires the given number of permits from this semaphore, if all
become available within the given waiting time and the current
thread has not been interrupted.
- tryAcquireNanos(long, long) -
Method in class java.util.concurrent.locks.AbstractQueuedLongSynchronizer
- Attempts to acquire in exclusive mode, aborting if interrupted,
and failing if the given timeout elapses.
- tryAcquireNanos(int, long) -
Method in class java.util.concurrent.locks.AbstractQueuedSynchronizer
- Attempts to acquire in exclusive mode, aborting if interrupted,
and failing if the given timeout elapses.
- tryAcquireShared(long) -
Method in class java.util.concurrent.locks.AbstractQueuedLongSynchronizer
- Attempts to acquire in shared mode.
- tryAcquireShared(int) -
Method in class java.util.concurrent.locks.AbstractQueuedSynchronizer
- Attempts to acquire in shared mode.
- tryAcquireSharedNanos(long, long) -
Method in class java.util.concurrent.locks.AbstractQueuedLongSynchronizer
- Attempts to acquire in shared mode, aborting if interrupted, and
failing if the given timeout elapses.
- tryAcquireSharedNanos(int, long) -
Method in class java.util.concurrent.locks.AbstractQueuedSynchronizer
- Attempts to acquire in shared mode, aborting if interrupted, and
failing if the given timeout elapses.
- tryLock(long, long, boolean) -
Method in class java.nio.channels.FileChannel
- Attempts to acquire a lock on the given region of this channel's file.
- tryLock() -
Method in class java.nio.channels.FileChannel
- Attempts to acquire an exclusive lock on this channel's file.
- tryLock() -
Method in interface java.util.concurrent.locks.Lock
- Acquires the lock only if it is free at the time of invocation.
- tryLock(long, TimeUnit) -
Method in interface java.util.concurrent.locks.Lock
- Acquires the lock if it is free within the given waiting time and the
current thread has not been interrupted.
- tryLock() -
Method in class java.util.concurrent.locks.ReentrantLock
- Acquires the lock only if it is not held by another thread at the time
of invocation.
- tryLock(long, TimeUnit) -
Method in class java.util.concurrent.locks.ReentrantLock
- Acquires the lock if it is not held by another thread within the given
waiting time and the current thread has not been
interrupted.
- tryLock() -
Method in class java.util.concurrent.locks.ReentrantReadWriteLock.ReadLock
- Acquires the read lock only if the write lock is not held by
another thread at the time of invocation.
- tryLock(long, TimeUnit) -
Method in class java.util.concurrent.locks.ReentrantReadWriteLock.ReadLock
- Acquires the read lock if the write lock is not held by
another thread within the given waiting time and the
current thread has not been interrupted.
- tryLock() -
Method in class java.util.concurrent.locks.ReentrantReadWriteLock.WriteLock
- Acquires the write lock only if it is not held by another thread
at the time of invocation.
- tryLock(long, TimeUnit) -
Method in class java.util.concurrent.locks.ReentrantReadWriteLock.WriteLock
- Acquires the write lock if it is not held by another thread
within the given waiting time and the current thread has
not been interrupted.
- tryRelease(long) -
Method in class java.util.concurrent.locks.AbstractQueuedLongSynchronizer
- Attempts to set the state to reflect a release in exclusive
mode.
- tryRelease(int) -
Method in class java.util.concurrent.locks.AbstractQueuedSynchronizer
- Attempts to set the state to reflect a release in exclusive
mode.
- tryReleaseShared(long) -
Method in class java.util.concurrent.locks.AbstractQueuedLongSynchronizer
- Attempts to set the state to reflect a release in shared mode.
- tryReleaseShared(int) -
Method in class java.util.concurrent.locks.AbstractQueuedSynchronizer
- Attempts to set the state to reflect a release in shared mode.
- tryToLoadClass(String, ClassLoader) -
Static method in class java.awt.datatransfer.DataFlavor
- Tries 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.
- TTL_DONT_CACHE -
Static variable in class java.util.ResourceBundle.Control
- The time-to-live constant for not caching loaded resource bundle
instances.
- TTL_NO_EXPIRATION_CONTROL -
Static variable in class java.util.ResourceBundle.Control
- The time-to-live constant for disabling the expiration control
for loaded resource bundle instances in the cache.
- 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
Calendar.DAY_OF_WEEK
field indicating
Tuesday.
- TUMBLE -
Static variable in class javax.print.attribute.standard.Sides
- An alias for "two sided short edge" (see
TWO_SIDED_SHORT_EDGE
).
- 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_LONG_EDGE -
Static variable in class javax.print.attribute.standard.Sides
- Imposes each consecutive pair of print-stream pages upon front and back
sides of consecutive media sheets, such that the orientation of each
pair of print-stream 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.
- TWO_SIDED_SHORT_EDGE -
Static variable in class javax.print.attribute.standard.Sides
- Imposes each consecutive pair of print-stream pages upon front and back
sides of consecutive media sheets, such that the orientation of each
pair of print-stream pages on the medium would be correct for the
reader as if for binding on the short edge.
- TYPE -
Static variable in class java.lang.Boolean
- The Class object representing the primitive type boolean.
- TYPE -
Static variable in class java.lang.Byte
- The
Class
instance representing the primitive type
byte
.
- TYPE -
Static variable in class java.lang.Character
- The
Class
instance representing the primitive type
char
.
- TYPE -
Static variable in class java.lang.Double
- The
Class
instance representing the primitive type
double
.
- TYPE -
Static variable in class java.lang.Float
- The
Class
instance representing the primitive type
float
.
- TYPE -
Static variable in class java.lang.Integer
- The
Class
instance representing the primitive type
int
.
- TYPE -
Static variable in class java.lang.Long
- The
Class
instance representing the primitive type
long
.
- Type - Interface in java.lang.reflect
- Type is the common superinterface for all types in the Java
programming language.
- TYPE -
Static variable in class java.lang.Short
- The
Class
instance representing the primitive type
short
.
- TYPE -
Static variable in class java.lang.Void
- The Class object representing the pseudo-type corresponding to
the keyword void.
- type() -
Method in class java.net.Proxy
- Returns the proxy type.
- type -
Variable in class javax.naming.event.NamingEvent
- Contains the type of this event.
- type -
Variable in class javax.sound.midi.MidiFileFormat
- The type of MIDI file.
- type -
Variable in class javax.swing.event.TableModelEvent
-
- type -
Variable in class javax.swing.JTable.AccessibleJTable.AccessibleJTableModelChange
-
- TYPE -
Static variable in class javax.swing.text.html.HTML.Attribute
-
- 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 -
Static variable in interface javax.xml.crypto.dsig.keyinfo.PGPData
- URI identifying the PGPData KeyInfo type:
http://www.w3.org/2000/09/xmldsig#PGPData.
- TYPE -
Static variable in interface javax.xml.crypto.dsig.keyinfo.X509Data
- URI identifying the X509Data KeyInfo type:
http://www.w3.org/2000/09/xmldsig#X509Data.
- TYPE -
Static variable in interface javax.xml.crypto.dsig.Manifest
- URI that identifies the
Manifest
element (this can be
specified as the value of the type
parameter of the
Reference
class to identify the referent's type).
- TYPE -
Static variable in interface javax.xml.crypto.dsig.SignatureProperties
- URI that identifies the
SignatureProperties
element (this
can be specified as the value of the type
parameter of the
Reference
class to identify the referent's type).
- TYPE -
Static variable in interface javax.xml.crypto.dsig.XMLObject
- URI that identifies the
Object
element (this can be
specified as the value of the type
parameter of the
Reference
class to identify the referent's type).
- type() -
Method in class org.omg.CORBA._IDLTypeStub
-
- type() -
Method in class org.omg.CORBA.Any
- Returns type information for the element contained in this
Any
object.
- 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.
- type() -
Static method in class org.omg.CORBA.AnySeqHelper
-
- type() -
Static method in class org.omg.CORBA.BooleanSeqHelper
-
- type() -
Static method in class org.omg.CORBA.CharSeqHelper
-
- type() -
Static method in class org.omg.CORBA.CompletionStatusHelper
-
- type() -
Static method in class org.omg.CORBA.CurrentHelper
-
- type() -
Static method in class org.omg.CORBA.DefinitionKindHelper
-
- type() -
Static method in class org.omg.CORBA.DoubleSeqHelper
-
- type() -
Method in interface org.omg.CORBA.DynAny
- Deprecated. Returns the
TypeCode
of the object inserted into
this DynAny
.
- type() -
Static method in class org.omg.CORBA.FieldNameHelper
-
- type() -
Static method in class org.omg.CORBA.FloatSeqHelper
-
- type() -
Static method in class org.omg.CORBA.IdentifierHelper
-
- type() -
Static method in class org.omg.CORBA.IDLTypeHelper
-
- 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.LongLongSeqHelper
-
- type() -
Static method in class org.omg.CORBA.LongSeqHelper
-
- type() -
Static method in class org.omg.CORBA.NameValuePairHelper
-
- type() -
Static method in class org.omg.CORBA.ObjectHelper
-
- type() -
Static method in class org.omg.CORBA.OctetSeqHelper
-
- type() -
Static method in class org.omg.CORBA.ParameterModeHelper
-
- type() -
Static method in class org.omg.CORBA.PolicyErrorCodeHelper
-
- type() -
Static method in class org.omg.CORBA.PolicyErrorHelper
-
- type() -
Static method in class org.omg.CORBA.PolicyHelper
-
- type() -
Static method in class org.omg.CORBA.PolicyListHelper
-
- type() -
Static method in class org.omg.CORBA.PolicyTypeHelper
-
- type() -
Static method in class org.omg.CORBA.RepositoryIdHelper
-
- type() -
Static method in class org.omg.CORBA.ServiceDetailHelper
-
- type() -
Static method in class org.omg.CORBA.ServiceInformationHelper
-
- type() -
Static method in class org.omg.CORBA.SetOverrideTypeHelper
-
- type() -
Static method in class org.omg.CORBA.ShortSeqHelper
-
- type() -
Static method in class org.omg.CORBA.StringSeqHelper
-
- type() -
Static method in class org.omg.CORBA.StringValueHelper
-
- type -
Variable in class org.omg.CORBA.StructMember
- The type of the struct member described by
this
StructMember
object.
- type() -
Static method in class org.omg.CORBA.StructMemberHelper
-
- type() -
Static method in class org.omg.CORBA.ULongLongSeqHelper
-
- type() -
Static method in class org.omg.CORBA.ULongSeqHelper
-
- type -
Variable in class org.omg.CORBA.UnionMember
- The type of the union member described by this
UnionMember
object.
- type() -
Static method in class org.omg.CORBA.UnionMemberHelper
-
- type() -
Static method in class org.omg.CORBA.UnknownUserExceptionHelper
-
- type() -
Static method in class org.omg.CORBA.UShortSeqHelper
-
- type() -
Static method in class org.omg.CORBA.ValueBaseHelper
-
- type -
Variable in class org.omg.CORBA.ValueMember
- The type of of this
value
member.
- type() -
Static method in class org.omg.CORBA.ValueMemberHelper
-
- type() -
Static method in class org.omg.CORBA.VersionSpecHelper
-
- type() -
Static method in class org.omg.CORBA.VisibilityHelper
-
- type() -
Static method in class org.omg.CORBA.WCharSeqHelper
-
- type() -
Static method in class org.omg.CORBA.WrongTransactionHelper
-
- type() -
Static method in class org.omg.CORBA.WStringSeqHelper
-
- type() -
Static method in class org.omg.CORBA.WStringValueHelper
-
- type() -
Static method in class org.omg.CosNaming.BindingHelper
-
- type() -
Static method in class org.omg.CosNaming.BindingIteratorHelper
-
- type() -
Static method in class org.omg.CosNaming.BindingListHelper
-
- type() -
Static method in class org.omg.CosNaming.BindingTypeHelper
-
- type() -
Static method in class org.omg.CosNaming.IstringHelper
-
- type() -
Static method in class org.omg.CosNaming.NameComponentHelper
-
- type() -
Static method in class org.omg.CosNaming.NameHelper
-
- type() -
Static method in class org.omg.CosNaming.NamingContextExtHelper
-
- type() -
Static method in class org.omg.CosNaming.NamingContextExtPackage.AddressHelper
-
- type() -
Static method in class org.omg.CosNaming.NamingContextExtPackage.InvalidAddressHelper
-
- type() -
Static method in class org.omg.CosNaming.NamingContextExtPackage.StringNameHelper
-
- type() -
Static method in class org.omg.CosNaming.NamingContextExtPackage.URLStringHelper
-
- type() -
Static method in class org.omg.CosNaming.NamingContextHelper
-
- type() -
Static method in class org.omg.CosNaming.NamingContextPackage.AlreadyBoundHelper
-
- 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() -
Static method in class org.omg.CosNaming.NamingContextPackage.NotFoundHelper
-
- type() -
Static method in class org.omg.CosNaming.NamingContextPackage.NotFoundReasonHelper
-
- type() -
Method in class org.omg.DynamicAny._DynAnyStub
- Returns the TypeCode associated with this DynAny object.
- type() -
Method in class org.omg.DynamicAny._DynArrayStub
- Returns the TypeCode associated with this DynAny object.
- type() -
Method in class org.omg.DynamicAny._DynEnumStub
- Returns the TypeCode associated with this DynAny object.
- type() -
Method in class org.omg.DynamicAny._DynFixedStub
- Returns the TypeCode associated with this DynAny object.
- type() -
Method in class org.omg.DynamicAny._DynSequenceStub
- Returns the TypeCode associated with this DynAny object.
- type() -
Method in class org.omg.DynamicAny._DynStructStub
- Returns the TypeCode associated with this DynAny object.
- type() -
Method in class org.omg.DynamicAny._DynUnionStub
- Returns the TypeCode associated with this DynAny object.
- type() -
Method in class org.omg.DynamicAny._DynValueStub
- Returns the TypeCode associated with this DynAny object.
- type() -
Static method in class org.omg.DynamicAny.AnySeqHelper
-
- type() -
Static method in class org.omg.DynamicAny.DynAnyFactoryHelper
-
- type() -
Static method in class org.omg.DynamicAny.DynAnyFactoryPackage.InconsistentTypeCodeHelper
-
- type() -
Static method in class org.omg.DynamicAny.DynAnyHelper
-
- type() -
Method in interface org.omg.DynamicAny.DynAnyOperations
- Returns the TypeCode associated with this DynAny object.
- type() -
Static method in class org.omg.DynamicAny.DynAnyPackage.InvalidValueHelper
-
- type() -
Static method in class org.omg.DynamicAny.DynAnyPackage.TypeMismatchHelper
-
- type() -
Static method in class org.omg.DynamicAny.DynAnySeqHelper
-
- type() -
Static method in class org.omg.DynamicAny.DynArrayHelper
-
- type() -
Static method in class org.omg.DynamicAny.DynEnumHelper
-
- type() -
Static method in class org.omg.DynamicAny.DynFixedHelper
-
- type() -
Static method in class org.omg.DynamicAny.DynSequenceHelper
-
- type() -
Static method in class org.omg.DynamicAny.DynStructHelper
-
- type() -
Static method in class org.omg.DynamicAny.DynUnionHelper
-
- type() -
Static method in class org.omg.DynamicAny.DynValueHelper
-
- type() -
Static method in class org.omg.DynamicAny.FieldNameHelper
-
- type() -
Static method in class org.omg.DynamicAny.NameDynAnyPairHelper
-
- type() -
Static method in class org.omg.DynamicAny.NameDynAnyPairSeqHelper
-
- type() -
Static method in class org.omg.DynamicAny.NameValuePairHelper
-
- type() -
Static method in class org.omg.DynamicAny.NameValuePairSeqHelper
-
- type() -
Static method in class org.omg.IOP.CodecFactoryHelper
-
- type() -
Static method in class org.omg.IOP.CodecFactoryPackage.UnknownEncodingHelper
-
- type() -
Static method in class org.omg.IOP.CodecPackage.FormatMismatchHelper
-
- type() -
Static method in class org.omg.IOP.CodecPackage.InvalidTypeForEncodingHelper
-
- type() -
Static method in class org.omg.IOP.CodecPackage.TypeMismatchHelper
-
- type() -
Static method in class org.omg.IOP.ComponentIdHelper
-
- type() -
Static method in class org.omg.IOP.IORHelper
-
- type() -
Static method in class org.omg.IOP.MultipleComponentProfileHelper
-
- type() -
Static method in class org.omg.IOP.ProfileIdHelper
-
- type() -
Static method in class org.omg.IOP.ServiceContextHelper
-
- type() -
Static method in class org.omg.IOP.ServiceContextListHelper
-
- type() -
Static method in class org.omg.IOP.ServiceIdHelper
-
- type() -
Static method in class org.omg.IOP.TaggedComponentHelper
-
- type() -
Static method in class org.omg.IOP.TaggedProfileHelper
-
- type() -
Static method in class org.omg.Messaging.SyncScopeHelper
-
- type() -
Static method in class org.omg.PortableInterceptor.AdapterManagerIdHelper
-
- type() -
Static method in class org.omg.PortableInterceptor.AdapterNameHelper
-
- type() -
Static method in class org.omg.PortableInterceptor.AdapterStateHelper
-
- type() -
Static method in class org.omg.PortableInterceptor.CurrentHelper
-
- type() -
Static method in class org.omg.PortableInterceptor.ForwardRequestHelper
-
- type() -
Static method in class org.omg.PortableInterceptor.InvalidSlotHelper
-
- type() -
Static method in class org.omg.PortableInterceptor.IORInterceptor_3_0Helper
-
- type() -
Static method in class org.omg.PortableInterceptor.ObjectIdHelper
-
- type() -
Static method in class org.omg.PortableInterceptor.ObjectReferenceFactoryHelper
-
- type() -
Static method in class org.omg.PortableInterceptor.ObjectReferenceTemplateHelper
-
- type() -
Static method in class org.omg.PortableInterceptor.ObjectReferenceTemplateSeqHelper
-
- type() -
Static method in class org.omg.PortableInterceptor.ORBIdHelper
-
- type() -
Static method in class org.omg.PortableInterceptor.ORBInitInfoPackage.DuplicateNameHelper
-
- type() -
Static method in class org.omg.PortableInterceptor.ORBInitInfoPackage.InvalidNameHelper
-
- type() -
Static method in class org.omg.PortableInterceptor.ORBInitInfoPackage.ObjectIdHelper
-
- type() -
Static method in class org.omg.PortableInterceptor.ServerIdHelper
-
- type() -
Static method in class org.omg.PortableServer.CurrentHelper
-
- type() -
Static method in class org.omg.PortableServer.CurrentPackage.NoContextHelper
-
- type() -
Static method in class org.omg.PortableServer.ForwardRequestHelper
-
- type() -
Static method in class org.omg.PortableServer.POAHelper
-
- type() -
Static method in class org.omg.PortableServer.POAManagerPackage.AdapterInactiveHelper
-
- type() -
Static method in class org.omg.PortableServer.POAPackage.AdapterAlreadyExistsHelper
-
- type() -
Static method in class org.omg.PortableServer.POAPackage.AdapterNonExistentHelper
-
- type() -
Static method in class org.omg.PortableServer.POAPackage.InvalidPolicyHelper
-
- type() -
Static method in class org.omg.PortableServer.POAPackage.NoServantHelper
-
- type() -
Static method in class org.omg.PortableServer.POAPackage.ObjectAlreadyActiveHelper
-
- type() -
Static method in class org.omg.PortableServer.POAPackage.ObjectNotActiveHelper
-
- type() -
Static method in class org.omg.PortableServer.POAPackage.ServantAlreadyActiveHelper
-
- type() -
Static method in class org.omg.PortableServer.POAPackage.ServantNotActiveHelper
-
- type() -
Static method in class org.omg.PortableServer.POAPackage.WrongAdapterHelper
-
- type() -
Static method in class org.omg.PortableServer.POAPackage.WrongPolicyHelper
-
- type() -
Static method in class org.omg.PortableServer.ServantActivatorHelper
-
- type() -
Static method in class org.omg.PortableServer.ServantLocatorHelper
-
- TYPE1_FONT -
Static variable in class java.awt.Font
- Identify a font resource of type TYPE1.
- type2name(int) -
Static method in class javax.swing.text.html.parser.AttributeList
-
- 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_BICUBIC -
Static variable in class java.awt.image.AffineTransformOp
- Bicubic interpolation type.
- 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 1, 2, or 4 bit 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.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.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.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_id -
Variable in class org.omg.IOP.IOR
- The type id, represented as a String.
- 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_MISMATCH_ERR -
Static variable in exception org.w3c.dom.DOMException
- If the type of an object is incompatible with the expected type of the
parameter associated to the object.
- 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 to the data
that underlies the ResultSet
.
- 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 to the data
that underlies the ResultSet
.
- 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.
- TypeCode - Class in org.omg.CORBA
- A container for information about a specific CORBA data
type.
- TypeCode() -
Constructor for class org.omg.CORBA.TypeCode
-
- TypeCodeHolder - Class in org.omg.CORBA
- The Holder for TypeCode.
- 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.
- TypeConstraintException - Exception in javax.xml.bind
- This exception indicates that a violation of a dynamically checked type
constraint was detected.
- TypeConstraintException(String) -
Constructor for exception javax.xml.bind.TypeConstraintException
- Construct a TypeConstraintException with the specified detail message.
- TypeConstraintException(String, String) -
Constructor for exception javax.xml.bind.TypeConstraintException
- Construct a TypeConstraintException with the specified detail message and vendor
specific errorCode.
- TypeConstraintException(Throwable) -
Constructor for exception javax.xml.bind.TypeConstraintException
- Construct a TypeConstraintException with a linkedException.
- TypeConstraintException(String, Throwable) -
Constructor for exception javax.xml.bind.TypeConstraintException
- Construct a TypeConstraintException with the specified detail message and
linkedException.
- TypeConstraintException(String, String, Throwable) -
Constructor for exception javax.xml.bind.TypeConstraintException
- Construct a TypeConstraintException with the specified detail message,
vendor specific errorCode, and linkedException.
- TypeElement - Interface in javax.lang.model.element
- Represents a class or interface program element.
- TypeInfo - Interface in org.w3c.dom
- The
TypeInfo
interface represents a type referenced from
Element
or Attr
nodes, specified in the schemas
associated with the document. - TypeInfoProvider - Class in javax.xml.validation
- This class provides access to the type information determined
by
ValidatorHandler
. - TypeInfoProvider() -
Constructor for class javax.xml.validation.TypeInfoProvider
- Constructor for the derived class.
- TypeKind - Enum in javax.lang.model.type
- The kind of a type mirror.
- TypeKindVisitor6<R,P> - Class in javax.lang.model.util
- A visitor of types based on their kind with
default behavior appropriate for the
RELEASE_6
source version. - TypeKindVisitor6() -
Constructor for class javax.lang.model.util.TypeKindVisitor6
- Constructor for concrete subclasses to call; uses
null
for the default value.
- TypeKindVisitor6(R) -
Constructor for class javax.lang.model.util.TypeKindVisitor6
- Constructor for concrete subclasses to call; uses the argument
for the default value.
- TypeMirror - Interface in javax.lang.model.type
- Represents a type in the Java programming language.
- TypeMismatch - Exception in org.omg.CORBA.DynAnyPackage
- 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 exception org.omg.CORBA.DynAnyPackage.TypeMismatch
- Constructs a
TypeMismatch
object.
- TypeMismatch(String) -
Constructor for exception org.omg.CORBA.DynAnyPackage.TypeMismatch
- Constructs a
TypeMismatch
object.
- TypeMismatch - Exception in org.omg.DynamicAny.DynAnyPackage
- org/omg/DynamicAny/DynAnyPackage/TypeMismatch.java .
- TypeMismatch() -
Constructor for exception org.omg.DynamicAny.DynAnyPackage.TypeMismatch
-
- TypeMismatch(String) -
Constructor for exception org.omg.DynamicAny.DynAnyPackage.TypeMismatch
-
- TypeMismatch - Exception in org.omg.IOP.CodecPackage
- org/omg/IOP/CodecPackage/TypeMismatch.java .
- TypeMismatch() -
Constructor for exception org.omg.IOP.CodecPackage.TypeMismatch
-
- TypeMismatch(String) -
Constructor for exception org.omg.IOP.CodecPackage.TypeMismatch
-
- TypeMismatchHelper - Class in org.omg.DynamicAny.DynAnyPackage
- org/omg/DynamicAny/DynAnyPackage/TypeMismatchHelper.java .
- TypeMismatchHelper() -
Constructor for class org.omg.DynamicAny.DynAnyPackage.TypeMismatchHelper
-
- TypeMismatchHelper - Class in org.omg.IOP.CodecPackage
- org/omg/IOP/CodecPackage/TypeMismatchHelper.java .
- TypeMismatchHelper() -
Constructor for class org.omg.IOP.CodecPackage.TypeMismatchHelper
-
- typeName() -
Method in exception java.lang.TypeNotPresentException
- Returns the fully qualified name of the unavailable type.
- typeNoNulls -
Static variable in interface java.sql.DatabaseMetaData
- Indicates that a
NULL
value is NOT allowed for this
data type.
- TypeNotPresentException - Exception in java.lang
- Thrown when an application tries to access a type using a string
representing the type's name, but no definition for the type with
the specified name can be found.
- TypeNotPresentException(String, Throwable) -
Constructor for exception java.lang.TypeNotPresentException
- Constructs a TypeNotPresentException for the named type
with the specified cause.
- typeNullable -
Static variable in interface java.sql.DatabaseMetaData
- Indicates that a
NULL
value is allowed for this
data type.
- typeNullableUnknown -
Static variable in interface java.sql.DatabaseMetaData
- Indicates that it is not known whether a
NULL
value
is allowed for this data type.
- TypeParameterElement - Interface in javax.lang.model.element
- Represents a formal type parameter of a generic class, interface, method,
or constructor element.
- typePredBasic -
Static variable in interface java.sql.DatabaseMetaData
- Indicates that the data type can be only be used in
WHERE
search clauses
that do not use LIKE
predicates.
- typePredChar -
Static variable in interface java.sql.DatabaseMetaData
- Indicates that the data type
can be only be used in
WHERE
search clauses
that use LIKE
predicates.
- typePredNone -
Static variable in interface java.sql.DatabaseMetaData
- Indicates that
WHERE
search clauses are not supported
for this type.
- Types - Class in java.sql
- The class that defines the constants that are used to identify generic
SQL types, called JDBC types.
- Types - Interface in javax.lang.model.util
- Utility methods for operating on types.
- typeSearchable -
Static variable in interface java.sql.DatabaseMetaData
- Indicates that all
WHERE
search clauses can be
based on this type.
- typesIn(Iterable<? extends Element>) -
Static method in class javax.lang.model.util.ElementFilter
- Returns a list of types in
elements
.
- typesIn(Set<? extends Element>) -
Static method in class javax.lang.model.util.ElementFilter
- Returns a set of types in
elements
.
- TypeVariable<D extends GenericDeclaration> - Interface in java.lang.reflect
- TypeVariable is the common superinterface for type variables of kinds.
- TypeVariable - Interface in javax.lang.model.type
- Represents a type variable.
- TypeVisitor<R,P> - Interface in javax.lang.model.type
- A visitor of types, in the style of the
visitor design pattern.
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 SE Developer Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples. Copyright 2006 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.