Alphabetical Index: T

< ? _ 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

Constructs an implementation of listenerInterface to dispatch events.

You can use such an implementation to simply call a public no-argument method of an arbitrary target object or to forward the first argument of the listener method to the target method.

Call this method like: button.addActionListener((ActionListener) EventHandler.create(ActionListener.class, target, "dispose"));

to achieve the following behavior: button.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent ae) { target.dispose(); } });

That means if you need a listener implementation that simply calls a a no-argument method on a given instance for each method of the listener interface.

Note: The action is interpreted as a method name.

Constructs an implementation of listenerInterface to dispatch events.

Use this method if you want to create an implementation that retrieves a property value from the first argument of the listener method and applies it to the target's property or method.

Constructs an implementation of listenerInterface to dispatch events.

Besides the functionality described for create(Class, Object, String) and create(Class, Object, String, String) this method allows you to filter the listener method that should have an effect.

T doPrivileged(PrivilegedAction) - static method in class java.security.AccessController
Calls the run() method of the given action with as (initial) access control context only the protection domain of the calling class.
Calls the run() method of the given action with as (initial) access control context the given context combined with the protection domain of the calling class.
T doPrivileged(PrivilegedExceptionAction) - static method in class java.security.AccessController
Calls the run() method of the given action with as (initial) access control context only the protection domain of the calling class.
Calls the run() method of the given action with as (initial) access control context the given context combined with the protection domain of the calling class.
T getServiceProviderByClass(Class) - method in class javax.imageio.spi.ServiceRegistry
Returns one of the service providers that is a subclass of the specified class.
T max(T>,T>) - static method in class java.util.Collections
Find the maximum element in a Collection, according to a specified Comparator.
T min(T>,T>) - static method in class java.util.Collections
Find the minimum element in a Collection, according to a specified Comparator.
Returns a proxy for a standard management bean, using the specified connection to access the named implementation.
Returns a proxy for a standard management bean, using the specified connection to access the named implementation, as with newMBeanProxy(MBeanServerConnection, ObjectName, Class).
Returns a proxy for a MXBean, using the specified connection to access the named implementation.
Returns a proxy for a MXBean, using the specified connection to access the named implementation, as with newMXBeanProxy(MBeanServerConnection, ObjectName, Class).
Returns a proxy for the specified platform bean.
Returns a proxy for the specified bean.
T[] copyOf(T[],int) - static method in class java.util.Arrays
Returns a copy of the supplied array, truncating or padding as necessary with null to obtain the specified length.
T[] copyOf(U[],int,>[]) - static method in class java.util.Arrays
Returns a copy of the supplied array, truncating or padding as necessary with null to obtain the specified length.
T[] copyOfRange(T[],int,int) - static method in class java.util.Arrays
Copies the specified range of the supplied array to a new array, padding as necessary with null if to is greater than the length of the original array.
T[] copyOfRange(U[],int,int,>[]) - static method in class java.util.Arrays
Copies the specified range of the supplied array to a new array, padding as necessary with null if to is greater than the length of the original array.
T[] toArray(T[]) - method in class java.util.AbstractCollection<E>
Copy the collection into a given array if it will fit, or into a dynamically created array of the same run-time type as the given array if not.
T[] toArray(T[]) - method in class java.util.ArrayList<E>
Returns an Array whose component type is the runtime component type of the passed-in Array.
T[] toArray(T[]) - method in class java.util.Collection<E>
Copy the current contents of this collection into an array.
T[] toArray(T[]) - method in class java.util.concurrent.CopyOnWriteArrayList<E>
Returns an Array whose component type is the runtime component type of the passed-in Array.
T[] toArray(T[]) - method in class java.util.List<E>
Copy the current contents of this list into an array.
T[] toArray(T[]) - method in class java.util.Set<E>
Returns an array containing the elements of this set, of the same runtime type of the argument.
TAB - static field in class java.awt.Event
TabableView - interface javax.swing.text.TabableView
tabAreaBackground - field in class javax.swing.plaf.metal.MetalTabbedPaneUI
The background color used for the tab area.
tabAreaInsets - field in class javax.swing.plaf.basic.BasicTabbedPaneUI
The insets around the tab area.
TABBED_PANE - static field in class javax.swing.plaf.synth.Region
Specifies the region of a tabbed pane.
TABBED_PANE_CONTENT - static field in class javax.swing.plaf.synth.Region
This specifies the region for the content of a tabbed pane.
TABBED_PANE_TAB - static field in class javax.swing.plaf.synth.Region
This specifies the region of a tab of a tabbed pane.
TABBED_PANE_TAB_AREA - static field in class javax.swing.plaf.synth.Region
This specifies the region underneath the tabs of a tabbed pane.
A LayoutManager responsible for placing all the tabs and the visible component inside the JTabbedPane.
A LayoutManager responsible for placing all the tabs and the visible component inside the JTabbedPane.
TabbedPaneLayout() - constructor for class javax.swing.plaf.metal.MetalTabbedPaneUI.TabbedPaneLayout
Creates a new instance of the layout manager.
TabbedPaneUI - class javax.swing.plaf.TabbedPaneUI
An abstract base class for delegates that implement the pluggable look and feel for a JTabbedPane.
TabbedPaneUI() - constructor for class javax.swing.plaf.TabbedPaneUI
Constructs a new TabbedPaneUI.
tabChangeListener - field in class javax.swing.plaf.basic.BasicTabbedPaneUI
The listener that listens for change events.
TabExpander - interface javax.swing.text.TabExpander
This method returns the tab index given a coordinate.
Calls the TabbedPaneUI.tabForCoordinate(JTabbedPane,int,int) method for all the UI delegates managed by this MultiTabbedPaneUI, returning the tab index for the UI delegate from the primary look and feel.
Determines which tab lies at a given position.
tabInsets - field in class javax.swing.plaf.basic.BasicTabbedPaneUI
The insets around each and every tab.
TABLE - static field in class javax.accessibility.AccessibleRole
An object for presenting data in rows and columns.
table - field in class javax.swing.plaf.basic.BasicTableUI
TABLE - static field in class javax.swing.text.html.HTML.Tag
The <table> tag , block tag.
table - field in class javax.swing.table.JTableHeader
The table property.
TABLE - static field in class javax.swing.plaf.synth.Region
Specifies the region of a table.
TABLE_HEADER - static field in class javax.swing.plaf.synth.Region
Specifies the region of a table header.
TableView.TableCell - class javax.swing.text.TableView.TableCell
This class is deprecated and not used anymore.
TableCell(javax.swing.text.Element) - constructor for class javax.swing.text.TableView.TableCell
Creates a new instance.
TableCellEditor - interface javax.swing.table.TableCellEditor
TableCellEditor public interface
TableCellRenderer - interface javax.swing.table.TableCellRenderer
TableCellRenderer public interface
Invoked when the table changes.
Receives notification when the table model changes.
Called to notify the listener that the TableModel has been updated.
TableColumn - class javax.swing.table.TableColumn
Represents the attributes of a column in a table, including the column index, width, minimum width, preferred width and maximum width.
TableColumn() - constructor for class javax.swing.table.TableColumn
Creates a new TableColumn that maps to column 0 in the related table model.
TableColumn(int) - constructor for class javax.swing.table.TableColumn
Creates a new TableColumn that maps to the specified column in the related table model.
TableColumn(int,int) - constructor for class javax.swing.table.TableColumn
Creates a new TableColumn that maps to the specified column in the related table model, and has the specified width.
Creates a new TableColumn that maps to the specified column in the related table model, and has the specified width, cellRenderer and cellEditor.
TableColumnModel - interface javax.swing.table.TableColumnModel
The interface used by JTable to access the columns in the table view.
TableColumnModelEvent
Constructor TableColumnModelEvent
A TableColumnModelListener can register with a TableColumnModel to receive notification of changes to the model.
tableColumns - field in class javax.swing.table.DefaultTableColumnModel
Storage for the table columns.
tableHeader - field in class javax.swing.JTable
The tableHeader property.
A border for table header cells.
TableHeaderBorder() - constructor for class javax.swing.plaf.metal.MetalBorders.TableHeaderBorder
Creates a new instance of TableHeaderBorder.
TableHeaderUI - class javax.swing.plaf.TableHeaderUI
An abstract base class for delegates that implement the pluggable look and feel for a JTableHeader.
TableHeaderUI() - constructor for class javax.swing.plaf.TableHeaderUI
Constructs a new TableHeaderUI.
tableIndexClustered - static field in class java.sql.DatabaseMetaData
This table index is clustered.
tableIndexHashed - static field in class java.sql.DatabaseMetaData
This table index is hashed.
tableIndexOther - static field in class java.sql.DatabaseMetaData
This table index is of another type.
tableIndexStatistic - static field in class java.sql.DatabaseMetaData
This column contains table statistics.
TableModel - interface javax.swing.table.TableModel
A TableModel is a two dimensional data structure that can store arbitrary Object instances, usually for the purpose of display in a JTable component.
TableModelEvent - class javax.swing.event.TableModelEvent
An event that describes changes to a TableModel.
TableModelEvent(javax.swing.table.TableModel) - constructor for class javax.swing.event.TableModelEvent
Creates a new TableModelEvent indicating an UPDATE to the data in all columns and rows.
TableModelEvent(javax.swing.table.TableModel,int) - constructor for class javax.swing.event.TableModelEvent
Creates a new TableModelEvent indicating an UPDATE to the data in a single row across all columns.
Creates a new TableModelEvent indicating an UPDATE to the data in the specified rows across all columns.
Creates a new TableModelEvent indicating an UPDATE to the data in the specified rows and column.
Creates a new TableModelEvent indicating an operation of the specified type on the data in the specified rows and column.
TableModelListener - interface javax.swing.event.TableModelListener
A TableModelListener can register with a TableModel and receive notification of updates to the model.
TableView.TableRow - class javax.swing.text.TableView.TableRow
A view implementation that renders a row of a TableView.
TableRow(javax.swing.text.Element) - constructor for class javax.swing.text.TableView.TableRow
Creates a new instance of TableRow.
Receives notification when one or more rows have been deleted from the table.
Receives notification when one or more rows have been inserted into the table and fires appropriate property change events.
TableUI - class javax.swing.plaf.TableUI
An abstract base class for delegates that implement the pluggable look and feel for a JTable.
TableUI() - constructor for class javax.swing.plaf.TableUI
Constructs a new TableUI.
TableView - class javax.swing.text.TableView
A View implementation for rendering tables inside styled text.
TableView(javax.swing.text.Element) - constructor for class javax.swing.text.TableView
Creates a new instance of TableView.
TABLOID - static field in class javax.print.attribute.standard.MediaSize.Other
Tabloid size, 11 inch x 17 inch.
TABLOID - static field in class javax.print.attribute.standard.MediaSizeName
The tabloid size: 11 inches by 17 inches.
TABLOID - static field in class java.awt.PageAttributes.MediaType
tabPane - field in class javax.swing.plaf.basic.BasicTabbedPaneUI
The tab pane that this UI paints.
tabPlacement - field in class javax.swing.JTabbedPane
The current tabPlacement of the TabbedPane.
tabRunOverlay - field in class javax.swing.plaf.basic.BasicTabbedPaneUI
The amount of space each run overlaps the previous by.
tabRuns - field in class javax.swing.plaf.basic.BasicTabbedPaneUI
This array keeps track of which tabs are in which run.
This class handles ChangeEvents from the JTabbedPane.
TabSet - class javax.swing.text.TabSet
A set of tab stops.
TabSet - static field in class javax.swing.text.StyleConstants
TabSet - static field in class javax.swing.text.StyleConstants.ParagraphConstants
A key for the tabset paragraph attribute.
TabSet(javax.swing.text.TabStop[]) - constructor for class javax.swing.text.TabSet
Creates a new TabSet containing the specified tab stops.
tabSizeAttribute - static field in class javax.swing.text.PlainDocument
TabStop - class javax.swing.text.TabStop
Represents a tab position in some text.
TabStop(float) - constructor for class javax.swing.text.TabStop
Creates a new TabStop for the specified tab position.
TabStop(float,int,int) - constructor for class javax.swing.text.TabStop
Creates a new TabStop with the specified attributes.
TabularData - interface javax.management.openmbean.TabularData
Provides an interface to a specific type of composite data structure, where keys (the columns) map to the CompositeData objects that form the rows of the table.
TabularDataSupport - class javax.management.openmbean.TabularDataSupport
Provides an implementation of the TabularData interface using a HashMap.
TabularDataSupport(javax.management.openmbean.TabularType) - constructor for class javax.management.openmbean.TabularDataSupport
Constructs a new empty TabularDataSupport with the specified type.
Constructs a new empty TabularDataSupport with the specified type and the supplied initial capacity and load factor being used for the underlying HashMap.
TabularType - class javax.management.openmbean.TabularType
The open type descriptor for instances of the TabularData class.
Constructs a new TabularType instance for the given type name, description, row type and index names.
HTML.Tag - class javax.swing.text.html.HTML.Tag
Represents a HTML tag.
tag - field in class org.omg.IOP.TaggedComponent
The integer tag identifier, for instance, TAG_CODE_SETS.value.
tag - field in class org.omg.IOP.TaggedProfile
The integer tag identifier, typically one of TAG_INTERNET_IOP.value or TAG_MULTIPLE_COMPONENTS.value.
Tag() - constructor for class javax.swing.text.html.HTML.Tag
Create the unitialised instance of HTML.Tag.
Tag(java.lang.String) - constructor for class javax.swing.text.html.HTML.Tag
Creates a new Tag with the specified id, and with causesBreak and isBlock set to false.
Tag(java.lang.String,boolean,boolean) - constructor for class javax.swing.text.html.HTML.Tag
Creates a new Tag with the specified tag name and causesBreak and isBlock properties.
TAG_ACNT - static field in class java.awt.font.OpenType
Holds an integer constant of the TAG_ALTERNATE_IIOP_ADDRESS Component that may occur zero or more times in the Internet of Multiple components profile.
TAG_AVAR - static field in class java.awt.font.OpenType
TAG_BASE - static field in class java.awt.font.OpenType
TAG_BDAT - static field in class java.awt.font.OpenType
TAG_BLOC - static field in class java.awt.font.OpenType
TAG_BSLN - static field in class java.awt.font.OpenType
TAG_CFF - static field in class java.awt.font.OpenType
TAG_CMAP - static field in class java.awt.font.OpenType
TAG_CODE_SETS - interface org.omg.IOP.TAG_CODE_SETS
Holds the integer identifier of the code sets profile.
TAG_CVAR - static field in class java.awt.font.OpenType
TAG_CVT - static field in class java.awt.font.OpenType
TAG_DSIG - static field in class java.awt.font.OpenType
TAG_EBDT - static field in class java.awt.font.OpenType
TAG_EBLC - static field in class java.awt.font.OpenType
TAG_EBSC - static field in class java.awt.font.OpenType
TAG_FDSC - static field in class java.awt.font.OpenType
TAG_FEAT - static field in class java.awt.font.OpenType
TAG_FMTX - static field in class java.awt.font.OpenType
TAG_FPGM - static field in class java.awt.font.OpenType
TAG_FVAR - static field in class java.awt.font.OpenType
TAG_GASP - static field in class java.awt.font.OpenType
TAG_GDEF - static field in class java.awt.font.OpenType
TAG_GLYF - static field in class java.awt.font.OpenType
TAG_GPOS - static field in class java.awt.font.OpenType
TAG_GSUB - static field in class java.awt.font.OpenType
TAG_GVAR - static field in class java.awt.font.OpenType
TAG_HDMX - static field in class java.awt.font.OpenType
TAG_HEAD - static field in class java.awt.font.OpenType
TAG_HHEA - static field in class java.awt.font.OpenType
TAG_HMTX - static field in class java.awt.font.OpenType
TAG_INTERNET_IOP - interface org.omg.IOP.TAG_INTERNET_IOP
Holds the integer identifier of the internet profile.
TAG_JAVA_CODEBASE - interface org.omg.IOP.TAG_JAVA_CODEBASE
Holds an integer identifier of the TAG_JAVA_CODEBASE profile.
TAG_JSTF - static field in class java.awt.font.OpenType
TAG_JUST - static field in class java.awt.font.OpenType
TAG_KERN - static field in class java.awt.font.OpenType
TAG_LCAR - static field in class java.awt.font.OpenType
TAG_LOCA - static field in class java.awt.font.OpenType
TAG_LTSH - static field in class java.awt.font.OpenType
TAG_MAXP - static field in class java.awt.font.OpenType
TAG_MMFX - static field in class java.awt.font.OpenType
TAG_MMSD - static field in class java.awt.font.OpenType
TAG_MORT - static field in class java.awt.font.OpenType
Holds the integer identifier of the multiple components profile.
TAG_NAME - static field in class java.awt.font.OpenType
TAG_OPBD - static field in class java.awt.font.OpenType
TAG_ORB_TYPE - interface org.omg.IOP.TAG_ORB_TYPE
Holds an integer constant of the TAG_ORB_TYPE Component that defines the kind or CORBA implementation of ORB the reference is comming from.
TAG_OS2 - static field in class java.awt.font.OpenType
TAG_PCLT - static field in class java.awt.font.OpenType
TAG_POLICIES - interface org.omg.IOP.TAG_POLICIES
An integer identifier for the TAG_POLICIES component.
TAG_POST - static field in class java.awt.font.OpenType
TAG_PREP - static field in class java.awt.font.OpenType
TAG_PROP - static field in class java.awt.font.OpenType
A single constant interface, defining the TAG_RMI_CUSTOM_MAX_STREAM_FORMAT (= 38) tagged component.
TAG_TRAK - static field in class java.awt.font.OpenType
TAG_TYP1 - static field in class java.awt.font.OpenType
TAG_VDMX - static field in class java.awt.font.OpenType
TAG_VHEA - static field in class java.awt.font.OpenType
TAG_VMTX - static field in class java.awt.font.OpenType
TAGALOG - static field in class java.lang.Character.UnicodeBlock
Tagalog.
TAGBANWA - static field in class java.lang.Character.UnicodeBlock
Tagbanwa.
TagElement - class javax.swing.text.html.parser.TagElement
The SGML element, defining a single html tag.
TagElement(javax.swing.text.html.parser.Element) - constructor for class javax.swing.text.html.parser.TagElement
Creates the html tag element from the defintion, stored in the given element.
TagElement(javax.swing.text.html.parser.Element,boolean) - constructor for class javax.swing.text.html.parser.TagElement
Creates the html tag element from the defintion, stored in the given element, setting the flag 'fictional' to the given value.
TaggedComponent - class org.omg.IOP.TaggedComponent
The tagged component in a part of the TaggedProfile.
TaggedComponent() - constructor for class org.omg.IOP.TaggedComponent
Create the unitialised instance, assigning to the all fields java default values.
TaggedComponent(int,byte[]) - constructor for class org.omg.IOP.TaggedComponent
Create the instance, initialising the fields to the given values.
A helper operations for the TaggedComponent.
A holder for the structure TaggedComponent.
TaggedComponentHolder() - constructor for class org.omg.IOP.TaggedComponentHolder
Create the unitialised instance, leaving the value field with default null value.
Create the initialised instance.
TaggedProfile - class org.omg.IOP.TaggedProfile
The TaggedProfile if part of the IOR, defining a single specific aspect of the object related information.
TaggedProfile() - constructor for class org.omg.IOP.TaggedProfile
Create the unitialised instance, assigning to the all fields java default values.
TaggedProfile(int,byte[]) - constructor for class org.omg.IOP.TaggedProfile
Create the instance, initialising the fields to the given values.
A helper operations for the structure TaggedProfile.
A holder for the structure TaggedProfile.
TaggedProfileHolder() - constructor for class org.omg.IOP.TaggedProfileHolder
Create the unitialised instance, leaving the value field with default null value.
Create the initialised instance.
TAGS - static field in class java.lang.Character.UnicodeBlock
Tags.
TAI_LE - static field in class java.lang.Character.UnicodeBlock
Tai Le.
TAI_XUAN_JING_SYMBOLS - static field in class java.lang.Character.UnicodeBlock
Tai Xuan Jing Symbols.
tailSet(E) - method in class java.util.SortedSet<E>
Returns a view of the portion of the set greater than or equal to fromElement.
tailSet(T) - method in class java.util.TreeSet<T>
Returns a view of this Set including all elements greater or equal to from.
tailSet(T,boolean) - method in class java.util.TreeSet<T>
Returns a view of this Set including all elements greater (or equal to, if inclusive is true) from.
TAIWAN - static field in class java.util.Locale
Locale which represents Taiwan.
TAMIL - static field in class java.lang.Character.UnicodeBlock
Tamil.
TAMIL - static field in class java.awt.font.NumericShaper
Constant representing the Unicode TAMIL range.
tan(double) - static method in class java.lang.Math
The trigonometric function tan.
tan(double) - static method in class java.lang.StrictMath
The trigonometric function tan.
tanh(double) - static method in class java.lang.Math
Returns the hyperbolic tangent of the given value.
tanh(double) - static method in class java.lang.StrictMath
Returns the hyperbolic tangent of x, which is defined as (exp(x) - exp(-x)) / (exp(x) + exp(-x)), i.e. sinh(x) / cosh(x).
target - field in class java.awt.Event
TARGET - static field in class javax.swing.text.html.HTML.Attribute
The target attribute
Target - interface java.lang.annotation.Target
target() - method in class org.omg.PortableInterceptor.ClientRequestInfoOperations
Returns the object on that the client has invoked the the operation.
target() - method in class org.omg.CORBA.Request
Return the CORBA object on that the method would be invoked.
target_is_a(java.lang.String) - method in class org.omg.PortableInterceptor.ServerRequestInfoOperations
Checks if the servant is the given repository id.
target_most_derived_interface() - method in class org.omg.PortableInterceptor.ServerRequestInfoOperations
Get the most derived (most specific) repository Id of the servant.
TargetDataLine - interface javax.sound.sampled.TargetDataLine
This is a DataLine from which data may be read.
targetMustExist() - method in class javax.naming.event.EventContext
TC_ARRAY - static field in class java.io.ObjectStreamConstants
Token value to designate a new array is next in the stream.
TC_BASE - static field in class java.io.ObjectStreamConstants
The first token value.
TC_BLOCKDATA - static field in class java.io.ObjectStreamConstants
Token value to designate a block of primitive data is next in the stream.
TC_BLOCKDATALONG - static field in class java.io.ObjectStreamConstants
Token value to designate a long block of primitive data is next in the stream.
TC_CLASS - static field in class java.io.ObjectStreamConstants
Token reference to designate a reference to a class.
TC_CLASSDESC - static field in class java.io.ObjectStreamConstants
Token value to designate a class descriptor is next in the stream.
TC_ENDBLOCKDATA - static field in class java.io.ObjectStreamConstants
Token value to designate the end of a block of primitve data.
TC_ENUM - static field in class java.io.ObjectStreamConstants
Token value to designate an enum constant is next in the stream.
TC_EXCEPTION - static field in class java.io.ObjectStreamConstants
Token value to designate an exception occured during serialization.
TC_LONGSTRING - static field in class java.io.ObjectStreamConstants
Token value to designate a long string is next in the stream.
TC_MAX - static field in class java.io.ObjectStreamConstants
The last token value.
TC_NULL - static field in class java.io.ObjectStreamConstants
Token value to designate a null reference in the stream.
TC_OBJECT - static field in class java.io.ObjectStreamConstants
Token value to designate a new object is next in the stream.
TC_PROXYCLASSDESC - static field in class java.io.ObjectStreamConstants
Token value to designate a proxy class descriptor is next in the stream.
TC_REFERENCE - static field in class java.io.ObjectStreamConstants
Token value to designate a reference to an already serialized object.
TC_RESET - static field in class java.io.ObjectStreamConstants
Token value to designate a reset of the stream state.
TC_STRING - static field in class java.io.ObjectStreamConstants
Token value to designate a new string is next in the stream.
TCKind - class org.omg.CORBA.TCKind
The basic constants, used in java to IDL mapping.
TCKind(int) - constructor for class org.omg.CORBA.TCKind
Creates a new TCKind instance with the given integer constant value.
TCP_NODELAY - static field in class java.net.SocketOptions
Option id for the TCP_NODELAY value
TD - static field in class javax.swing.text.html.HTML.Tag
The <td> tag , breaks flow, block tag.
TELUGU - static field in class java.lang.Character.UnicodeBlock
Telugu.
TELUGU - static field in class java.awt.font.NumericShaper
Constant representing the Unicode TELUGU range.
Templates - interface javax.xml.transform.Templates
A compiled, reusable XSL transformation.
TemplatesHandler - interface javax.xml.transform.sax.TemplatesHandler
A content handler that processes SAX parse events into a compiled transformation template.
TEN - static field in class java.math.BigDecimal
The constant ten as a BigDecimal with scale zero.
TEN - static field in class java.math.BigInteger
The constant ten as a BigInteger.
TERTIARY - static field in class java.text.Collator
This constant is a strength value which indicates that tertiary, secondary, and primary differences will be considered during sorting.
tertiaryOrder(int) - static method in class java.text.CollationElementIterator
This method returns the tertiary order value for the given collation value.
testBit(int) - method in class java.math.BigInteger
TEXT - static field in class javax.accessibility.AccessibleRole
An object which represents text, usually editable by the user.
text - field in class javax.accessibility.AccessibleTextSequence
The text of the sequence.
TEXT - static field in class javax.swing.text.html.HTML.Attribute
The text attribute
Text - interface org.w3c.dom.Text
The Text interface inherits from CharacterData and represents the textual content (termed character data in XML) of an Element or Attr.
text - static field in class java.awt.SystemColor
The text background color.
text(javax.swing.text.Element) - method in class javax.swing.text.AbstractWriter
Output the text of the indicated Element, properly clipping it to the range of the Document specified when the AbstractWriter was created.
text(javax.swing.text.Element) - method in class javax.swing.text.html.HTMLWriter
Writes out text, within the appropriate range if it is specified.
text(javax.swing.text.Element) - method in class javax.swing.text.html.MinimalHTMLWriter
Output the text of the indicated Element, properly clipping it to the range of the Document specified when the AbstractWriter was created.
TEXT_ALIGN - static field in class javax.swing.text.html.CSS.Attribute
The CSS attribute 'text-align'.
TEXT_AREA - static field in class javax.swing.plaf.synth.Region
Specifies the region of a text area.
TEXT_BACKGROUND - static field in class javax.swing.plaf.synth.ColorType
A constant used to identify the background color of text of a component.
TEXT_CHANGED_PROPERTY - static field in class javax.swing.AbstractButton
Fired in a PropertyChangeEvent when the "text" property changes.
TEXT_CURSOR - static field in class java.awt.Cursor
Constant for a cursor over a text field.
TEXT_CURSOR - static field in class java.awt.Frame
Constant for a cursor over a text field.
TEXT_DECORATION - static field in class javax.swing.text.html.CSS.Attribute
The CSS attribute 'text-decoration'.
TEXT_EVENT_MASK - static field in class java.awt.AWTEvent
Mask for text events.
TEXT_FIELD - static field in class javax.swing.plaf.synth.Region
Specifies the region of a text field.
TEXT_FIRST - static field in class java.awt.event.TextEvent
This is the first id in the range of event ids used by this class.
TEXT_FOREGROUND - static field in class javax.swing.plaf.synth.ColorType
A constant used to identify the foreground color of text of a component.
TEXT_HIGHLIGHT - static field in class java.awt.SystemColor
Array index of the highlighted text background color.
TEXT_HIGHLIGHT_TEXT - static field in class java.awt.SystemColor
Array index of the highlighted text foreground color.
TEXT_HTML - static field in class javax.print.DocFlavor.CHAR_ARRAY
Char array doc flavor with a MIME Type of "text/html; charset=utf-16".
TEXT_HTML - static field in class javax.print.DocFlavor.READER
Reader doc flavor with a MIME Type of "text/html; charset=utf-16".
TEXT_HTML - static field in class javax.print.DocFlavor.STRING
String doc flavor with a MIME Type of "text/html; charset=utf-16".
TEXT_HTML_HOST - static field in class javax.print.DocFlavor.BYTE_ARRAY
Byte array doc flavor with a MIME Type of "text/html" in the host encoding.
TEXT_HTML_HOST - static field in class javax.print.DocFlavor.INPUT_STREAM
InputStream doc flavor with a MIME Type of "text/html" in the host encoding.
TEXT_HTML_HOST - static field in class javax.print.DocFlavor.URL
URL doc flavor with a MIME Type of "text/html" in the host encoding.
TEXT_HTML_US_ASCII - static field in class javax.print.DocFlavor.BYTE_ARRAY
Byte array doc flavor with a MIME Type of "text/html; charset=us-ascii".
TEXT_HTML_US_ASCII - static field in class javax.print.DocFlavor.INPUT_STREAM
InputStream doc flavor with a MIME Type of "text/html; charset=us-ascii".
TEXT_HTML_US_ASCII - static field in class javax.print.DocFlavor.URL
URL doc flavor with a MIME Type of "text/html; charset=us-ascii".
TEXT_HTML_UTF_16 - static field in class javax.print.DocFlavor.BYTE_ARRAY
Byte array doc flavor with a MIME Type of "text/html; charset=utf-16".
TEXT_HTML_UTF_16 - static field in class javax.print.DocFlavor.INPUT_STREAM
InputStream doc flavor with a MIME Type of "text/html; charset=utf-16".
TEXT_HTML_UTF_16 - static field in class javax.print.DocFlavor.URL
URL doc flavor with a MIME Type of "text/html; charset=utf-16".
TEXT_HTML_UTF_16BE - static field in class javax.print.DocFlavor.BYTE_ARRAY
Byte array doc flavor with a MIME Type of "text/html; charset=utf-16be".
TEXT_HTML_UTF_16BE - static field in class javax.print.DocFlavor.INPUT_STREAM
InputStream doc flavor with a MIME Type of "text/html; charset=utf-16be".
TEXT_HTML_UTF_16BE - static field in class javax.print.DocFlavor.URL
URL doc flavor with a MIME Type of "text/html; charset=utf-16be".
TEXT_HTML_UTF_16LE - static field in class javax.print.DocFlavor.BYTE_ARRAY
Byte array doc flavor with a MIME Type of "text/html; charset=utf-16le".
TEXT_HTML_UTF_16LE - static field in class javax.print.DocFlavor.INPUT_STREAM
InputStream doc flavor with a MIME Type of "text/html; charset=utf-16le".
TEXT_HTML_UTF_16LE - static field in class javax.print.DocFlavor.URL
URL doc flavor with a MIME Type of "text/html; charset=utf-16le".
TEXT_HTML_UTF_8 - static field in class javax.print.DocFlavor.BYTE_ARRAY
Byte array doc flavor with a MIME Type of "text/html; charset=utf-8".
TEXT_HTML_UTF_8 - static field in class javax.print.DocFlavor.INPUT_STREAM
InputStream doc flavor with a MIME Type of "text/html; charset=utf-8".
TEXT_HTML_UTF_8 - static field in class javax.print.DocFlavor.URL
URL doc flavor with a MIME Type of "text/html; charset=utf-8".
TEXT_INACTIVE_TEXT - static field in class java.awt.SystemColor
Array index of the inactive text foreground color.
TEXT_INDENT - static field in class javax.swing.text.html.CSS.Attribute
The CSS attribute 'text-indent'.
TEXT_INSET_H - static field in class javax.swing.border.TitledBorder
The number of pixels between the outside of this TitledBorder and the beginning (if left-aligned) or end (if right-aligned) of the title text.
TEXT_LAST - static field in class java.awt.event.TextEvent
This is the last id in the range of event ids used by this class.
TEXT_NODE - static field in class org.w3c.dom.Node
The node is a Text node.
TEXT_PANE - static field in class javax.swing.plaf.synth.Region
Specifies the region of a text pane.
TEXT_PLAIN - static field in class javax.print.DocFlavor.CHAR_ARRAY
Char array doc flavor with a MIME Type of "text/plain; charset=utf-16".
TEXT_PLAIN - static field in class javax.print.DocFlavor.READER
Reader doc flavor with a MIME Type of "text/plain; charset=utf-16".
TEXT_PLAIN - static field in class javax.print.DocFlavor.STRING
String doc flavor with a MIME Type of "text/plain; charset=utf-16".
TEXT_PLAIN_HOST - static field in class javax.print.DocFlavor.BYTE_ARRAY
Byte array doc flavor with a MIME Type of "text/plain" in the host encoding.
TEXT_PLAIN_HOST - static field in class javax.print.DocFlavor.INPUT_STREAM
InputStream doc flavor with a MIME Type of "text/plain" in the host encoding.
TEXT_PLAIN_HOST - static field in class javax.print.DocFlavor.URL
URL doc flavor with a MIME Type of "text/plain" in the host encoding.
TEXT_PLAIN_US_ASCII - static field in class javax.print.DocFlavor.BYTE_ARRAY
Byte array doc flavor with a MIME Type of "text/plain; charset=us-ascii".
TEXT_PLAIN_US_ASCII - static field in class javax.print.DocFlavor.INPUT_STREAM
InputStream doc flavor with a MIME Type of "text/plain; charset=us-ascii".
TEXT_PLAIN_US_ASCII - static field in class javax.print.DocFlavor.URL
URL doc flavor with a MIME Type of "text/plain; charset=us-ascii".
TEXT_PLAIN_UTF_16 - static field in class javax.print.DocFlavor.BYTE_ARRAY
Byte array doc flavor with a MIME Type of "text/plain; charset=utf-16".
TEXT_PLAIN_UTF_16 - static field in class javax.print.DocFlavor.INPUT_STREAM
InputStream doc flavor with a MIME Type of "text/plain; charset=utf-16".
TEXT_PLAIN_UTF_16 - static field in class javax.print.DocFlavor.URL
URL doc flavor with a MIME Type of "text/plain; charset=utf-16".
TEXT_PLAIN_UTF_16BE - static field in class javax.print.DocFlavor.BYTE_ARRAY
Byte array doc flavor with a MIME Type of "text/plain; charset=utf-16be".
TEXT_PLAIN_UTF_16BE - static field in class javax.print.DocFlavor.INPUT_STREAM
InputStream doc flavor with a MIME Type of "text/plain; charset=utf-16be".
TEXT_PLAIN_UTF_16BE - static field in class javax.print.DocFlavor.URL
URL doc flavor with a MIME Type of "text/plain; charset=utf-16be".
TEXT_PLAIN_UTF_16LE - static field in class javax.print.DocFlavor.BYTE_ARRAY
Byte array doc flavor with a MIME Type of "text/plain; charset=utf-16le".
TEXT_PLAIN_UTF_16LE - static field in class javax.print.DocFlavor.INPUT_STREAM
InputStream doc flavor with a MIME Type of "text/plain; charset=utf-16le".
TEXT_PLAIN_UTF_16LE - static field in class javax.print.DocFlavor.URL
URL doc flavor with a MIME Type of "text/plain; charset=utf-16le".
TEXT_PLAIN_UTF_8 - static field in class javax.print.DocFlavor.BYTE_ARRAY
Byte array doc flavor with a MIME Type of "text/plain; charset=utf-8".
TEXT_PLAIN_UTF_8 - static field in class javax.print.DocFlavor.INPUT_STREAM
InputStream doc flavor with a MIME Type of "text/plain; charset=utf-8".
TEXT_PLAIN_UTF_8 - static field in class javax.print.DocFlavor.URL
URL doc flavor with a MIME Type of "text/plain; charset=utf-8".
TEXT_SPACING - static field in class javax.swing.border.TitledBorder
The number of pixels between the title text and border.
TEXT_TEXT - static field in class java.awt.SystemColor
Array index of the text foreground color.
TEXT_TRANSFORM - static field in class javax.swing.text.html.CSS.Attribute
The CSS attribute 'text-transform'.
TEXT_VALUE_CHANGED - static field in class java.awt.event.TextEvent
This event id indicates that the text of an object has changed.
TextAction - class javax.swing.text.TextAction
TextAction
TextAction(java.lang.String) - constructor for class javax.swing.text.TextAction
Constructor TextAction
TEXTAREA - static field in class javax.swing.text.html.HTML.Tag
The <textarea> tag , preformatted.
TextArea - class java.awt.TextArea
A TextArea is a text component capable of displaying multiple lines of user-editable text.
TextArea() - constructor for class java.awt.TextArea
Initialize a new instance of TextArea that is empty.
TextArea(int,int) - constructor for class java.awt.TextArea
Initialize a new instance of TextArea that is empty and can display the specified number of rows and columns of text, without the need to scroll.
TextArea(java.lang.String) - constructor for class java.awt.TextArea
Initialize a new instance of TextArea that contains the specified text.
TextArea(java.lang.String,int,int) - constructor for class java.awt.TextArea
Initialize a new instance of TextArea that can display the specified number of rows and columns of text, without the need to scroll.
TextArea(java.lang.String,int,int,int) - constructor for class java.awt.TextArea
Initialize a new instance of TextArea that initially contains the specified text.
textAreaContent(char[]) - method in class javax.swing.text.html.HTMLDocument.HTMLReader
Adds the given text to the textarea document.
textAreaContent(javax.swing.text.AttributeSet) - method in class javax.swing.text.html.HTMLWriter
Writes out the contents of a textarea.
TextAreaPeer - interface java.awt.peer.TextAreaPeer
TextAttribute - class java.awt.font.TextAttribute
Attributes (and associated values) that can be used to define an AttributedString.
TextAttribute(java.lang.String) - constructor for class java.awt.font.TextAttribute
Creates a new attribute.
TextComponent - class java.awt.TextComponent
This class provides common functionality for widgets than contain text.
TextComponentPeer - interface java.awt.peer.TextComponentPeer
TextEvent - class java.awt.event.TextEvent
This event is generated when a text box changes contents.
TextEvent(java.lang.Object,int) - constructor for class java.awt.event.TextEvent
Initializes a new instance of TextEvent with the specified source and id.
TextField - class java.awt.TextField
This class implements a single line text entry field widget
TextField() - constructor for class java.awt.TextField
Initializes a new instance of TextField that is empty and has one column.
TextField(int) - constructor for class java.awt.TextField
Initializes a new instance of TextField that is empty and has the specified number of columns.
TextField(java.lang.String) - constructor for class java.awt.TextField
Initializes a new instance of TextField containing the specified text.
TextField(java.lang.String,int) - constructor for class java.awt.TextField
Initializes a new instance of TextField with the specified text and number of columns.
A border used for the JTextField component.
TextFieldBorder() - constructor for class javax.swing.plaf.metal.MetalBorders.TextFieldBorder
Creates a new border instance.
TextFieldPeer - interface java.awt.peer.TextFieldPeer
textHighlight - static field in class java.awt.SystemColor
The highlighted text background color.
textHighlightText - static field in class java.awt.SystemColor
The highlighted text foreground color.
TextHitInfo - class java.awt.font.TextHitInfo
textIconGap - field in class javax.swing.plaf.basic.BasicTabbedPaneUI
The gap between text and label
textInactiveText - static field in class java.awt.SystemColor
The inactive text color.
TextInputCallback - class javax.security.auth.callback.TextInputCallback
Underlying security services instantiate and pass a TextInputCallback to the handle() method of a CallbackHandler to retrieve generic text information.
TextInputCallback(java.lang.String) - constructor for class javax.security.auth.callback.TextInputCallback
Construct a TextInputCallback with a prompt.
TextInputCallback(java.lang.String,java.lang.String) - constructor for class javax.security.auth.callback.TextInputCallback
Construct a TextInputCallback with a prompt and default input value.
TextLayout - class java.awt.font.TextLayout
Constructs a TextLayout.
TextListener - interface java.awt.event.TextListener
This interface is for classes that wish to be notified when text changes in a component.
textListener - field in class java.awt.TextComponent
A list of listeners that will receive events from this object.
TextMeasurer - class java.awt.font.TextMeasurer
TextMeasurer is a small utility class for measuring the length of laid-out text objects.
Creates a TextMeasurer from a given text in the form of an AttributedCharacterIterator and a FontRenderContext.
textNonSelectionColor - field in class javax.swing.tree.DefaultTreeCellRenderer
The color used for text in non-selected cells.
TextOutputCallback - class javax.security.auth.callback.TextOutputCallback
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,java.lang.String) - constructor for class javax.security.auth.callback.TextOutputCallback
Construct a TextOutputCallback with a message type and message to be displayed.
textSelectionColor - field in class javax.swing.tree.DefaultTreeCellRenderer
The color used for text in selected cells.
TextSyntax - class javax.print.attribute.TextSyntax
TextSyntax is the abstract base class of all attribute classes which provide a string as value (e.g. the location of the printer).
TextSyntax(java.lang.String,java.util.Locale) - constructor for class javax.print.attribute.TextSyntax
Creates a TextSyntax object with the given value and locale.
textText - static field in class java.awt.SystemColor
The text foreground color.
TextUI - class javax.swing.plaf.TextUI
An abstract base class for delegates that provide the user interface for text editors.
TextUI() - constructor for class javax.swing.plaf.TextUI
Constructs a new TextUI.
TexturePaint - class java.awt.TexturePaint
This class provides a way to fill a Shape with a texture that is specified by a BufferedImage.
Constructor.
Handles this event by dispatching it to the "a" and "b" listener instances.
This method is called when the text being monitored changes.
TH - static field in class javax.swing.text.html.HTML.Tag
The <th> tag , breaks flow, block tag.
THAANA - static field in class java.lang.Character.UnicodeBlock
Thaana.
THAI - static field in class java.lang.Character.UnicodeBlock
Thai.
THAI - static field in class java.awt.font.NumericShaper
Constant representing the Unicode THAI range.
the_activator() - method in class org.omg.PortableServer.POAOperations
Returns the adapter activator, associated with this POA.
Set the adapter activator for this POA.
the_children() - method in class org.omg.PortableServer.POAOperations
The children of this POA.
the_name() - method in class org.omg.PortableServer.POAOperations
Return the name of this POA.
the_parent() - method in class org.omg.PortableServer.POAOperations
Return the parent of this POA.
the_POAManager() - method in class org.omg.PortableServer.POAOperations
Return the POA manager, associated with this POA.
thickness - field in class javax.swing.border.LineBorder
The width of the line in pixels.
this_object(org.omg.PortableServer.Servant) - method in class org.omg.PortableServer.portable.Delegate
Obtains the CORBA object reference that is an invocation target for the given servant.
thisObject() - method in class javax.rmi.CORBA.Tie
Get the object that delegates calls to this tie.
Thread - class java.lang.Thread
Thread represents a single thread of execution in the VM.
Thread() - constructor for class java.lang.Thread
Allocates a new Thread object.
Thread(java.lang.Runnable) - constructor for class java.lang.Thread
Allocates a new Thread object.
Thread(java.lang.Runnable,java.lang.String) - constructor for class java.lang.Thread
Allocates a new Thread object.
Thread(java.lang.String) - constructor for class java.lang.Thread
Allocates a new Thread object.
Allocates a new Thread object.
Allocate a new Thread object, with the specified ThreadGroup and name, and using the specified Runnable object's run() method to execute.
Allocate a new Thread object, as if by Thread(group, null, name), and give it the specified stack size, in bytes.
Thread(java.lang.ThreadGroup,java.lang.String) - constructor for class java.lang.Thread
Allocates a new Thread object.
THREAD_MXBEAN_NAME - static field in class java.lang.management.ManagementFactory
The object name for the threading bean.
THREAD_POLICY_ID - interface org.omg.PortableServer.THREAD_POLICY_ID
Holds an integer ThreadPolicy identifier.
ThreadDeath - error java.lang.ThreadDeath
ThreadDeath is thrown in a thread when someone calls stop() on that thread.
ThreadDeath() - constructor for class java.lang.ThreadDeath
Create an error without a message.
ThreadGroup - class java.lang.ThreadGroup
ThreadGroup allows you to group Threads together.
ThreadGroup(java.lang.String) - constructor for class java.lang.ThreadGroup
Create a new ThreadGroup using the given name and the current thread's ThreadGroup as a parent.
Create a new ThreadGroup using the given name and parent group.
ThreadInfo - class java.lang.management.ThreadInfo
A class which maintains information about a particular thread.
ThreadLocal<T> - class java.lang.ThreadLocal<T>
ThreadLocal objects have a different state associated with every Thread that accesses them.
ThreadLocal() - constructor for class java.lang.ThreadLocal<T>
Creates a ThreadLocal object without associating any value to it yet.
ThreadMXBean - interface java.lang.management.ThreadMXBean
Provides access to information about the threads of the virtual machine.
ThreadPolicy - interface org.omg.PortableServer.ThreadPolicy
Defines the POA thread policy.
ThreadPolicyOperations - interface org.omg.PortableServer.ThreadPolicyOperations
Defines the operations, applicable to the ThreadPolicy.
ThreadPolicyValue - class org.omg.PortableServer.ThreadPolicyValue
Defines the possible values for the POA thread policy.
ThreadPolicyValue(int) - constructor for class org.omg.PortableServer.ThreadPolicyValue
Normally, no new instances are required, so the constructor is protected.
Throwable - class java.lang.Throwable
Throwable is the superclass of all exceptions that can be raised.
Throwable() - constructor for class java.lang.Throwable
Instantiate this Throwable with an empty message.
Throwable(java.lang.String) - constructor for class java.lang.Throwable
Instantiate this Throwable with the given message.
Instantiate this Throwable with the given message and cause.
Throwable(java.lang.Throwable) - constructor for class java.lang.Throwable
Instantiate this Throwable with the given cause.
throwException() - method in class java.nio.charset.CoderResult
thumbColor - field in class javax.swing.plaf.basic.BasicScrollBarUI
The color of the thumb.
thumbColor - static field in class javax.swing.plaf.metal.MetalSliderUI
The thumb color (unused, because an icon is used to draw the thumb).
thumbDarkShadowColor - field in class javax.swing.plaf.basic.BasicScrollBarUI
The outer shadow of the thumb.
thumbHighlightColor - field in class javax.swing.plaf.basic.BasicScrollBarUI
The top and left edge color for the thumb.
thumbLightShadowColor - field in class javax.swing.plaf.basic.BasicScrollBarUI
The outer light shadow for the thumb.
Reports that a thumbnail read operation has completed.
Reports that a thumbnail write operation has completed.
Reports that the current thumbnail read operation has completed a progressive pass.
Reports that the current thumbnail read operation is about to begin a progressive pass.
Reports the approximate percentage of completion of a thumbnail read operation.
Reports the approximate percentage of completion of a thumbnail write operation.
Reports that a thumbnail read operation is beginning.
Reports that a thumbnail write operation is beginning.
Reports that a given region of a thumbnail image has been updated.
thumbRect - field in class javax.swing.plaf.basic.BasicScrollBarUI
The size and position of the thumb.
thumbRect - field in class javax.swing.plaf.basic.BasicSliderUI
Rectangle describing the thumb's bounds.
THURSDAY - static field in class java.util.Calendar
Constant representing Thursday.
TIBETAN - static field in class java.lang.Character.UnicodeBlock
Tibetan.
TIBETAN - static field in class java.awt.font.NumericShaper
Constant representing the Unicode TIBETAN range.
TICK_BUFFER - field in class javax.swing.plaf.metal.MetalSliderUI
The gap between the track and the tick marks.
tickLength - static field in class javax.swing.plaf.metal.MetalSliderUI
The length of the major tick marks.
tickRect - field in class javax.swing.plaf.basic.BasicSliderUI
Rectangle describing the tick bounds.
ticks() - method in class javax.sound.midi.Track
Get the length of the track in MIDI ticks.
Tie - interface javax.rmi.CORBA.Tie
A Tie serves as a CORBA Servant or implementation base.
tileGridXOffset - field 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.
tileGridYOffset - field 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.
tileHeight - field in class javax.imageio.ImageWriteParam
The height of each tile if tiling has been set.
tileIcon - field in class javax.swing.border.MatteBorder
The icon is used for filling the border with a tile, or null if the border is filled with a solid color.
TileObserver - interface java.awt.image.TileObserver
NEEDS DOCUMENTATION
tileWidth - field in class javax.imageio.ImageWriteParam
The width of each tile if tiling has been set.
tilingMode - field in class javax.imageio.ImageWriteParam
The mode controlling tiling settings, which must be set to one of the four MODE_* values.
tilingSet - field in class javax.imageio.ImageWriteParam
True if the tiling parameters have been specified.
time - field in class java.util.Calendar
The time in milliseconds since the epoch.
TIME - static field in class javax.xml.datatype.DatatypeConstants
The qualified-name for the time data type.
Time - class java.sql.Time
This class is a wrapper around java.util.Date to allow the JDBC driver to identify the value as a SQL Time.
TIME - static field in class java.sql.Types
Time(int,int,int) - constructor for class java.sql.Time
This method initializes a new instance of this class with the specified year, month, and day.
Time(long) - constructor for class java.sql.Time
This method initializes a new instance of this class with the specified time value representing the number of milliseconds since Jan 1, 1970 at 12:00 midnight GMT.
TIME_ZONE - static field in class java.text.DateFormat.Field
TIMED_OUT - static field in class javax.print.attribute.standard.PrinterStateReason
The connection to the device has timed out.
TimeLimitExceededException() - constructor for class javax.naming.TimeLimitExceededException
TIMEOUT - exception org.omg.CORBA.TIMEOUT
Raised when no delivery has been made during the specified timeout duration.
TIMEOUT() - constructor for class org.omg.CORBA.TIMEOUT
Creates TIMEOUT with the default minor code of 0 and a completion state COMPLETED_NO.
TIMEOUT(int,org.omg.CORBA.CompletionStatus) - constructor for class org.omg.CORBA.TIMEOUT
Creates a TIMEOUT exception with the specified minor code and completion status.
TIMEOUT(java.lang.String) - constructor for class org.omg.CORBA.TIMEOUT
Creates TIMEOUT with the default minor code of 0, completion state COMPLETED_NO and the given explaining message.
Created TIMEOUT exception, providing full information.
timer - field in class javax.swing.plaf.basic.BasicTreeUI.ComponentHandler
Timer used when inside a scrollpane and the scrollbar is adjusting
timer - field in class javax.swing.tree.DefaultTreeCellEditor
Used before starting the editing session.
Timer - class java.util.Timer
Timer that can run TimerTasks at a later time.
Timer - class javax.swing.Timer
Fires one or more action events after the specified delay.
Timer() - constructor for class java.util.Timer
Creates a new Timer with a non daemon Thread as Scheduler, with normal priority and a default name.
Timer(boolean) - constructor for class java.util.Timer
Creates a new Timer with a daemon Thread as scheduler if daemon is true, with normal priority and a default name.
Timer(int,java.awt.event.ActionListener) - constructor for class javax.swing.Timer
Creates a new Timer object.
Timer(java.lang.String) - constructor for class java.util.Timer
Create a new Timer whose Thread has the indicated name.
Timer(java.lang.String,boolean) - constructor for class java.util.Timer
Create a new Timer whose Thread has the indicated name.
TimerTask - class java.util.TimerTask
Task that can be run at a later time if given to a Timer.
TimerTask() - constructor for class java.util.TimerTask
Creates a TimerTask and marks it as not yet scheduled.
TIMES - static field in class javax.management.Query
A code representing the
times(javax.management.ValueExp,javax.management.ValueExp) - static method in class javax.management.Query
Returns a value expression which evaluates to the result of multiplying v1 by v2.
Timestamp - class java.sql.Timestamp
This class is a wrapper around java.util.Date to allow the JDBC driver to identify the value as a SQL Timestamp.
TIMESTAMP - static field in class java.sql.Types
timestamp() - method in class java.util.UUID
Returns the 60-bit timestamp value of the UUID in a long.
Timestamp(int,int,int,int,int,int,int) - constructor for class java.sql.Timestamp
This method initializes a new instance of this class with the specified year, month, and day.
Timestamp(long) - constructor for class java.sql.Timestamp
This method initializes a new instance of this class with the specified time value representing the number of milliseconds since Jan 1, 1970 at 12:00 midnight GMT.
TimeZone - class java.util.TimeZone
This class represents a time zone offset and handles daylight savings.
TIMEZONE_FIELD - static field in class java.text.DateFormat
Represents the position of the generic timezone pattern character in the array of localized pattern characters.
A TimeZoneNameProvider provides localized versions of the names that represent a particular timezone.
TimeZoneNameProvider() - constructor for class java.util.spi.TimeZoneNameProvider
Constructs a new TimeZoneNameProvider.
TIMING_CLOCK - static field in class javax.sound.midi.ShortMessage
Status byte for Timing Clock message.
TINYINT - static field in class java.sql.Types
title - field in class javax.swing.text.html.parser.DTD
The title element for this DTD.
TITLE - static field in class javax.swing.text.html.HTML.Attribute
The title attribute
TITLE - static field in class javax.swing.text.html.HTML.Tag
The <title> tag , breaks flow, block tag.
title - field in class javax.swing.JInternalFrame
The title on the TitlePane of the JInternalFrame.
title - field in class javax.swing.border.TitledBorder
The title, or null to display no title.
TITLE_PROPERTY - static field in class javax.swing.JInternalFrame
The property fired in a PropertyChangeEvent when the title property changes.
TITLECASE_LETTER - static field in class java.lang.Character
Lt = Letter, Titlecase (Informative).
titleColor - field in class javax.swing.border.TitledBorder
The color for displaying the title text.
TitledBorder - class javax.swing.border.TitledBorder
A border that paints a title on top of another border.
TitledBorder(java.lang.String) - constructor for class javax.swing.border.TitledBorder
Constructs a TitledBorder given the text of its title.
TitledBorder(javax.swing.border.Border) - constructor for class javax.swing.border.TitledBorder
Constructs an initially untitled TitledBorder given another border.
Constructs a TitledBorder given its border and title text.
Constructs a TitledBorder given its border, title text, horizontal alignment, and vertical position.
Constructs a TitledBorder given its border, title text, horizontal alignment, vertical position, and font.
Constructs a TitledBorder given its border, title text, horizontal alignment, vertical position, font, and color.
A TitledBorder that also implements the UIResource marker interface.
Constructs a TitledBorderUIResource given the text of its title.
Constructs an initially untitled TitledBorderUIResource given another border.
Constructs a TitledBorder given its border and title text.
Constructs a TitledBorderUIResource given its border, title text, horizontal alignment, and vertical position.
Constructs a TitledBorder given its border, title text, horizontal alignment, vertical position, and font.
Constructs a TitledBorder given its border, title text, horizontal alignment, vertical position, font, and color.
titleFont - field in class javax.swing.border.TitledBorder
The font for displaying the title text.
titleJustification - field in class javax.swing.border.TitledBorder
The horizontal alignment of the title text in relation to the border, which is one of LEFT, CENTER, RIGHT, LEADING, TRAILING, or DEFAULT_JUSTIFICATION.
titlePane - field in class javax.swing.plaf.basic.BasicInternalFrameUI
The TitlePane displayed at the top of the JInternalFrame.
This class acts as the Layout Manager for the TitlePane.
TitlePaneLayout() - constructor for class javax.swing.plaf.basic.BasicInternalFrameTitlePane.TitlePaneLayout
Creates a new TitlePaneLayout object.
titlePosition - field in class javax.swing.border.TitledBorder
The vertical position of the title text relative to the border, which is one of ABOVE_TOP, TOP, BELOW_TOP, ABOVE_BOTTOM, BOTTOM, BELOW_BOTTOM, or DEFAULT_POSITION.
TitleProperty - static field in class javax.swing.text.Document
The key for the property that is the title of a document.
tk_abstract_interface - static field in class org.omg.CORBA.TCKind
The TCKind constant, indicating IDL data type abstract_interface
tk_alias - static field in class org.omg.CORBA.TCKind
The TCKind constant, indicating IDL data type alias
tk_any - static field in class org.omg.CORBA.TCKind
The TCKind constant, indicating IDL data type any
tk_array - static field in class org.omg.CORBA.TCKind
The TCKind constant, indicating IDL data type array
tk_boolean - static field in class org.omg.CORBA.TCKind
The TCKind constant, indicating IDL data type boolean
tk_char - static field in class org.omg.CORBA.TCKind
The TCKind constant, indicating IDL data type char
tk_double - static field in class org.omg.CORBA.TCKind
The TCKind constant, indicating IDL data type double
tk_enum - static field in class org.omg.CORBA.TCKind
The TCKind constant, indicating IDL data type enum
tk_except - static field in class org.omg.CORBA.TCKind
The TCKind constant, indicating IDL data type except
tk_fixed - static field in class org.omg.CORBA.TCKind
The TCKind constant, indicating IDL data type fixed
tk_float - static field in class org.omg.CORBA.TCKind
The TCKind constant, indicating IDL data type float
tk_long - static field in class org.omg.CORBA.TCKind
The TCKind constant, indicating IDL data type long
tk_longdouble - static field in class org.omg.CORBA.TCKind
The TCKind constant, indicating IDL data type longdouble
tk_longlong - static field in class org.omg.CORBA.TCKind
The TCKind constant, indicating IDL data type longlong
tk_native - static field in class org.omg.CORBA.TCKind
The TCKind constant, indicating IDL data type native
tk_null - static field in class org.omg.CORBA.TCKind
The TCKind constant, indicating IDL data type null
tk_objref - static field in class org.omg.CORBA.TCKind
The TCKind constant, indicating IDL data type objref
tk_octet - static field in class org.omg.CORBA.TCKind
The TCKind constant, indicating IDL data type octet
tk_Principal - static field in class org.omg.CORBA.TCKind
The TCKind constant, indicating IDL data type Principal
tk_sequence - static field in class org.omg.CORBA.TCKind
The TCKind constant, indicating IDL data type sequence
tk_short - static field in class org.omg.CORBA.TCKind
The TCKind constant, indicating IDL data type short
tk_string - static field in class org.omg.CORBA.TCKind
The TCKind constant, indicating IDL data type string
tk_struct - static field in class org.omg.CORBA.TCKind
The TCKind constant, indicating IDL data type struct
tk_TypeCode - static field in class org.omg.CORBA.TCKind
The TCKind constant, indicating IDL data type TypeCode
tk_ulong - static field in class org.omg.CORBA.TCKind
The TCKind constant, indicating IDL data type ulong
tk_ulonglong - static field in class org.omg.CORBA.TCKind
The TCKind constant, indicating IDL data type ulonglong
tk_union - static field in class org.omg.CORBA.TCKind
The TCKind constant, indicating IDL data type union
tk_ushort - static field in class org.omg.CORBA.TCKind
The TCKind constant, indicating IDL data type ushort
tk_value - static field in class org.omg.CORBA.TCKind
The TCKind constant, indicating IDL data type value
tk_value_box - static field in class org.omg.CORBA.TCKind
The TCKind constant, indicating IDL data type value_box
tk_void - static field in class org.omg.CORBA.TCKind
The TCKind constant, indicating IDL data type void
tk_wchar - static field in class org.omg.CORBA.TCKind
The TCKind constant, indicating IDL data type wchar
tk_wstring - static field in class org.omg.CORBA.TCKind
The TCKind constant, indicating IDL data type wstring
TMENDRSCAN - static field in class javax.transaction.xa.XAResource
TMFAIL - static field in class javax.transaction.xa.XAResource
TMJOIN - static field in class javax.transaction.xa.XAResource
TMNOFLAGS - static field in class javax.transaction.xa.XAResource
TMONEPHASE - static field in class javax.transaction.xa.XAResource
TMRESUME - static field in class javax.transaction.xa.XAResource
TMSTARTRSCAN - static field in class javax.transaction.xa.XAResource
TMSUCCESS - static field in class javax.transaction.xa.XAResource
TMSUSPEND - static field in class javax.transaction.xa.XAResource
to_any() - method in class org.omg.DynamicAny._DynAnyStub
The remote call of DynAny methods is not possible.
to_any() - method in class org.omg.DynamicAny._DynArrayStub
The remote call of DynAny methods is not possible.
to_any() - method in class org.omg.DynamicAny._DynEnumStub
The remote call of DynAny methods is not possible.
to_any() - method in class org.omg.DynamicAny._DynFixedStub
The remote call of DynAny methods is not possible.
to_any() - method in class org.omg.DynamicAny._DynSequenceStub
The remote call of DynAny methods is not possible.
to_any() - method in class org.omg.DynamicAny._DynStructStub
The remote call of DynAny methods is not possible.
to_any() - method in class org.omg.DynamicAny._DynUnionStub
The remote call of DynAny methods is not possible.
to_any() - method in class org.omg.DynamicAny._DynValueStub
The remote call of DynAny methods is not possible.
to_any() - method in class org.omg.CORBA.DynAny
Returns the enclosed Any.
to_any() - method in class org.omg.DynamicAny.DynAnyOperations
Returns a shallow copy of the enclosed Any,
to_name(java.lang.String) - method in class org.omg.CosNaming._NamingContextExtStub
Converts the string name representation into the array name representation.
to_name(java.lang.String) - method in class org.omg.CosNaming.NamingContextExtOperations
Converts the name, represented in the form of the string, into the older name representation (array of the name components).
Convert the name array representation to the name string representation.
Converts the older representation for the name (array of the name components) into the string form of the name.
toArray() - method in class java.util.AbstractCollection<E>
Return an array containing the elements of this collection.
toArray() - method in class javax.accessibility.AccessibleRelationSet
Return the relation set as an array.
toArray() - method in class javax.accessibility.AccessibleStateSet
Return the state set as an array.
toArray() - method in class java.util.ArrayList<E>
Returns an Object array containing all of the elements in this ArrayList.
toArray() - method in class javax.print.attribute.AttributeSet
Returns the content of the attribute set as an array
toArray() - method in class java.beans.beancontext.BeanContextMembershipEvent
An array of the children.
toArray() - method in class java.beans.beancontext.BeanContextSupport
Returns an array containing the children of this BeanContext.
toArray() - method in class java.util.Collection<E>
Copy the current contents of this collection into an array.
toArray() - method in class java.util.concurrent.CopyOnWriteArrayList<E>
Returns an Object array containing all of the elements in this ArrayList.
toArray() - method in class javax.swing.DefaultListModel
Gets an array containing the elements of the list.
toArray() - method in class java.awt.dnd.DragGestureEvent
Gets an array representation of the List of events.
toArray() - method in class javax.print.attribute.HashAttributeSet
Returns the content of the attribute set as an array
toArray() - method in class java.util.LinkedList<T>
Returns an array which contains the elements of the list in order.
toArray() - method in class java.util.List<E>
Copy the current contents of this list into an array.
toArray() - method in class java.util.Set<E>
Returns an array containing the elements of this set.
toArray() - method in class java.util.Vector<T>
Returns an Object array with the contents of this Vector, in the order they are stored within this Vector.
toArray(java.lang.Object[]) - method in class java.beans.beancontext.BeanContextSupport
Populates, then returns, the supplied array with the children of this BeanContext.
toArray(java.lang.Object[]) - method in class java.awt.dnd.DragGestureEvent
Gets an array representation of the List of events.
toASCIIString() - method in class java.net.URI
Returns the URI as US-ASCII string.
toBack() - method in class javax.swing.JInternalFrame
This method causes the JInternalFrame to be brough to back in the z-order.
toBack() - method in class java.awt.Window
Sends this window to the back so that all other windows display in front of it.
toBack() - method in class java.awt.peer.WindowPeer
toBigInteger() - method in class java.math.BigDecimal
Converts this BigDecimal to a BigInteger.
toBigIntegerExact() - method in class java.math.BigDecimal
Converts this BigDecimal into a BigInteger, throwing an ArithmeticException if the conversion is not exact.
toBinaryString(int) - static method in class java.lang.Integer
Converts the int to a String assuming it is unsigned in base 2.
toBinaryString(long) - static method in class java.lang.Long
Converts the long to a String assuming it is unsigned in base 2.
TOBOTTOM_TOLEFT - static field in class javax.print.attribute.standard.PresentationDirection
The single pages are arranged on the media in columns starting at the top right towards the bottom left.
TOBOTTOM_TORIGHT - static field in class javax.print.attribute.standard.PresentationDirection
The single pages are arranged on the media in columns starting at the top left towards the bottom left.
toByteArray() - method in class java.math.BigInteger
toByteArray() - method in class java.io.ByteArrayOutputStream
This method returns a byte array containing the bytes that have been written to this stream so far.
toByteArray() - method in class java.text.CollationKey
This method returns the collation bit sequence as a byte array.
toCharArray() - method in class java.io.CharArrayWriter
This method returns a char array containing the chars that have been written to this stream so far.
toCharArray() - method in class java.lang.String
Copies the contents of this String into a character array.
toChars(int) - static method in class java.lang.Character
Converts a unicode code point to a UTF-16 representation of that code point.
toChars(int,char[],int) - static method in class java.lang.Character
Converts a unicode code point to its UTF-16 representation.
toCIEXYZ(float[]) - method in class java.awt.color.ColorSpace
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
Given a valid surrogate pair, this returns the corresponding code point.
toDegrees(double) - static method in class java.lang.Math
Convert from radians to degrees.
toDegrees(double) - static method in class java.lang.StrictMath
Convert from radians to degrees.
toDisplayString() - method in class javax.accessibility.AccessibleBundle
Obtains the key as a localized string, using the default locale.
Obtains the key as a localized string, falling back to the locale-independent version if necessary.
toDisplayString(java.util.Locale) - method in class javax.accessibility.AccessibleBundle
Obtains the key as a localized string, falling back to the locale-independent version if necessary.
toEngineeringString() - method in class java.math.BigDecimal
Returns the String representation of this BigDecimal, using engineering notation if necessary.
toExternalForm() - method in class java.net.URL
Returns a String representing this URL.
This method converts a URL object into a String.
toFront() - method in class javax.swing.JInternalFrame
This method causes the JInternalFrame to be brought to front in the z-order.
toFront() - method in class java.awt.Window
Brings this window to the front so that it displays in front of any other windows.
toFront() - method in class java.awt.peer.WindowPeer
toGenericString() - method in class java.lang.reflect.Constructor<T>
toGenericString() - method in class java.lang.reflect.Field
toGenericString() - method in class java.lang.reflect.Method
TOGGLE_BUTTON - static field in class javax.accessibility.AccessibleRole
A specialized button which can be on or off, with no separate indicator.
TOGGLE_BUTTON - static field in class javax.swing.plaf.synth.Region
Specifies the region of a toggle button.
TOGGLE_CLICK_COUNT_PROPERTY - static field in class javax.swing.JTree
TOGGLE_EXPAND - static field in class javax.accessibility.AccessibleAction
The name of an action which toggles the expansion of a tree node.
A border for toggle buttons in the Basic look and feel.
A border used for the JToggleButton component.
ToggleButtonBorder() - constructor for class javax.swing.plaf.metal.MetalBorders.ToggleButtonBorder
Creates a new border instance.
Constructs a new border for drawing a JToggleButton in the Basic look and feel.
The model handles the storage and maintenance of the state of the toggle button.
toggleClickCount - field in class javax.swing.JTree
toggleExpandState(javax.swing.tree.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
Displays combo box popup if the popup is not currently shown on the screen and hides it if it is currently shown
togglePopup() - method in class javax.swing.plaf.basic.BasicComboPopup
This method displays combo box popup if the popup is not currently shown on the screen and hides it if it is currently visible
toGMTString() - method in class java.util.Date
Returns a string representation of this Date object using GMT rather than the local timezone.
toGregorianCalendar() - method in class javax.xml.datatype.XMLGregorianCalendar
toHexString(double) - static method in class java.lang.Double
Convert a double value to a hexadecimal string.
toHexString(float) - static method in class java.lang.Float
Convert a float value to a hexadecimal string.
toHexString(int) - static method in class java.lang.Integer
Converts the int to a String assuming it is unsigned in base 16.
toHexString(long) - static method in class java.lang.Long
Converts the long to a String assuming it is unsigned in base 16.
toIndex - field in class javax.swing.event.TableColumnModelEvent
toIndex
TOLEFT_TOBOTTOM - static field in class javax.print.attribute.standard.PresentationDirection
The single pages are arranged on the media in rows starting at the top right towards the left bottom.
TOLEFT_TOTOP - static field in class javax.print.attribute.standard.PresentationDirection
The single pages are arranged on the media in rows starting at the bottom right towards the left top.
toLocaleString() - method in class java.util.Date
Returns a locale-dependent string representation of this Date object.
toLocalizedPattern() - method in class java.text.DecimalFormat
This method returns a string with the formatting pattern being used by this object.
toLocalizedPattern() - method in class java.text.SimpleDateFormat
This method returns a string with the formatting pattern being used by this object.
toLowerCase() - method in class java.lang.String
Lowercases this String.
toLowerCase(char) - static method in class java.lang.Character
Converts a Unicode character into its lowercase equivalent mapping.
toLowerCase(int) - static method in class java.lang.Character
Converts a Unicode character into its lowercase equivalent mapping.
toLowerCase(java.util.Locale) - method in class java.lang.String
Lowercases this String according to a particular locale.
TONER_EMPTY - static field in class javax.print.attribute.standard.PrinterStateReason
The printer device is out of toner.
TONER_LOW - static field in class javax.print.attribute.standard.PrinterStateReason
The printer device is low on toner.
toOctalString(int) - static method in class java.lang.Integer
Converts the int to a String assuming it is unsigned in base 8.
toOctalString(long) - static method in class java.lang.Long
Converts the long to a String assuming it is unsigned in base 8.
TOOL_BAR - static field in class javax.accessibility.AccessibleRole
A bar or pallete with buttons for common actions in an application.
TOOL_BAR - static field in class javax.swing.plaf.synth.Region
Specifies the region of a tool bar.
TOOL_BAR_CONTENT - static field in class javax.swing.plaf.synth.Region
Specifies the content region of a tool bar.
TOOL_BAR_DRAG_WINDOW - static field in class javax.swing.plaf.synth.Region
Specifies the drag window region of a tool bar.
TOOL_BAR_SEPARATOR - static field in class javax.swing.plaf.synth.Region
Specifies the region of a separator of a tool bar.
TOOL_TIP - static field in class javax.accessibility.AccessibleRole
An object which provides information about another object.
TOOL_TIP - static field in class javax.swing.plaf.synth.Region
Specifies the region of a tool tip.
TOOL_TIP_TEXT_KEY - static field in class javax.swing.JComponent
toolBar - field in class javax.swing.plaf.basic.BasicToolBarUI
The JToolBar this UI delegate is responsible for.
toolBar - field in class javax.swing.plaf.basic.BasicToolBarUI.DockingListener
The JToolBar being dragged.
A border used for the JToolBar component.
ToolBarBorder() - constructor for class javax.swing.plaf.metal.MetalBorders.ToolBarBorder
Creates a new border instance.
This helper class listens for components added to and removed from the JToolBar.
DOCUMENT ME!
ToolBarFocusListener() - constructor for class javax.swing.plaf.basic.BasicToolBarUI.ToolBarFocusListener
Creates a new ToolBarFocusListener object.
ToolBarUI - class javax.swing.plaf.ToolBarUI
An abstract base class for delegates that implement the pluggable look and feel for a JToolBar.
ToolBarUI() - constructor for class javax.swing.plaf.ToolBarUI
Constructs a new ToolBarUI.
Toolkit - class java.awt.Toolkit
The AWT system uses a set of native peer objects to implement its widgets.
Toolkit() - constructor for class java.awt.Toolkit
Default constructor for subclasses.
ToolTipManager - class javax.swing.ToolTipManager
This class is responsible for the registration of JToolTips to Components and for displaying them when appropriate.
ToolTipUI - class javax.swing.plaf.ToolTipUI
An abstract base class for delegates that implement the pluggable look and feel for a JToolTip.
ToolTipUI() - constructor for class javax.swing.plaf.ToolTipUI
Constructs a new ToolTipUI.
This exception is part of the java event model.
TooManyListenersException() - constructor for class java.util.TooManyListenersException
Constructs a TooManyListenersException with no detail message.
Constructs a TooManyListenersException with a detail message.
top - field in class javax.swing.border.EmptyBorder
The number of pixels required at the top edge.
top - field in class java.awt.Insets
The gap from the top.
TOP - static field in class javax.swing.JSplitPane
The constraints string used to add components to the top.
TOP - static field in class javax.print.attribute.standard.MediaTray
Top tray
TOP - static field in class javax.swing.SwingConstants
TOP - static field in class javax.swing.border.TitledBorder
A value for the titlePosition property that vertically positions the title text at the middle of the top line of the border.
TOP_ALIGNMENT - static field in class java.awt.Component
Constant returned by the getAlignmentY method to indicate that the component wishes to be aligned to the top relative to other components.
TOP_ALIGNMENT - static field in class java.awt.font.GraphicAttribute
toPattern() - method in class java.text.ChoiceFormat
This method returns the range terminator list and format string list as a String suitable for using with the applyPattern method.
toPattern() - method in class java.text.DecimalFormat
This method returns a string with the formatting pattern being used by this object.
toPattern() - method in class java.text.MessageFormat
Returns the pattern.
toPattern() - method in class java.text.SimpleDateFormat
This method returns a string with the formatting pattern being used by this object.
TOPDOWNLEFTRIGHT - static field in class java.awt.image.ImageConsumer
The pixel order is top-down, left-right.
toPlainString() - method in class java.math.BigDecimal
Returns a String representation of this BigDecimal without using scientific notation.
toRadians(double) - static method in class java.lang.Math
Convert from degrees to radians.
toRadians(double) - static method in class java.lang.StrictMath
Convert from degrees to radians.
toRGB(float[]) - method in class java.awt.color.ColorSpace
Transforms a color value assumed to be in this ColorSpace into a value in the default CS_sRGB color space.
toRGB(float[]) - method in class java.awt.color.ICC_ColorSpace
Transforms a color value assumed to be in this ColorSpace into a value in the default CS_sRGB color space.
TORIGHT_TOBOTTOM - static field in class javax.print.attribute.standard.PresentationDirection
The single pages are arranged on the media in rows starting at the top left towards the right bottom.
TORIGHT_TOTOP - static field in class javax.print.attribute.standard.PresentationDirection
The single pages are arranged on the media in rows starting at the bottom left towards the right top.
toString() - method in class java.util.AbstractCollection<E>
Creates a String representation of the Collection.
toString() - method in class javax.swing.text.AbstractDocument.BranchElement
Returns a string representation of this element.
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
Returns a string representation of this Element.
toString() - method in class java.util.AbstractMap<K,V>
Returns a String representation of this map.
toString() - method in class java.util.AbstractMap.SimpleEntry<K,V>
This provides a string representation of the entry.
toString() - method in class java.util.prefs.AbstractPreferences
Returns the String given by (isUserNode() ?
toString() - method in class javax.swing.undo.AbstractUndoableEdit
toString() - method in class javax.accessibility.AccessibleBundle
Obtains the key as a localized string, using the default locale.
toString() - method in class javax.accessibility.AccessibleRelationSet
Return a localized, comma-separated string representing all relations in the set.
toString() - method in class javax.accessibility.AccessibleStateSet
Return a localized, comma-separated string representing all states in the set.
toString() - method in class java.security.acl.Acl
This method returns the ACL as a String
toString() - method in class java.security.acl.AclEntry
This method returns this object as a String.
toString() - method in class java.rmi.activation.ActivationGroupID
Get the string representation
toString() - method in class java.rmi.activation.ActivationID
Return the content based string representation.
toString() - method in class java.awt.geom.AffineTransform
Returns a string representation of the transform, in the format: "AffineTransform[[" + m00 + ", " + m01 + ", " + m02 + "], [" + m10 + ", " + m11 + ", " + m12 + "]]".
toString() - method in class java.security.AlgorithmParameters
Returns a string representation of the encoded form.
toString() - method in class java.lang.annotation.Annotation
Returns a textual representation of the annotation.
toString() - method in class java.text.Annotation
This method returns a String representation of this object.
toString() - method in class javax.security.auth.login.AppConfigurationEntry
toString() - method in class javax.security.auth.login.AppConfigurationEntry.LoginModuleControlFlag
toString() - method in class javax.management.openmbean.ArrayType<T>
Returns a textual representation of this instance.
Returns a String representation of this object.
toString() - method in class javax.swing.text.html.parser.AttributeList
Returns the attribute name.
toString() - method in class javax.naming.directory.AttributeModificationException
Get a human-readable representation of this Throwable.
toString() - method in class java.util.jar.Attributes.Name
Returns the string representation of this Name as given to the constructor (not neccesarily the lower case representation).
toString() - method in class javax.management.AttributeValueExp
Returns the attribute name, quoted.
toString() - method in class javax.sound.sampled.AudioFileFormat
Return a description of this AudioFileFormat.
toString() - method in class javax.sound.sampled.AudioFileFormat.Type
Return the name of this Type.
toString() - method in class javax.sound.sampled.AudioFormat
Return a description of this format.
toString() - method in class javax.sound.sampled.AudioFormat.Encoding
Return the name of this encoding.
toString() - method in class java.awt.AWTEvent
Create a string that represents this event in the format classname[eventstring] on sourcecomponentname.
toString() - method in class java.awt.AWTKeyStroke
Returns a string representation of this keystroke.
toString() - method in class javax.management.BadAttributeValueExpException
Returns a textual representation of this instance.
toString() - method in class javax.management.BadBinaryOpValueExpException
Returns a textual representation of this instance.
toString() - method in class javax.management.BadStringOperationException
Returns a textual representation of this instance.
toString() - method in class java.awt.image.BandedSampleModel
Creates a String with some information about this SampleModel.
toString() - method in class javax.naming.directory.BasicAttribute
Convert this Object to a human-readable String.
toString() - method in class javax.naming.directory.BasicAttributes
toString() - method in class java.text.Bidi
Return a String describing the internal state of this object.
toString() - method in class java.math.BigDecimal
Returns the String representation of this BigDecimal, using scientific notation if necessary.
toString() - method in class java.math.BigInteger
toString() - method in class javax.naming.BinaryRefAddr
Returns a String representation of the RefAddr.
toString() - method in class javax.naming.Binding
Returns the string representation.
toString() - method in class java.util.BitSet
Returns the string representation of this bit set.
toString() - method in class java.lang.Boolean
Returns "true" if the value of this object is true and returns "false" if the value of this object is false.
toString() - method in class javax.sound.sampled.BooleanControl
Return a string describing this control.
toString() - method in class java.awt.BorderLayout
Returns a string representation of this layout manager.
toString() - method in class java.awt.image.BufferedImage
Convert this Object to a human-readable String.
toString() - method in class java.lang.Byte
Converts the Byte value to a String and assumes a radix of 10.
toString() - method in class java.io.ByteArrayOutputStream
Returns the bytes in the internal array as a String.
toString() - method in class java.nio.ByteBuffer
Returns a string summarizing the state of this buffer.
toString() - method in class java.nio.ByteOrder
Returns a string representation of the byte order.
toString() - method in class java.util.Calendar
Returns a string representation of this object.
toString() - method in class java.awt.CardLayout
Returns a string representation of this layout manager.
toString() - method in class java.security.cert.Certificate
Returns a string representing the Certificate.
toString() - method in class javax.security.cert.Certificate
Returns a printable representation of this certificate.
toString() - method in class java.security.cert.CertPath
toString() - method in class java.security.cert.CertPathBuilderException
Convert this to a string, including its cause.
toString() - method in class java.security.cert.CertPathValidatorException
Convert this to a string, including its cause.
toString() - method in class java.security.cert.CertStoreException
Convert this to a string, including its cause.
toString() - method in class java.lang.Character
Converts the wrapped character into a String.
toString() - method in class java.lang.Character.Subset
Returns the name of the subset.
toString() - method in class java.io.CharArrayWriter
Returns the chars in the internal array as a String.
toString() - method in class java.nio.CharBuffer
Returns the remaining content of the buffer as a string.
toString() - method in class java.lang.CharSequence
Returns the complete CharSequence as a String.
toString() - method in class java.nio.charset.Charset
Convert this Object to a human-readable String.
toString() - method in class java.awt.CheckboxGroup
Returns a string representation of this checkbox group.
toString() - method in class java.lang.Class<T>
Return the human-readable form of this Object.
toString() - method in class java.nio.charset.CoderResult
toString() - method in class java.security.CodeSource
This method returns a String that represents this object.
toString() - method in class java.nio.charset.CodingErrorAction
Returns the name of the CodingErrorAction.
toString() - method in class java.security.cert.CollectionCertStoreParameters
Return a string representation of these parameters.
toString() - method in class java.awt.Color
Returns a string representation of this object.
toString() - method in class java.awt.image.ColorModel
toString() - method in class javax.swing.plaf.synth.ColorType
Returns the textual description of the color type.
toString() - method in class org.omg.CORBA.CompletionStatus
Returns a short string representation.
toString() - method in class java.awt.Component
Returns a string representation of this component.
toString() - method in class javax.management.openmbean.CompositeData
Returns a textual representation of this instance.
toString() - method in class javax.management.openmbean.CompositeDataSupport
Returns a textual representation of this instance.
toString() - method in class javax.naming.CompositeName
toString() - method in class javax.management.openmbean.CompositeType
Returns a textual representation of this instance.
toString() - method in class javax.sound.sampled.CompoundControl
Return a string description of this compound control.
toString() - method in class javax.swing.undo.CompoundEdit
Calculates a string that may be useful for debugging.
toString() - method in class javax.naming.CompoundName
toString() - method in class java.lang.reflect.Constructor<T>
Get a String representation of the Constructor.
toString() - method in class javax.swing.text.html.parser.ContentModel
Returns a string representation (an expression) of this content model.
toString() - method in class javax.sound.sampled.Control
Return a String descrsibing this control.
toString() - method in class javax.sound.sampled.Control.Type
Return the name of this Type.
toString() - method in class java.security.cert.CRL
Returns a string representing the CRL.
toString() - method in class javax.swing.text.html.CSS.Attribute
Returns the string representation of this attribute as specified in the CSS specification.
toString() - method in class java.util.Currency
Returns the international ISO4217 currency code of this currency.
toString() - method in class java.awt.Cursor
toString() - method in class java.awt.datatransfer.DataFlavor
Returns a string representation of this DataFlavor.
toString() - method in class javax.sound.sampled.DataLine.Info
Return a description of this Info object.
toString() - method in class javax.xml.datatype.DatatypeConstants.Field
Convert this Object to a human-readable String.
toString() - method in class java.sql.Date
This method returns this date in JDBC format.
toString() - method in class java.util.Date
Returns a string representation of this date using the following date format:

day mon dd hh:mm:ss zz yyyy

where the fields used here are:

  • day -- the day of the week (Sunday through to Saturday).
toString() - method in class javax.print.attribute.DateTimeSyntax
Returns the string representation for this object.
toString() - method in class javax.swing.DefaultBoundedRangeModel
Returns a string with all relevant properties of this range model.
toString() - method in class javax.swing.DefaultListModel
Convert the list to a string representation.
toString() - method in class javax.swing.tree.DefaultMutableTreeNode
Returns a string representation of the node.
toString() - method in class javax.swing.text.DefaultStyledDocument.ElementSpec
Returns a String representation of this ElementSpec describing the type, direction and length of this ElementSpec.
toString() - method in class javax.swing.tree.DefaultTreeSelectionModel
Returns a string that shows this object's properties.
toString() - method in class java.security.DigestInputStream
Converts the input stream and underlying message digest to a string.
toString() - method in class java.security.DigestOutputStream
Converts the output stream and underlying message digest to a string.
toString() - method in class java.awt.Dimension
Returns a string representation of this object.
toString() - method in class java.awt.image.DirectColorModel
toString() - method in class javax.print.DocFlavor
Returns a string representation of this doc flavor object.
toString() - method in class javax.swing.event.DocumentEvent.EventType
toString
toString() - method in class java.lang.Double
Convert the double value of this Double to a String.
toString() - method in class javax.swing.text.html.parser.DTD
Returns the name of this instance of DTD.
toString() - method in class javax.xml.datatype.Duration
Returns the lexical representation of this duration.
toString() - method in class javax.swing.text.html.parser.Element
Returns the name of this element.
toString() - method in class java.lang.Enum<T,extends,Enum,T>
Returns a textual representation of this enumeration constant.
toString() - method in class javax.sound.sampled.EnumControl
Return a string describing this control.
toString() - method in class javax.print.attribute.EnumSyntax
Returns the string representation for this object.
toString() - method in class java.awt.Event
toString() - method in class javax.swing.event.EventListenerList
Returns a string representation of this object that may be useful for debugging purposes.
toString() - method in class java.util.EventObject
Converts the event to a String.
toString() - method in class java.beans.Expression
Return a string representation of this expression.
toString() - method in class java.lang.reflect.Field
Get a String representation of the Field.
toString() - method in class java.text.FieldPosition
This method returns a String representation of this object.
toString() - method in class java.io.File
This method returns a String that is the path name of the file as returned by getPath.
toString() - method in class java.nio.channels.FileChannel.MapMode
Returns a string representation of the MapMode object.
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.lang.Float
Convert the float value of this Float to a String.
toString() - method in class javax.sound.sampled.FloatControl
Return a string describing this control.
toString() - method in class java.awt.FlowLayout
Return String description of this object.
toString() - method in class java.awt.Font
Returns a string representation of this font.
toString() - method in class java.awt.FontMetrics
Returns a string representation of this object.
toString() - method in class java.util.Formatter
Returns the result of applying Object.toString() to the underlying output stream.
toString() - method in class java.awt.Graphics
Returns a string representation of this object.
toString() - method in class java.awt.GridBagLayout
Return a string representation of this GridBagLayout.
toString() - method in class java.awt.GridLayout
Return String description of this object.
toString() - method in class org.ietf.jgss.GSSException
Returns a textual representation of both the major and minor status codes.
toString() - method in class org.ietf.jgss.GSSName
Returns a textual representation of the GSSName object.
toString() - method in class java.util.Hashtable<K,V>
Converts this Hashtable to a String, surrounded by braces, and with key/value pairs listed with an equals sign between, separated by a comma and space.
toString() - method in class javax.swing.text.html.HTML.Attribute
Returns the attribute name.
toString() - method in class javax.swing.text.html.HTML.Tag
Returns the tag name.
toString() - method in class javax.swing.event.HyperlinkEvent.EventType
Returns a String of this object.
toString() - method in class org.omg.PortableServer.IdAssignmentPolicyValue
Returns a short string representation.
toString() - method in class java.security.Identity
Returns a string representation of this Identity.
toString() - method in class java.security.IdentityScope
Returns a string representing this instance.
toString() - method in class org.omg.PortableServer.IdUniquenessPolicyValue
Returns a short string representation.
toString() - method in class org.omg.PortableServer.ImplicitActivationPolicyValue
Returns a short string representation.
toString() - method in class java.net.InetAddress
Converts this address to a String.
toString() - method in class java.net.InetSocketAddress
Returns the InetSocketAddress as string
toString() - method in class java.awt.Insets
Returns a string representation of this object, which will be non-null.
toString() - method in class java.lang.Integer
Converts the Integer value to a String and assumes a radix of 10.
toString() - method in class javax.print.attribute.IntegerSyntax
Returns the string representation for this object.
toString() - method in class javax.management.InvalidApplicationException
Returns a textual representation of this instance.
toString() - method in class java.awt.JobAttributes
toString() - method in class javax.imageio.plugins.jpeg.JPEGHuffmanTable
Create a string representation of this JPEG Huffman table.
toString() - method in class javax.imageio.plugins.jpeg.JPEGQTable
Create a string representing this JPEG quantization table.
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 java.security.cert.LDAPCertStoreParameters
Return a string representation of these parameters.
toString() - method in class java.rmi.dgc.Lease
Get the string representation of this lease
toString() - method in class java.util.logging.Level
Returns the name of the Level without localizing it, for example "WARNING".
toString() - method in class org.omg.PortableServer.LifespanPolicyValue
Returns a short string representation.
toString() - method in class javax.sound.sampled.Line.Info
Return a description of this Info object.
toString() - method in class javax.sound.sampled.LineEvent
Return a description of this event.
toString() - method in class javax.sound.sampled.LineEvent.Type
Return the name of this Type.
toString() - method in class javax.naming.LinkException
toString() - method in class javax.swing.event.ListDataEvent
Returns a string representing the state of this event.
toString() - method in class javax.swing.event.ListSelectionEvent
Returns a string representation of the event, typically used for debugging purposes.
toString() - method in class java.util.Locale
Gets the string representation of the current locale.
toString() - method in class java.lang.management.LockInfo
Returns a textual representation of the lock, constructed by concatenating the class name, '@' and the identity hash code in unsigned hexadecimal form.
toString() - method in class java.rmi.server.LogStream
toString() - method in class java.lang.Long
Converts the Long value to a String and assumes a radix of 10.
toString() - method in class javax.swing.LookAndFeel
Returns a string that displays and identifies this object's properties.
toString() - method in class java.util.regex.Matcher
toString() - method in class java.math.MathContext
Returns "precision=p roundingMode=MODE" where p is an int giving the precision and MODE is UP, DOWN, HALF_UP, HALF_DOWN, HALF_EVEN, CEILING, FLOOR, or UNNECESSARY corresponding to rounding modes.
toString() - method in class javax.management.MBeanAttributeInfo
Returns a textual representation of this instance.
toString() - method in class javax.management.MBeanConstructorInfo
Returns a textual representation of this instance.
toString() - method in class javax.management.MBeanFeatureInfo
Returns a textual representation of this instance.
toString() - method in class javax.management.MBeanInfo
Returns a textual representation of this instance.
toString() - method in class javax.management.MBeanNotificationInfo
Returns a textual representation of this instance.
toString() - method in class javax.management.MBeanOperationInfo
Returns a textual representation of this instance.
toString() - method in class javax.management.MBeanParameterInfo
Returns a textual representation of this instance.
toString() - method in class javax.print.attribute.standard.MediaPrintableArea
Returns the string representation for this object in units of millimeters..
toString() - method in class java.lang.management.MemoryUsage
Returns a String representation of this MemoryUsage object.
toString() - method in class java.awt.MenuComponent
Returns a string representation of this component.
toString() - method in class java.awt.MenuShortcut
Returns a string representation of this shortcut.
toString() - method in class java.security.MessageDigest
Returns a string representation of this instance.
toString() - method in class java.lang.reflect.Method
Get a String representation of the Method.
toString() - method in class javax.sound.midi.MidiDevice.Info
Simple return the name of the device.
toString() - method in class javax.sound.sampled.Mixer.Info
toString() - method in class javax.naming.directory.ModificationItem
toString() - method in class java.awt.image.MultiPixelPackedSampleModel
Creates a String with some information about this SampleModel.
toString() - method in class javax.naming.NameClassPair
Returns the string representation.
toString() - method in class org.omg.CosNaming.NameComponent
Get a string representation (id.kind).
toString() - method in class javax.naming.NamingException
Returns a string representation of this exception.
toString() - method in class java.net.NetworkInterface
Returns a string representation of the interface
toString() - method in class javax.management.Notification
A textual representation of the notification.
toString() - method in class java.awt.font.NumericShaper
toString() - method in class java.lang.Object
Convert this Object to a human-readable String.
toString() - method in class org.omg.CORBA.portable.ObjectImpl
Return the string representation of the passed object.
toString() - method in class javax.management.ObjectName
Returns a textual representation of the object name.
toString() - method in class java.io.ObjectStreamClass
Returns a textual representation of this ObjectStreamClass object including the name of the class it represents as well as that class's serial version stream-unique identifier.
toString() - method in class java.io.ObjectStreamField
Returns a string representing this object.
toString() - method in class java.rmi.server.ObjID
Get the string representation.
toString() - method in class org.ietf.jgss.Oid
Returns a string representation of the oid's integer components in dot separated notation (e.g.
toString() - method in class javax.management.openmbean.OpenMBeanAttributeInfo
Returns a textual representation of this instance.
toString() - method in class javax.management.openmbean.OpenMBeanAttributeInfoSupport
Returns a textual representation of this instance.
toString() - method in class javax.management.openmbean.OpenMBeanConstructorInfo
Returns a textual representation of this instance.
toString() - method in class javax.management.openmbean.OpenMBeanConstructorInfoSupport
Returns a textual representation of this instance.
toString() - method in class javax.management.openmbean.OpenMBeanInfo
Returns a textual representation of this instance.
toString() - method in class javax.management.openmbean.OpenMBeanInfoSupport
Returns a textual representation of this instance.
toString() - method in class javax.management.openmbean.OpenMBeanOperationInfo
Returns a textual representation of this instance.
toString() - method in class javax.management.openmbean.OpenMBeanOperationInfoSupport
Returns a textual representation of this instance.
toString() - method in class javax.management.openmbean.OpenMBeanParameterInfo
Returns a textual representation of this instance.
toString() - method in class javax.management.openmbean.OpenMBeanParameterInfoSupport
Returns a textual representation of this instance.
toString() - method in class javax.management.openmbean.OpenType<T>
Returns a textual representation of this type.
toString() - method in class java.rmi.server.Operation
Return the name of the operation.
toString() - method in class javax.swing.text.html.Option
Returns a string representation of this <option> tag.
toString() - method in class java.lang.Package
Returns a string representation of this package.
toString() - method in class java.awt.PageAttributes
toString() - method in class java.text.ParsePosition
This method returns a String representation of this object.
toString() - method in class java.util.regex.Pattern
Return the regular expression used to construct this object.
toString() - method in class java.security.Permission
This method returns a String representation of this Permission object.
toString() - method in class java.security.acl.Permission
This method returns this Permission as a String.
toString() - method in class java.security.PermissionCollection
This method returns a String representation of this collection.
toString() - method in class java.security.cert.PKIXBuilderParameters
Returns a printable representation of these parameters.
toString() - method in class java.security.cert.PKIXCertPathBuilderResult
Returns a printable string representation of this result.
toString() - method in class java.security.cert.PKIXCertPathValidatorResult
Returns a printable string representation of this result.
toString() - method in class java.security.cert.PKIXParameters
Returns a printable representation of these parameters.
toString() - method in class java.awt.Point
Returns a string representation of this object.
toString() - method in class java.awt.geom.Point2D.Double
Returns a string representation of this object.
toString() - method in class java.awt.geom.Point2D.Float
Returns a string representation of this object.
toString() - method in class java.security.cert.PolicyQualifierInfo
Returns a printable string representation of this object.
toString() - method in class javax.sound.sampled.Port.Info
Return a description of this Info object.
toString() - method in class javax.swing.text.Position.Bias
toString() - method in class java.util.prefs.Preferences
Returns the String given by (isUserNode() ?
toString() - method in class java.security.Principal
This method returns a String representation of this Principal.
toString() - method in class javax.print.event.PrintEvent
Returns a string representation of this object.
toString() - method in class java.security.PrivilegedActionException
Convert this to a String.
toString() - method in class java.security.ProtectionDomain
Returns a string representation of this object.
toString() - method in class java.security.Provider
This method returns a String representation of this object.
toString() - method in class java.net.Proxy
Returns a string representation of this Proxy object.
toString() - method in class javax.xml.namespace.QName
toString() - method in class org.w3c.dom.ranges.Range
Returns the contents of a Range as a string.
toString() - method in class java.awt.image.Raster
Create a String representing the state of this Raster.
toString() - method in class java.awt.Rectangle
Returns a string representation of this rectangle.
toString() - method in class java.awt.geom.Rectangle2D.Double
Returns a string representation of this rectangle.
toString() - method in class java.awt.geom.Rectangle2D.Float
Returns a string representation of this rectangle.
toString() - method in class javax.naming.RefAddr
Returns a String representation of the RefAddr.
toString() - method in class javax.naming.Reference
Return the string representation.
toString() - method in class javax.swing.plaf.synth.Region
Returns the name of the region.
toString() - method in class java.rmi.server.RemoteObject
Get the string representation of this remote object.
toString() - method in class java.awt.RenderingHints
Returns a string representation of this instance.
toString() - method in class javax.swing.RepaintManager
Convert this Object to a human-readable String.
toString() - method in class org.omg.PortableServer.RequestProcessingPolicyValue
Returns a short string representation.
toString() - method in class javax.print.attribute.ResolutionSyntax
Returns the string representation for this object.
toString() - method in class javax.sound.sampled.ReverbType
Return a description of this ReverbType.
toString() - method in class java.awt.Robot
Return a string representation of this Robot.
toString() - method in class javax.security.sasl.SaslException
Returns the string representation of this exception.
toString() - method in class org.xml.sax.SAXException
Override toString to pick up any embedded exception.
toString() - method in class java.awt.ScrollPaneAdjustable
toString() - method in class javax.naming.directory.SearchResult
Returns the string representation.
toString() - method in class javax.swing.text.Segment
Returns a String containing the same characters as this Segment.
toString() - method in class javax.sound.midi.Sequencer.SyncMode
Use the SyncMode name as the string representation.
toString() - method in class org.omg.PortableServer.ServantRetentionPolicyValue
Returns a short string representation.
toString() - method in class java.net.ServerSocket
Returns the value of this socket as a String.
toString() - method in class java.util.ServiceLoader<S>
Returns a textual representation of this ServiceLoader.
toString() - method in class javax.print.attribute.SetOfIntegerSyntax
Returns the string representation for this object.
toString() - method in class org.omg.CORBA.SetOverrideType
Returns a short string representation.
toString() - method in class java.lang.Short
Converts the Short value to a String and assumes a radix of 10.
toString() - method in class java.security.Signature
Returns a rstring representation of this instance.
toString() - method in class java.security.Signer
toString() - method in class javax.swing.text.SimpleAttributeSet
Returns a string representation of this instance, typically used for debugging purposes.
toString() - method in class java.text.SimpleDateFormat
Returns a string representation of this class.
toString() - method in class java.util.SimpleTimeZone
Returns a string representation of this SimpleTimeZone object.
toString() - method in class javax.management.openmbean.SimpleType<T>
Returns a textual representation of this instance.
toString() - method in class java.awt.image.SinglePixelPackedSampleModel
Creates a String with some information about this SampleModel.
toString() - method in class javax.print.attribute.Size2DSyntax
Returns the string representation for this object.
toString() - method in class javax.swing.SizeRequirements
Returns a String representation of this SizeRequirements object, containing information about the minimum, preferred, maximum and alignment value.
toString() - method in class java.net.Socket
Converts this Socket to a String.
toString() - method in class java.net.SocketImpl
Returns a String representing the remote host and port of this socket.
toString() - method in class javax.net.ssl.SSLEngineResult
Convert this Object to a human-readable String.
toString() - method in class java.lang.StackTraceElement
Returns a string representation of this stack trace element.
toString() - method in class org.omg.PortableServer.POAManagerPackage.State
Returns a short string representation.
toString() - method in class java.beans.Statement
Returns a string representation of this Statement.
toString() - method in class java.io.StreamTokenizer
This method returns the current token value as a String in the form "Token[x], line n", where 'n' is the current line numbers and 'x' is determined as follows.
toString() - method in class java.lang.String
Returns this, as it is already a String!
toString() - method in class java.lang.StringBuffer
Convert this StringBuffer to a String.
toString() - method in class java.lang.StringBuilder
Convert this StringBuilder to a String.
toString() - method in class javax.management.StringValueExp
Returns the value in quotes.
toString() - method in class java.io.StringWriter
This method returns the contents of the internal StringBuffer as a String.
toString() - method in class javax.rmi.CORBA.Stub
Get the string representation of this Stub.
toString() - method in class javax.swing.text.StyleConstants
Returns a string representation of the attribute key.
toString() - method in class javax.swing.text.StyleContext
Returns a string representation of this StyleContext.
toString() - method in class javax.swing.text.StyleContext.NamedStyle
toString() - method in class javax.swing.text.StyleContext.SmallAttributeSet
toString() - method in class javax.security.auth.Subject
toString() - method in class java.awt.SystemColor
Returns a string describing this color.
toString() - method in class javax.swing.text.TabSet
Returns a string representation of this TabSet.
toString() - method in class javax.swing.text.TabStop
Returns a string describing this TabStop.
toString() - method in class javax.management.openmbean.TabularData
Returns a textual representation of this instance.
toString() - method in class javax.management.openmbean.TabularDataSupport
Returns a textual representation of this instance.
toString() - method in class javax.management.openmbean.TabularType
Returns a textual representation of this instance.
toString() - method in class javax.swing.text.html.parser.TagElement
Returns string representation of this object.
toString() - method in class java.awt.font.TextHitInfo
toString() - method in class java.awt.font.TextLayout
toString() - method in class javax.print.attribute.TextSyntax
Returns a string representing the object.
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
Return a human-readable String representing this ThreadGroup.
toString() - method in class java.lang.management.ThreadInfo
Returns a String representation of this ThreadInfo object.
toString() - method in class org.omg.PortableServer.ThreadPolicyValue
Returns a short string representation.
toString() - method in class java.lang.Throwable
Get a human-readable representation of this Throwable.
toString() - method in class java.sql.Time
This method returns this date in JDBC format.
toString() - method in class java.sql.Timestamp
This method returns this date in JDBC format.
toString() - method in class javax.swing.event.TreeModelEvent
String representation
toString() - method in class javax.swing.tree.TreePath
Returns a string representation of this path.
toString() - method in class java.security.cert.TrustAnchor
Return a printable representation of this trust anchor.
toString() - method in class java.rmi.server.UID
Get the string representation of this UID.
toString() - method in class javax.swing.UIManager.LookAndFeelInfo
Returns a String representation of the LookAndFeelInfo object.
toString() - method in class javax.swing.undo.UndoableEditSupport
Returns a string representation of this object that may be useful for debugging.
toString() - method in class javax.swing.undo.UndoManager
Returns a string representation for this UndoManager.
toString() - method in class java.security.UnresolvedPermission
This method returns a String representation of this class.
toString() - method in class java.net.URI
Returns the URI as a String.
toString() - method in class javax.print.attribute.URISyntax
Returns the string representation for this object.
toString() - method in class java.net.URL
Returns a String representing this URL.
toString() - method in class java.net.URLClassLoader
Returns a String representation of this URLClassLoader giving the actual Class name, the URLs that are searched and the parent ClassLoader.
toString() - method in class java.net.URLConnection
The methods prints the value of this object as a String by calling the toString() method of its associated URL.
toString() - method in class java.util.UUID
Returns a String representation of the UUID.
toString() - method in class java.util.Vector<T>
Returns a string representation of this Vector in the form "[element0, element1, ... elementN]".
toString() - method in class java.rmi.dgc.VMID
Get the string representation of this VMID.
toString() - method in class javax.security.auth.x500.X500Principal
This method returns a String representation of this Principal.
toString() - method in class java.security.cert.X509CertSelector
toString() - method in class java.security.cert.X509CRLEntry
Returns a string that represents this X509CRLEntry.
toString() - method in class java.security.cert.X509CRLSelector
Returns a string representation of this selector.
toString() - method in class javax.xml.datatype.XMLGregorianCalendar
toString() - method in class java.util.zip.ZipEntry
Gets the string representation of this ZipEntry.
toString(boolean) - static method in class java.lang.Boolean
Returns "true" if the value of the give boolean is true and returns "false" if the value of the given boolean is false.
toString(boolean) - method in class java.security.Certificate
This method returns a String representation of the contents of this certificate.
toString(boolean) - method in class java.security.Identity
Returns a detailed string representation of this Identity.
toString(boolean) - method in class javax.naming.LinkException
toString(boolean) - method in class javax.naming.NamingException
Returns a String representation of this exception and possibly including the part object that could be resolved if the given flag is set to true.
toString(boolean[]) - static method in class java.util.Arrays
Returns a String representation of the argument array.
toString(byte) - static method in class java.lang.Byte
Converts the byte to a String and assumes a radix of 10.
toString(byte[]) - static method in class java.util.Arrays
Returns a String representation of the argument array.
toString(char) - static method in class java.lang.Character
Returns a String of length 1 representing the specified character.
toString(char[]) - static method in class java.util.Arrays
Returns a String representation of the argument array.
toString(double) - static method in class java.lang.Double
Convert the double to a String.
toString(double[]) - static method in class java.util.Arrays
Returns a String representation of the argument array.
toString(float) - static method in class java.lang.Float
Convert the float to a String.
toString(float[]) - static method in class java.util.Arrays
Returns a String representation of the argument array.
toString(int) - method in class java.math.BigInteger
toString(int) - method in class java.io.ByteArrayOutputStream
This method returns the bytes in the internal array as a String.
toString(int) - static method in class java.lang.Integer
Converts the int to a String and assumes a radix of 10.
toString(int) - static method in class java.lang.reflect.Modifier
Get a string representation of all the modifiers represented by the given int.
toString(int,int) - static method in class java.lang.Integer
Converts the int to a String using the specified radix (base).
toString(int,java.lang.String) - method in class javax.print.attribute.standard.MediaPrintableArea
Returns the string representation for this object in units of millimeters..
toString(int,java.lang.String) - method in class javax.print.attribute.ResolutionSyntax
Returns the string representation for this object.
toString(int,java.lang.String) - method in class javax.print.attribute.Size2DSyntax
Returns the string representation for this object.
toString(int[]) - static method in class java.util.Arrays
Returns a String representation of the argument array.
toString(java.lang.Object[]) - static method in class java.util.Arrays
Returns a String representation of the argument array.
Returns the bytes in the internal array as a String.
toString(javax.rmi.CORBA.Stub) - method in class javax.rmi.CORBA.StubDelegate
Get the string representation of this stub.
toString(long) - static method in class java.lang.Long
Converts the long to a String and assumes a radix of 10.
toString(long,int) - static method in class java.lang.Long
Converts the long to a String using the specified radix (base).
toString(long[]) - static method in class java.util.Arrays
Returns a String representation of the argument array.
toString(org.omg.CORBA.Object) - method in class org.omg.CORBA.portable.Delegate
Return a string representation of the passed object.
toString(short) - static method in class java.lang.Short
Converts the short to a String and assumes a radix of 10.
toString(short[]) - static method in class java.util.Arrays
Returns a String representation of the argument array.
toStub(java.rmi.Remote) - static method in class javax.rmi.PortableRemoteObject
Takes a server implementation object (name pattern *imp) and returns a stub object that can be used to access that server object (target), name (pattern _*_Stub).
toStub(java.rmi.Remote) - method in class javax.rmi.CORBA.PortableRemoteObjectDelegate
Takes a server implementation object and returns a stub object that can be used to access that server object (target).
toStub(java.rmi.Remote) - static method in class java.rmi.server.RemoteObject
totalChildIndent - field in class javax.swing.plaf.basic.BasicTreeUI
Total fistance that will be indented.
totalColumnWidth - field in class javax.swing.table.DefaultTableColumnModel
The total width of all the columns in this model.
totalMemory() - method in class java.lang.Runtime
Find out how much memory total is available on the heap for allocating Objects.
toTitleCase(char) - static method in class java.lang.Character
Converts a Unicode character into its titlecase equivalent mapping.
toTitleCase(int) - static method in class java.lang.Character
Converts a Unicode character into its titlecase equivalent mapping.
TOTOP_TOLEFT - static field in class javax.print.attribute.standard.PresentationDirection
The single pages are arranged on the media in columns starting at the bottom right towards the top left.
TOTOP_TORIGHT - static field in class javax.print.attribute.standard.PresentationDirection
The single pages are arranged on the media in columns starting at the bottom left towards the top right.
toUpperCase() - method in class java.lang.String
Uppercases this String.
toUpperCase(char) - static method in class java.lang.Character
Converts a Unicode character into its uppercase equivalent mapping.
toUpperCase(int) - static method in class java.lang.Character
Converts a Unicode character into its uppercase equivalent mapping.
toUpperCase(java.util.Locale) - method in class java.lang.String
Uppercases this String according to a particular locale.
toURI() - method in class java.io.File
toURI() - method in class java.net.URL
Returns the equivalent URI object for this URL.
toURL() - method in class java.io.File
This method returns a URL with the file: protocol that represents this file.
toURL() - method in class java.net.URI
Creates an URL from an URI
toViewCoordinates(java.awt.Dimension) - method in class javax.swing.JViewport
toViewCoordinates(java.awt.Point) - method in class javax.swing.JViewport
toXMLFormat() - method in class javax.xml.datatype.XMLGregorianCalendar
Returns the XML Schema lexical representation of this calendar.
TR - static field in class javax.swing.text.html.HTML.Tag
The <tr> tag , block tag.
traceInstructions(boolean) - method in class java.lang.Runtime
Tell the VM to trace every bytecode instruction that executes (print out a trace of it).
traceMethodCalls(boolean) - method in class java.lang.Runtime
Tell the VM to trace every method call that executes (print out a trace of it).
TRACK - static field in class java.awt.event.AdjustmentEvent
Adjustment type for tracking adjustments.
Track - class javax.sound.midi.Track
A Track contains a list of timecoded MIDI events for processing by a Sequencer.
trackBuffer - field in class javax.swing.plaf.basic.BasicSliderUI
The gap between the edges of the contentRect and trackRect.
trackColor - field in class javax.swing.plaf.basic.BasicScrollBarUI
The color of the track.
tracker - static field in class javax.swing.ImageIcon
The MediaTracker used to monitor the loading of images.
trackHighlight - field in class javax.swing.plaf.basic.BasicScrollBarUI
The current highlight status.
trackHighlightColor - field in class javax.swing.plaf.basic.BasicScrollBarUI
The color that is used when the mouse press occurs in the track.
Helper class that listens for movement on the track.
Helper class that listens for mouse events.
trackRect - field in class javax.swing.plaf.basic.BasicScrollBarUI
The size and position of the track.
trackRect - field in class javax.swing.plaf.basic.BasicSliderUI
Rectangle describing the track bounds.
tracks - field in class javax.sound.midi.Sequence
The MIDI tracks used by this sequence.
trackWidth - static field in class javax.swing.plaf.metal.MetalSliderUI
The track width.
TRADITIONAL_CHINESE - static field in class java.util.Locale
Locale which represents the Chinese language as used in Taiwan.
TRADITIONAL_HANZI - static field 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 field in class java.awt.FlowLayout
Constant that specifies alignment to trailing edge of container's orientation.
TRAILING - static field in class javax.swing.SwingConstants
TRAILING - static field in class javax.swing.border.TitledBorder
A value for the titleJustification property that horizontally aligns the title text with either the right or the left edge of the border, depending on the orientation of the component nested into the border.
trailing(int) - static method in class java.awt.font.TextHitInfo
Transaction - interface javax.transaction.Transaction
TRANSACTION_MODE - exception org.omg.CORBA.TRANSACTION_MODE
Raised when the TransactionPolicy in the IOR is not the same as the current transaction mode.
TRANSACTION_MODE() - constructor for class org.omg.CORBA.TRANSACTION_MODE
Creates TRANSACTION_MODE with the default minor code of 0 and a completion state COMPLETED_NO.
Creates a TRANSACTION_MODE exception with the specified minor code and completion status.
TRANSACTION_MODE(java.lang.String) - constructor for class org.omg.CORBA.TRANSACTION_MODE
Creates TRANSACTION_MODE with the default minor code of 0, completion state COMPLETED_NO and the given explaining message.
Created TRANSACTION_MODE exception, providing full information.
TRANSACTION_NONE - static field in class java.sql.Connection
This transaction isolation level indicates that transactions are not supported.
TRANSACTION_READ_COMMITTED - static field in class java.sql.Connection
This transaction isolation level indicates that only committed data from other transactions will be read.
TRANSACTION_READ_UNCOMMITTED - static field in class java.sql.Connection
This transaction isolation level indicates that one transaction can read modifications by other transactions before the other transactions have committed their changes.
TRANSACTION_REPEATABLE_READ - static field in class java.sql.Connection
This transaction isolation level indicates that only committed data from other transactions will be read.
TRANSACTION_REQUIRED - exception org.omg.CORBA.TRANSACTION_REQUIRED
Means that request carried a null transaction context, but an active transaction is required.
TRANSACTION_REQUIRED() - constructor for class org.omg.CORBA.TRANSACTION_REQUIRED
Creates TRANSACTION_REQUIRED with the default minor code of 0 and a completion state COMPLETED_NO.
Creates a TRANSACTION_REQUIRED exception with the specified minor code and completion status.
TRANSACTION_REQUIRED(java.lang.String) - constructor for class org.omg.CORBA.TRANSACTION_REQUIRED
Creates a TRANSACTION_REQUIRED with the default minor code of 0, completion state COMPLETED_NO and the given explaining message.
Created TRANSACTION_REQUIRED exception, providing full information.
Means that transaction associated with the request has already been rolled back or marked to roll back.
TRANSACTION_ROLLEDBACK() - constructor for class org.omg.CORBA.TRANSACTION_ROLLEDBACK
Creates TRANSACTION_ROLLEDBACK with the default minor code of 0 and a completion state COMPLETED_NO.
Creates a TRANSACTION_ROLLEDBACK exception with the specified minor code and completion status.
Creates a TRANSACTION_ROLLEDBACK with the default minor code of 0, completion state COMPLETED_NO and the given explaining message.
Created TRANSACTION_ROLLEDBACK exception, providing full information.
TRANSACTION_SERIALIZABLE - static field in class java.sql.Connection
This transaction isolation level indicates that only committed data from other transactions will be read.
Raised in response to the abnormal termination of the transaction service.
TRANSACTION_UNAVAILABLE() - constructor for class org.omg.CORBA.TRANSACTION_UNAVAILABLE
Creates TRANSACTION_UNAVAILABLE with the default minor code of 0 and a completion state COMPLETED_NO.
Creates a TRANSACTION_UNAVAILABLE exception with the specified minor code and completion status.
Creates TRANSACTION_UNAVAILABLE with the default minor code of 0, completion state COMPLETED_NO and the given explaining message.
Created TRANSACTION_UNAVAILABLE exception, providing full information.
TransactionManager - interface javax.transaction.TransactionManager
TransactionRequiredException() - constructor for class javax.transaction.TransactionRequiredException
Create an exception with no message, and cause initialized to null.
Create an exception with the given message, and cause initialized to null.
TransactionRolledbackException() - constructor for class javax.transaction.TransactionRolledbackException
Create an exception with no message, and cause initialized to null.
Create an exception with the given message, and cause initialized to null.
TransactionService - interface org.omg.IOP.TransactionService
Holds the integer identifier of the TransactionService context.
Transferable - interface java.awt.datatransfer.Transferable
This interface is implemented by classes that can transfer data.
transferablesFlavorsChanged() - method in class java.awt.dnd.DragSourceContext
This function tells the peer that the DataFlavors have been modified.
transferablesFlavorsChanged() - method in class java.awt.dnd.peer.DragSourceContextPeer
transferFocus() - method in class java.awt.Component
Transfers focus to the next component in the focus traversal order, as though this were the current focus owner.
transferFocusBackward() - method in class java.awt.Component
Transfers focus to the previous component in the focus traversal order, as though this were the current focus owner.
transferFocusDownCycle() - method in class java.awt.Container
Transfer focus down one focus traversal cycle.
transferFocusUpCycle() - method in class java.awt.Component
Transfers focus to the focus cycle root of this component.
Transfers bytes from the given readable channel into this channel.
TransferHandler - class javax.swing.TransferHandler
TransferHandler() - constructor for class javax.swing.TransferHandler
TransferHandler(java.lang.String) - constructor for class javax.swing.TransferHandler
Transfers bytes from this channel's file to the given writable byte channel.
transferType - field in class java.awt.image.ColorModel
TRANSFORM - static field in class java.awt.font.TextAttribute
A key for the TRANFORM attribute.
Perform this transformation on an array of points, in (x,y) pairs, storing the results in another (possibly same) array.
Perform this transformation on an array of points, in (x,y) pairs, storing the results in another array.
Perform this transformation on an array of points, in (x,y) pairs, storing the results in another array.
Perform this transformation on an array of points, in (x,y) pairs, storing the results in another (possibly same) array.
transform(java.awt.geom.AffineTransform) - method in class java.awt.geom.Area
Transforms this area by the AffineTransform at.
Applies a transform to the path.
Sets the current transform to a concatenation of transform and the existing transform.
Perform this transformation on the given source point, and store the result in the destination (creating it if necessary).
Perform this transformation on an array of points, storing the results in another (possibly same) array.
Implementation of this method transforms a class by redefining its bytecodes.
Transforms the source XML to a result tree.
This class provides a mechanism for using an AffineTransform as an immutable attribute (for example, in the AttributedString class).
Creates a new attribute that contains a copy of the given transform.
Transformer - class javax.xml.transform.Transformer
An XSL transformation.
Transformer() - constructor for class javax.xml.transform.Transformer
An exception occurred during configuration of the transformer.
Constructor with no detail message.
Constructor with a detail message.
Constructor with detail message and underlyinmg cause.
Constructor with detail message and locator.
Constructor with detail message, locator and underlying cause.
Constructor with underlying cause.
TransformerException - exception javax.xml.transform.TransformerException
An exception occurred during the transformation process.
TransformerException(java.lang.String) - constructor for class javax.xml.transform.TransformerException
Constructor with a detail message.
Constructor with a detail message and underlying cause.
Constructor with a detail message and locator.
Constructor with detail message, locator and underlying cause.
TransformerException(java.lang.Throwable) - constructor for class javax.xml.transform.TransformerException
Constructor with an underlying cause.
TransformerFactory - class javax.xml.transform.TransformerFactory
Factory for obtaining transformation contexts.
TransformerFactory() - constructor for class javax.xml.transform.TransformerFactory
An error occurred during configuration of the transformer factory.
Constructor with no detail message.
Constructor with an underlying cause.
Constructor with an underlying cause and detail message.
Constructor with a detail message.
TransformerHandler - interface javax.xml.transform.sax.TransformerHandler
A content handler that transforms SAX events into a result tree.
TRANSIENT - static field in class javax.accessibility.AccessibleState
Indicates that this object is transient.
TRANSIENT - static field in class org.omg.PortableServer.LifespanPolicyValue
An instance of LifespanPolicyValue, initialized to TRANSIENT.
TRANSIENT - static field in class java.lang.reflect.Modifier
Transient: Field: not serialized or deserialized.
TRANSIENT - exception org.omg.CORBA.TRANSIENT
Means that the ORB cannot reach the object.
TRANSIENT() - constructor for class org.omg.CORBA.TRANSIENT
Creates TRANSIENT with the default minor code of 0 and a completion state COMPLETED_NO.
TRANSIENT(int,org.omg.CORBA.CompletionStatus) - constructor for class org.omg.CORBA.TRANSIENT
Creates a TRANSIENT exception with the specified minor code and completion status.
TRANSIENT(java.lang.String) - constructor for class org.omg.CORBA.TRANSIENT
Creates a TRANSIENT with the default minor code of 0, completion state COMPLETED_NO and the given explaining message.
Created TRANSIENT exception, providing full information.
translate(double,double) - method in class java.awt.geom.AffineTransform
Concatenate a translation onto this transform.
translate(double,double) - method in class java.awt.Graphics2D
translate(int,int) - method in class javax.swing.DebugGraphics
translate
translate(int,int) - method in class java.awt.Event
translate(int,int) - method in class java.awt.Graphics
Translates this context so that its new origin point is the point (x, y).
translate(int,int) - method in class java.awt.Graphics2D
Translates this context so that its new origin point is the point (x, y).
translate(int,int) - method in class java.awt.Point
Changes the coordinates of this point such that the specified dx parameter is added to the existing X coordinate and dy is added to the existing Y coordinate.
translate(int,int) - method in class java.awt.Polygon
Translates the polygon by adding the specified values to all X and Y coordinates.
translate(int,int) - method in class java.awt.Rectangle
Translate the location of this rectangle by the given amounts.
translateHTMLToCSS(javax.swing.text.AttributeSet) - method in class javax.swing.text.html.StyleSheet
Converts a set of HTML attributes to an equivalent set of CSS attributes.
translateKey(java.security.Key) - method in class java.security.KeyFactory
Translates the key from an unknown or untrusted provider into a key from this key factory.
Translate a secret key into another form.
translatePoint(int,int) - method in class java.awt.event.MouseEvent
Translates the event coordinates by the specified x and y offsets.
TRANSLUCENT - static field in class java.awt.Transparency
Image data which is translucent, for a non-integer alpha value.
Transmitter - interface javax.sound.midi.Transmitter
This interface specifies the methods required by objects which send MIDI events to Receivers, including MIDI IN ports and Sequencers.
Transparency - interface java.awt.Transparency
A common transparency mode for layering graphics.
transparency - field in class java.awt.image.VolatileImage
This image's transparency type.
TRANSPORT_RETRY - interface org.omg.PortableInterceptor.TRANSPORT_RETRY
A reply status, indicating the necessity of the transport retry.
TREE - static field in class javax.accessibility.AccessibleRole
An object which represents a hierachical view of data.
tree - field in class javax.swing.plaf.basic.BasicTreeUI
Component that we're going to be drawing onto.
tree - field in class javax.swing.tree.DefaultTreeCellEditor
JTree instance listening too.
TREE - static field in class javax.swing.plaf.synth.Region
Specifies the region of a tree.
TREE_CELL - static field in class javax.swing.plaf.synth.Region
Specifies the region of a tree cell.
TREE_MODEL_PROPERTY - static field in class javax.swing.JTree
The action to cancel editing on this tree.
Creates the new tree cancel editing action.
TreeCellEditor - interface javax.swing.tree.TreeCellEditor
A TreeCellEditor is used by the JTree component to edit individual tree elements (nodes).
TreeCellRenderer - interface javax.swing.tree.TreeCellRenderer
A TreeCellRenderer is used by the JTree component to paint individual tree elements (nodes).
Called whenever an item in the tree has been collapsed.
Tree Collapsed notification
Tree collapsed
A tree control icon.
TreeControlIcon(boolean) - constructor for class javax.swing.plaf.metal.MetalIconFactory.TreeControlIcon
Creates a new icon.
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).
Called whenever an item in the tree has been expanded.
Tree Model Expansion notification.
Tree expanded
TreeExpansionEvent - class javax.swing.event.TreeExpansionEvent
TreeExpansionEvent
Constructor TreeExpansionEvent
Updates the TreeState in response to nodes expanding/collapsing.
TreeExpansionHandler() - constructor for class javax.swing.plaf.basic.BasicTreeUI.TreeExpansionHandler
Constructor
TreeExpansionListener - interface javax.swing.event.TreeExpansionListener
TreeExpansionListener public interface
A tree folder icon.
TreeFolderIcon() - constructor for class javax.swing.plaf.metal.MetalIconFactory.TreeFolderIcon
Creates a new instance.
TreeHomeAction is used to handle end/home actions.
TreeHomeAction(int,java.lang.String) - constructor for class javax.swing.plaf.basic.BasicTreeUI.TreeHomeAction
Creates a new TreeHomeAction instance.
TreeIncrementAction is used to handle up/down actions.
TreeIncrementAction(int,java.lang.String) - constructor for class javax.swing.plaf.basic.BasicTreeUI.TreeIncrementAction
Creates a new TreeIncrementAction.
A tree leaf icon.
TreeLeafIcon() - constructor for class javax.swing.plaf.metal.MetalIconFactory.TreeLeafIcon
Creates a new instance.
TreeMap<K,V> - class java.util.TreeMap<K,V>
This class provides a red-black tree implementation of the SortedMap interface.
TreeMap() - constructor for class java.util.TreeMap<K,V>
Instantiate a new TreeMap with no elements, using the keys' natural ordering to sort.
TreeMap(extends,V>) - constructor for class java.util.TreeMap<K,V>
Instantiate a new TreeMap, initializing it with all of the elements in the provided Map.
TreeMap(K>) - constructor for class java.util.TreeMap<K,V>
Instantiate a new TreeMap with no elements, using the provided comparator to sort.
TreeMap(SortedMap) - constructor for class java.util.TreeMap<K,V>
Instantiate a new TreeMap, initializing it with all of the elements in the provided SortedMap.
treeModel - field in class javax.swing.tree.AbstractLayoutCache
treeModel
treeModel - field in class javax.swing.plaf.basic.BasicTreeUI
Used to determine what to display.
TreeModel - interface javax.swing.tree.TreeModel
TreeModel public interface
treeModel - field in class javax.swing.JTree
TreeModelEvent - class javax.swing.event.TreeModelEvent
TreeModelEvent
Constructor TreeModelEvent
Constructor TreeModelEvent
Constructor TreeModelEvent
Constructor TreeModelEvent
Forwards all TreeModel events to the TreeState.
Listens to the model of the JTree and updates the property expandedState if nodes are removed or changed.
TreeModelHandler() - constructor for class javax.swing.plaf.basic.BasicTreeUI.TreeModelHandler
Constructor
TreeModelHandler() - constructor for class javax.swing.JTree.TreeModelHandler
Creates a new instance of TreeModelHandler.
TreeModelListener - interface javax.swing.event.TreeModelListener
TreeModelListener public interface
treeModelListener - field in class javax.swing.JTree
Handles TreeModelEvents to update the expandedState.
TreeNode - interface javax.swing.tree.TreeNode
A tree node.
treeNodesChanged
Invoked after a node (or a set of siblings) has changed in some way.
The listener method, called when the tree nodes are changed.
Tree Model Node change notification.
Notifies when a node has changed in some ways.
Tree nodes changed
The listener method, called when the tree nodes are changed.
treeNodesInserted
Invoked after nodes have been inserted into the tree.
The listener method, called when the tree nodes are inserted.
Tree Model Node change notification.
Notifies when a node is inserted into the tree.
Tree nodes inserted
The listener method, called when the tree nodes are inserted.
treeNodesRemoved
Invoked after nodes have been removed from the tree.
The listener method, called when the tree nodes are removed.
Tree Model Node change notification.
Notifies when a node is removed from the tree.
Tree nodes removed
The listener method, called when the tree nodes are removed.
TreePageAction handles page up and page down events.
TreePageAction(int,java.lang.String) - constructor for class javax.swing.plaf.basic.BasicTreeUI.TreePageAction
Constructor
TreePath - class javax.swing.tree.TreePath
A TreePath represents a sequence of tree elements that form a path starting from the root of a tree.
TreePath() - constructor for class javax.swing.tree.TreePath
Default constructor.
TreePath(java.lang.Object) - constructor for class javax.swing.tree.TreePath
Creates a new path from a single element.
TreePath(java.lang.Object[]) - constructor for class javax.swing.tree.TreePath
Creates a path from the list of objects representing tree elements.
TreePath(java.lang.Object[],int) - constructor for class javax.swing.tree.TreePath
Creates a new tree path using the first length elements from the given array.
TreePath(javax.swing.tree.TreePath,java.lang.Object) - constructor for class javax.swing.tree.TreePath
Creates a new tree path by adding the specified element to the path.
TreeSelectionEvent - class javax.swing.event.TreeSelectionEvent
An event that carries information about a change to a TreeSelectionModel.
Creates a new TreeSelectionEvent.
Creates a new TreeSelectionEvent.
Listens for changes in the selection model and updates the display accordingly.
TreeSelectionHandler() - constructor for class javax.swing.plaf.basic.BasicTreeUI.TreeSelectionHandler
Constructor
TreeSelectionListener - interface javax.swing.event.TreeSelectionListener
A listener that receives TreeSelectionEvent notifications from a source (such as a TreeSelectionModel).
treeSelectionModel - field in class javax.swing.tree.AbstractLayoutCache
treeSelectionModel
treeSelectionModel - field in class javax.swing.plaf.basic.BasicTreeUI
Model maintaining the selection.
TreeSelectionModel - interface javax.swing.tree.TreeSelectionModel
TreeSelectionModel public interface
This redirects TreeSelectionEvents and rewrites the source of it to be this JTree.
TreeSelectionRedirector() - constructor for class javax.swing.JTree.TreeSelectionRedirector
Creates a new instance of TreeSelectionRedirector
TreeSet<T> - class java.util.TreeSet<T>
This class provides a TreeMap-backed implementation of the SortedSet interface.
TreeSet() - constructor for class java.util.TreeSet<T>
Construct a new TreeSet whose backing TreeMap using the "natural" ordering of keys.
TreeSet(SortedSet) - constructor for class java.util.TreeSet<T>
Construct a new TreeSet, using the same key ordering as the supplied SortedSet and containing all of the elements in the supplied SortedSet.
TreeSet(T>) - constructor for class java.util.TreeSet<T>
Construct a new TreeSet whose backing TreeMap uses the "natural" orering of the keys and which contains all of the elements in the supplied Collection.
treeState - field in class javax.swing.plaf.basic.BasicTreeUI
Object responsible for handling sizing and expanded issues.
treeStructureChanged
Invoked after the tree has drastically changed structure from a given node down.
Called when the tree structure has been changed.
Tree Model structure change change notification.
Notifies when the structure of the tree is changed.
Tree structured changed
Called when the tree structure has been changed.
For the first selected row expandedness will be toggled.
TreeToggleAction(java.lang.String) - constructor for class javax.swing.plaf.basic.BasicTreeUI.TreeToggleAction
Creates a new TreeToggleAction.
TreeTraverseAction is the action used for left/right keys.
TreeTraverseAction(int,java.lang.String) - constructor for class javax.swing.plaf.basic.BasicTreeUI.TreeTraverseAction
Constructor
TreeUI - class javax.swing.plaf.TreeUI
An abstract base class for delegates that provide the user interface for JTree.
TreeUI() - constructor for class javax.swing.plaf.TreeUI
Constructs a new TreeUI.
TreeWalker - interface org.w3c.dom.traversal.TreeWalker
TreeWalker objects are used to navigate a document tree or subtree using the view of the document defined by their whatToShow flags and filter (if any).
Invoked whenever a node in the tree is about to be collapsed.
Invoked whenever a node in the tree is about to be expanded.
TreeWillExpandListener - interface javax.swing.event.TreeWillExpandListener
trim() - method in class java.lang.String
Trims all characters less than or equal to '\u0020' (' ') from the beginning and end of this String.
trimEdits(int,int) - method in class javax.swing.undo.UndoManager
Discards a range of edits.
trimForLimit() - method in class javax.swing.undo.UndoManager
Called by various internal methods in order to enforce the limit value.
trimToSize() - method in class java.util.ArrayList<E>
Trims the capacity of this List to be equal to its size; a memory saver.
trimToSize() - method in class javax.swing.DefaultListModel
Sets the capacity of the list to be equal to its size.
trimToSize() - method in class java.lang.StringBuffer
This may reduce the amount of memory used by the StringBuffer, by resizing the internal array to remove unused space.
trimToSize() - method in class java.lang.StringBuilder
trimToSize() - method in class java.util.Vector<T>
Trims the Vector down to size.
TRUE - static field in class java.lang.Boolean
This field is a Boolean object representing the primitive value true.
TRUETYPE_FONT - static field in class java.awt.Font
Indicates to createFont that the supplied font data is in TrueType format.
truncate(long) - method in class java.sql.Blob
Truncates this Blob to be at most the specified number of bytes long.
truncate(long) - method in class java.sql.Clob
Truncates this Clob to be at most the specified number of characters long.
truncate(long) - method in class java.nio.channels.FileChannel
Truncates the channel's file at size.
TRUNCATED - static field in class javax.accessibility.AccessibleState
Indicates that this particular object is truncated when displayed visually.
TrustAnchor - class java.security.cert.TrustAnchor
An ultimately-trusted certificate to serve as the root of a certificate chain.
Create a new trust anchor from a certificate authority's distinguished name, public key, and (optional) name constraints.
TrustAnchor(java.security.cert.X509Certificate,byte[]) - constructor for class java.security.cert.TrustAnchor
Create a new trust anchor from a certificate and (optional) name constraints.
TrustManager - interface javax.net.ssl.TrustManager
A marker interface for classes that establish the trust of remote hosts.
A factory for creating trust manager objects.
Creates a new trust manager factory.
The service provider interface (SPI) for trust managers.
TrustManagerFactorySpi() - constructor for class javax.net.ssl.TrustManagerFactorySpi
tryLock() - method in class java.nio.channels.FileChannel
Tries to aqquire alock on the whole associated file.
tryLock(long,long,boolean) - method in class java.nio.channels.FileChannel
Tries to aqquire a lock on a region of the associated file.
tryToLoadClass(java.lang.String,java.lang.ClassLoader) - static method in class java.awt.datatransfer.DataFlavor
This method attempts to load the named class.
TT - static field in class javax.swing.text.html.HTML.Tag
The <tt> tag
TT_EOF - static field in class java.io.StreamTokenizer
A constant indicating that the end of the stream has been read.
TT_EOL - static field in class java.io.StreamTokenizer
A constant indicating that the end of the line has been read.
TT_NUMBER - static field in class java.io.StreamTokenizer
A constant indicating that a number token has been read.
TT_WORD - static field in class java.io.StreamTokenizer
A constant indicating that a word token has been read.
ttype - field in class java.io.StreamTokenizer
Contains the type of the token read resulting from a call to nextToken The rules are as follows:
  • For a token consisting of a single ordinary character, this is the value of that character.
  • For a quoted string, this is the value of the quote character
  • For a word, this is TT_WORD
  • For a number, this is TT_NUMBER
  • For the end of the line, this is TT_EOL
  • For the end of the stream, this is TT_EOF
TUESDAY - static field in class java.util.Calendar
Constant representing Tuesday.
TUMBLE - static field in class javax.print.attribute.standard.Sides
An alias constant for "two sided short edge".
TUNE_REQUEST - static field in class javax.sound.midi.ShortMessage
Status byte for Tune Request message.
TWO_SIDED_LONG_EDGE - static field in class java.awt.JobAttributes.SidesType
TWO_SIDED_LONG_EDGE - static field in class javax.print.attribute.standard.Sides
Specifies that two following pages should be printed on the front and back of one sheet for binding on the long edge.
TWO_SIDED_SHORT_EDGE - static field in class java.awt.JobAttributes.SidesType
TWO_SIDED_SHORT_EDGE - static field in class javax.print.attribute.standard.Sides
Specifies that two following pages should be printed on the front and back of one sheet for binding on the short edge.
type - field in class javax.swing.text.html.parser.AttributeList
The type of the attribute.
AudioFileFormat.Type - class javax.sound.sampled.AudioFileFormat.Type
An instance of this type describes a standard audio file format.
TYPE - static field in class java.lang.Boolean
The primitive type boolean is represented by this Class object.
BooleanControl.Type - class javax.sound.sampled.BooleanControl.Type
A Type specialized to represent a boolean control.
TYPE - static field in class java.lang.Byte
The primitive type byte is represented by this Class object.
TYPE - static field in class java.lang.Character
Class object representing the primitive char data type.
CompoundControl.Type - class javax.sound.sampled.CompoundControl.Type
This describes a single compound control.
type - field in class javax.swing.text.html.parser.ContentModel
Specifies the BNF operation between this node and the node, stored in the field next (or for this node, if it is an unary operation.
Control.Type - class javax.sound.sampled.Control.Type
This describes a single control.
TYPE - static field in class java.lang.Double
The primitive type double is represented by this Class object.
type - field in class javax.swing.text.html.parser.Element
The element type, containing value, defined in DTDConstants.
type - field in class javax.swing.text.html.parser.Entity
The entity type.
EnumControl.Type - class javax.sound.sampled.EnumControl.Type
This Type describes an EnumControl.
TYPE - static field in class java.lang.Float
The primitive type float is represented by this Class object.
FloatControl.Type - class javax.sound.sampled.FloatControl.Type
An instance of this class describes a particular floating point control.
TYPE - static field in class javax.swing.text.html.HTML.Attribute
The type attribute
TYPE - static field in class java.lang.Integer
The primitive type int is represented by this Class object.
Type - interface java.lang.reflect.Type
Represents any Type within the Java programming language.
LineEvent.Type - class javax.sound.sampled.LineEvent.Type
This class represents the kinds of state changes that can occur to a Line.
TYPE - static field in class java.lang.Long
The primitive type long is represented by this Class object.
type - field in class javax.sound.midi.MidiFileFormat
The MIDI file type.
type - field in class javax.naming.event.NamingEvent
Proxy.Type - class java.net.Proxy.Type
Represents the proxy type.
TYPE - static field in class java.lang.Short
The primitive type short is represented by this Class object.
type - field in class org.omg.CORBA.StructMember
The typecode of the structure member.
type - field in class javax.swing.event.TableModelEvent
The event type (one of UPDATE, INSERT, DELETE).
type - field in class org.omg.CORBA.UnionMember
The typecode of the union member.
type - field in class org.omg.CORBA.ValueMember
The type of of this value member.
TYPE - static field in class java.lang.Void
The return type void is represented by this Class object.
type() - method in class org.omg.DynamicAny._DynAnyStub
The remote call of DynAny methods is not possible.
type() - method in class org.omg.DynamicAny._DynArrayStub
The remote call of DynAny methods is not possible.
type() - method in class org.omg.DynamicAny._DynEnumStub
The remote call of DynAny methods is not possible.
type() - method in class org.omg.DynamicAny._DynFixedStub
The remote call of DynAny methods is not possible.
type() - method in class org.omg.DynamicAny._DynSequenceStub
The remote call of DynAny methods is not possible.
type() - method in class org.omg.DynamicAny._DynStructStub
The remote call of DynAny methods is not possible.
type() - method in class org.omg.DynamicAny._DynUnionStub
The remote call of DynAny methods is not possible.
type() - method in class org.omg.DynamicAny._DynValueStub
The remote call of DynAny methods is not possible.
type() - method in class org.omg.CORBA._IDLTypeStub
Get the typecode of the remote IDL type object.
type() - static method in class org.omg.PortableServer.POAPackage.AdapterAlreadyExistsHelper
Create the AdapterAlreadyExists typecode (emtpy structure, named "AdapterAlreadyExists").
type() - static method in class org.omg.PortableServer.POAManagerPackage.AdapterInactiveHelper
Create the AdapterInactive typecode (structure, named "AdapterInactive").
type() - static method in class org.omg.PortableInterceptor.AdapterManagerIdHelper
Create the AdapterManagerId typecode (alias of CORBA long (java int), named "AdapterManagerId").
type() - static method in class org.omg.PortableInterceptor.AdapterNameHelper
Creates and returns a new instance of the TypeCode, corresponding the adapter name.
type() - static method in class org.omg.PortableServer.POAPackage.AdapterNonExistentHelper
Create the AdapterNonExistent typecode (empty structure, named "AdapterNonExistent").
type() - static method in class org.omg.PortableInterceptor.AdapterStateHelper
Create the AdapterState typecode (alias of short, named "AdapterState").
type() - static method in class org.omg.CosNaming.NamingContextExtPackage.AddressHelper
Return the "Address", alias of String, typecode.
type() - static method in class org.omg.CosNaming.NamingContextPackage.AlreadyBoundHelper
Create the type code for this exception.
type() - method in class org.omg.CORBA.Any
Returns the TypeCode of the object, stored in this Any
type() - static method in class org.omg.CORBA.AnySeqHelper
Creates and returns a new instance of the TypeCode, corresponding the array of Any's.
type() - static method in class org.omg.DynamicAny.AnySeqHelper
Get the typecode as officially defined for this helper.
type() - static method in class org.omg.CosNaming.BindingHelper
Create the type code for this exception.
type() - static method in class org.omg.CosNaming.BindingIteratorHelper
Create the type code for the BindingIterator.
type() - static method in class org.omg.CosNaming.BindingListHelper
Return the binding array type code.
type() - static method in class org.omg.CosNaming.BindingTypeHelper
Get the type code of this enumeration.
type() - static method in class org.omg.CORBA.BooleanSeqHelper
Creates and returns a new instance of the TypeCode, corresponding the CORBA BooleanSeq.
type() - static method in class org.omg.CosNaming.NamingContextPackage.CannotProceedHelper
Create the type code for this exception.
type() - static method in class org.omg.CORBA.CharSeqHelper
Creates and returns a new instance of the TypeCode, corresponding the CORBA CharSeq.
type() - static method in class org.omg.IOP.CodecFactoryHelper
Get the type code of the CodecFactory.
type() - static method in class org.omg.CORBA.CompletionStatusHelper
Get the parameter mode typecode (enumeration, named "CompletionStatus").
type() - static method in class org.omg.IOP.ComponentIdHelper
Create the ComponentId typecode (alias of CORBA ulong, named "ComponentId".
type() - static method in class org.omg.CORBA.CurrentHelper
Get the type code of the Current.
type() - static method in class org.omg.PortableInterceptor.CurrentHelper
Get the type code of the Current.
type() - static method in class org.omg.PortableServer.CurrentHelper
Get the type code of the POA Current.
type() - static method in class org.omg.CORBA.DefinitionKindHelper
Get the definition kind typecode (enumeration, named "DefinitionKind").
type() - static method in class org.omg.CORBA.DoubleSeqHelper
Creates and returns a new instance of the TypeCode, corresponding the CORBA DoubleSeq.
type() - static method in class org.omg.PortableInterceptor.ORBInitInfoPackage.DuplicateNameHelper
Create the DuplicateName typecode (structure, named "DuplicateName").
type() - method in class org.omg.CORBA.DynAny
Returns the typecode of the object, inserted into this DynAny.
type() - static method in class org.omg.DynamicAny.DynAnyFactoryHelper
Get the final_type code of the DynAnyFactory.
type() - static method in class org.omg.DynamicAny.DynAnyHelper
Get the type code of the DynAny.
type() - method in class org.omg.DynamicAny.DynAnyOperations
Returns the typecode of the object, inserted into this DynAny.
type() - static method in class org.omg.DynamicAny.DynAnySeqHelper
type() - static method in class org.omg.DynamicAny.DynArrayHelper
Get the type code of the DynArray.
type() - static method in class org.omg.DynamicAny.DynEnumHelper
Get the type code of the DynEnum.
type() - static method in class org.omg.DynamicAny.DynFixedHelper
Get the type code of the DynFixed.
type() - static method in class org.omg.DynamicAny.DynSequenceHelper
Get the type code of the DynSequence.
type() - static method in class org.omg.DynamicAny.DynStructHelper
Get the type code of the DynStruct.
type() - static method in class org.omg.DynamicAny.DynUnionHelper
Get the type code of the DynUnion.
type() - static method in class org.omg.DynamicAny.DynValueHelper
Get the type code of the DynValue.
type() - static method in class org.omg.CORBA.FieldNameHelper
Return an string alias typecode, named "FieldName".
type() - static method in class org.omg.DynamicAny.FieldNameHelper
Return an alias typecode.
type() - static method in class org.omg.CORBA.FloatSeqHelper
Creates and returns a new instance of the TypeCode, corresponding the CORBA FloatSeq.
type() - static method in class org.omg.IOP.CodecPackage.FormatMismatchHelper
Create the FormatMismatch typecode (structure, named "FormatMismatch").
type() - static method in class org.omg.PortableInterceptor.ForwardRequestHelper
Create the ForwardRequest typecode (structure, named "ForwardRequest").
type() - static method in class org.omg.PortableServer.ForwardRequestHelper
Create the ForwardRequest typecode (structure, named "ForwardRequest").
type() - static method in class org.omg.CORBA.IdentifierHelper
Return an string alias typecode, named "Identifier".
type() - static method in class org.omg.CORBA.IDLTypeHelper
Get the typecode of the IDL type (the interface typecode, name "IDLType").
type() - method in class org.omg.CORBA.IDLTypeOperations
Get the type code of the interface repository object.
type() - static method in class org.omg.DynamicAny.DynAnyFactoryPackage.InconsistentTypeCodeHelper
Create the InconsistentTypeCode typecode (structure, named "InconsistentTypeCode").
type() - static method in class org.omg.CosNaming.NamingContextExtPackage.InvalidAddressHelper
Create the type code for this exception.
type() - static method in class org.omg.CosNaming.NamingContextPackage.InvalidNameHelper
Create the type code for this exception.
type() - static method in class org.omg.PortableInterceptor.ORBInitInfoPackage.InvalidNameHelper
Create the InvalidName typecode (structure, named "InvalidName").
type() - static method in class org.omg.PortableServer.POAPackage.InvalidPolicyHelper
Create the InvalidPolicy typecode (emtpy structure, named "InvalidPolicy").
type() - static method in class org.omg.PortableInterceptor.InvalidSlotHelper
Create the InvalidSlot typecode (structure, named "InvalidSlot").
type() - static method in class org.omg.IOP.CodecPackage.InvalidTypeForEncodingHelper
Create the InvalidTypeForEncoding typecode (structure, named "InvalidTypeForEncoding").
type() - static method in class org.omg.DynamicAny.DynAnyPackage.InvalidValueHelper
Create the InvalidValue typecode (structure, named "InvalidValue").
type() - static method in class org.omg.IOP.IORHelper
Create the IOR typecode (structure, named "IOR").
type() - static method in class org.omg.PortableInterceptor.IORInterceptor_3_0Helper
Get the type code of the IORInterceptor_3_0.
type() - static method in class org.omg.CosNaming.IstringHelper
Return an alias typecode.
type() - static method in class org.omg.CORBA.LongLongSeqHelper
Creates and returns a new instance of the TypeCode, corresponding the CORBA LongLongSeq.
type() - static method in class org.omg.CORBA.LongSeqHelper
Creates and returns a new instance of the TypeCode, corresponding the CORBA LongSeq.
type() - static method in class org.omg.IOP.MultipleComponentProfileHelper
type() - static method in class org.omg.CosNaming.NameComponentHelper
Get the type code of the named component.
type() - static method in class org.omg.DynamicAny.NameDynAnyPairHelper
Create the NameDynAnyPair typecode (structure, named "NameDynAnyPair").
type() - static method in class org.omg.DynamicAny.NameDynAnyPairSeqHelper
type() - static method in class org.omg.CosNaming.NameHelper
Get the type code of the Name.
type() - static method in class org.omg.CORBA.NameValuePairHelper
Create the type code for the name value pair.
type() - static method in class org.omg.DynamicAny.NameValuePairHelper
Create the NameValuePair typecode (structure, named "NameValuePair").
type() - static method in class org.omg.DynamicAny.NameValuePairSeqHelper
type() - static method in class org.omg.CosNaming.NamingContextExtHelper
Get the type code of the NamingContextExt.
type() - static method in class org.omg.CosNaming.NamingContextHelper
Get the type code of the NamingContext.
type() - static method in class org.omg.PortableServer.CurrentPackage.NoContextHelper
Create the NoContext typecode (structure, named "NoContext").
type() - static method in class org.omg.PortableServer.POAPackage.NoServantHelper
Create the NoServant typecode (empty structure, named "NoServant").
type() - static method in class org.omg.CosNaming.NamingContextPackage.NotEmptyHelper
Create the type code for this exception.
type() - static method in class org.omg.CosNaming.NamingContextPackage.NotFoundHelper
Create the type code for this exception.
type() - static method in class org.omg.CosNaming.NamingContextPackage.NotFoundReasonHelper
Create the type code for this exception.
type() - static method in class org.omg.PortableServer.POAPackage.ObjectAlreadyActiveHelper
Create the ObjectAlreadyActive typecode (empty structure, named "ObjectAlreadyActive").
type() - static method in class org.omg.CORBA.ObjectHelper
Return the object type code.
type() - static method in class org.omg.PortableInterceptor.ObjectIdHelper
Return an alias typecode (an alias of the octet sequence).
type() - static method in class org.omg.PortableInterceptor.ORBInitInfoPackage.ObjectIdHelper
Return an alias typecode.
type() - static method in class org.omg.PortableServer.POAPackage.ObjectNotActiveHelper
Create the ObjectNotActive typecode (empty structure, named "ObjectNotActive").
type() - static method in class org.omg.PortableInterceptor.ObjectReferenceFactoryHelper
Get the type code of the ObjectReferenceFactory.
type() - static method in class org.omg.PortableInterceptor.ObjectReferenceTemplateHelper
Get the type code of the ObjectReferenceTemplate.
type() - static method in class org.omg.PortableInterceptor.ObjectReferenceTemplateSeqHelper
Creates and returns a new instance of the TypeCode, corresponding the CORBA ObjectReferenceTemplate[].
type() - static method in class org.omg.CORBA.OctetSeqHelper
Creates and returns a new instance of the TypeCode, corresponding the CORBA OctetSeq.
type() - static method in class org.omg.PortableInterceptor.ORBIdHelper
Return an alias typecode.
type() - static method in class org.omg.CORBA.ParameterModeHelper
Get the parameter mode typecode (enumeration, named "ParameterMode").
type() - static method in class org.omg.PortableServer.POAHelper
Get the type code of the POA.
type() - static method in class org.omg.CORBA.PolicyErrorCodeHelper
Returns a typecode of the policy error code, stating it is an alias of short, named "PolicyErrorCode".
type() - static method in class org.omg.CORBA.PolicyErrorHelper
Create the PolicyError typecode.
type() - static method in class org.omg.CORBA.PolicyHelper
Get the type code of the Policy.
type() - static method in class org.omg.CORBA.PolicyListHelper
Get the type code of the Policy[].
type() - static method in class org.omg.CORBA.PolicyTypeHelper
Create the PolicyType typecode (alias of CORBA ulong, named "PolicyType".
type() - static method in class org.omg.IOP.ProfileIdHelper
Create the ProfileId typecode (alias of CORBA ulong, named "ProfileId".
type() - method in class java.net.Proxy
Returns the of this proxy instance.
type() - static method in class org.omg.CORBA.RepositoryIdHelper
Return an string alias typecode, named "RepositoryId"
type() - static method in class org.omg.PortableServer.ServantActivatorHelper
Get the type code of the ServantActivator.
type() - static method in class org.omg.PortableServer.POAPackage.ServantAlreadyActiveHelper
Create the ServantAlreadyActive typecode (structure, named "ServantAlreadyActive").
type() - static method in class org.omg.PortableServer.ServantLocatorHelper
Get the type code of the ServantLocator.
type() - static method in class org.omg.PortableServer.POAPackage.ServantNotActiveHelper
Create the ServantNotActive typecode (empty structure, named "ServantNotActive").
type() - static method in class org.omg.PortableInterceptor.ServerIdHelper
Return an alias typecode.
type() - static method in class org.omg.IOP.ServiceContextHelper
Create the ServiceContext typecode (structure, named "ServiceContext").
type() - static method in class org.omg.IOP.ServiceContextListHelper
Get the type code of the ServiceContext[].
type() - static method in class org.omg.CORBA.ServiceDetailHelper
Get the typecode of the service detail, assuming to be it a structure with the two fields.
type() - static method in class org.omg.IOP.ServiceIdHelper
Create the ServiceId typecode (alias of CORBA ulong, named "ServiceId".
type() - static method in class org.omg.CORBA.ServiceInformationHelper
Get the service information typecode.
type() - static method in class org.omg.CORBA.SetOverrideTypeHelper
Get the definition kind typecode (enumeration, named "SetOverrideType").
type() - static method in class org.omg.CORBA.ShortSeqHelper
Creates and returns a new instance of the TypeCode, corresponding the CORBA ShortSeq.
type() - static method in class org.omg.CosNaming.NamingContextExtPackage.StringNameHelper
Return the "StringName", alias of String, typecode.
type() - static method in class org.omg.CORBA.StringSeqHelper
Creates and returns a new instance of the TypeCode, corresponding the CORBA string[].
type() - static method in class org.omg.CORBA.StringValueHelper
Create and return the value box typecode, named "StringValue", with the content typecode being unbounded string.
type() - static method in class org.omg.CORBA.StructMemberHelper
Get a typecode for the StructMember.
type() - static method in class org.omg.Messaging.SyncScopeHelper
Returns a typecode of the synchronization scope, stating it is an alias of short, named "SyncScope".
type() - static method in class org.omg.IOP.TaggedComponentHelper
Create the TaggedComponent typecode (structure, named "TaggedComponent").
type() - static method in class org.omg.IOP.TaggedProfileHelper
Create the TaggedProfile typecode (structure, named "TaggedProfile").
type() - static method in class org.omg.DynamicAny.DynAnyPackage.TypeMismatchHelper
Create the TypeMismatch typecode (structure, named "TypeMismatch").
type() - static method in class org.omg.IOP.CodecPackage.TypeMismatchHelper
Create the TypeMismatch typecode (structure, named "TypeMismatch").
type() - static method in class org.omg.CORBA.ULongLongSeqHelper
Creates and returns a new instance of the TypeCode, corresponding the CORBA ULongLongSeq.
type() - static method in class org.omg.CORBA.ULongSeqHelper
Creates and returns a new instance of the TypeCode, corresponding the CORBA ULongSeq.
type() - static method in class org.omg.CORBA.UnionMemberHelper
Create and return the typecode for this union member.
type() - static method in class org.omg.IOP.CodecFactoryPackage.UnknownEncodingHelper
Create the UnknownEncoding typecode (structure, named "UnknownEncoding").
type() - static method in class org.omg.CORBA.UnknownUserExceptionHelper
Create the UnknownUserException typecode (structure, named "UnknownUserException", containing a single field of type Any, named "except".
type() - static method in class org.omg.CosNaming.NamingContextExtPackage.URLStringHelper
Return the "URLString", alias of String, typecode.
type() - static method in class org.omg.CORBA.UShortSeqHelper
Creates and returns a new instance of the TypeCode, corresponding the CORBA UShortSeq.
type() - static method in class org.omg.CORBA.ValueBaseHelper
Get the typecode of the value type.
type() - static method in class org.omg.CORBA.ValueMemberHelper
Create a typecode for this value member.
type() - static method in class org.omg.CORBA.VersionSpecHelper
Return an string alias typecode, named "VersionSpec".
type() - static method in class org.omg.CORBA.VisibilityHelper
Return an alias of short, named "Visibility".
type() - static method in class org.omg.CORBA.WCharSeqHelper
Creates and returns a new instance of the TypeCode, corresponding the CORBA WCharSeq.
type() - static method in class org.omg.PortableServer.POAPackage.WrongAdapterHelper
Create the WrongAdapter typecode (empty structure, named "WrongAdapter").
type() - static method in class org.omg.PortableServer.POAPackage.WrongPolicyHelper
Create the WrongPolicy typecode (empty structure, named "WrongPolicy").
type() - static method in class org.omg.CORBA.WrongTransactionHelper
Create the WrongTransaction typecode (structure, named "WrongTransaction"), no fields.
type() - static method in class org.omg.CORBA.WStringSeqHelper
Creates and returns a new instance of the TypeCode, corresponding the CORBA wstring[].
type() - static method in class org.omg.CORBA.WStringValueHelper
Create and return the value box typecode, named "WStringValue", with the content typecode being unbounded string.
Type(java.lang.String) - constructor for class javax.sound.sampled.BooleanControl.Type
Create a new Type given its name.
Type(java.lang.String) - constructor for class javax.sound.sampled.CompoundControl.Type
Create a new Type given its name.
Type(java.lang.String) - constructor for class javax.sound.sampled.Control.Type
Create a new Type given its name.
Type(java.lang.String) - constructor for class javax.sound.sampled.EnumControl.Type
Create a new Type given its name.
Type(java.lang.String) - constructor for class javax.sound.sampled.FloatControl.Type
Create a new type given its name.
Type(java.lang.String) - constructor for class javax.sound.sampled.LineEvent.Type
Create a new type with the indicated name.
Type(java.lang.String,java.lang.String) - constructor for class javax.sound.sampled.AudioFileFormat.Type
Create a new Type given its name and file extension.
type(org.omg.CORBA.TypeCode) - method in class org.omg.CORBA.Any
Set the type of the object, stored in this Any, to the given TypeCode.
TYPE1_FONT - static field in class java.awt.Font
Indicates to createFont that the supplied font data is in Type1 format.
type2name(int) - static method in class javax.swing.text.html.parser.AttributeList
Converts a value from DTDConstants into the string representation.
TYPE_2CLR - static field in class java.awt.color.ColorSpace
TYPE_3BYTE_BGR - static field in class java.awt.image.BufferedImage
TYPE_3CLR - static field in class java.awt.color.ColorSpace
TYPE_4BYTE_ABGR - static field in class java.awt.image.BufferedImage
TYPE_4BYTE_ABGR_PRE - static field in class java.awt.image.BufferedImage
TYPE_4CLR - static field in class java.awt.color.ColorSpace
TYPE_5CLR - static field in class java.awt.color.ColorSpace
TYPE_6CLR - static field in class java.awt.color.ColorSpace
TYPE_7CLR - static field in class java.awt.color.ColorSpace
TYPE_8CLR - static field in class java.awt.color.ColorSpace
TYPE_9CLR - static field in class java.awt.color.ColorSpace
TYPE_ACLR - static field in class java.awt.color.ColorSpace
TYPE_BCLR - static field in class java.awt.color.ColorSpace
TYPE_BICUBIC - static field in class java.awt.image.AffineTransformOp
TYPE_BILINEAR - static field in class java.awt.image.AffineTransformOp
TYPE_BYTE - static field in class java.awt.image.DataBuffer
A constant representing a data type that uses byte primitives as the storage unit.
TYPE_BYTE_BINARY - static field in class java.awt.image.BufferedImage
TYPE_BYTE_GRAY - static field in class java.awt.image.BufferedImage
TYPE_BYTE_INDEXED - static field in class java.awt.image.BufferedImage
TYPE_CCLR - static field in class java.awt.color.ColorSpace
TYPE_CMY - static field in class java.awt.color.ColorSpace
TYPE_CMYK - static field in class java.awt.color.ColorSpace
TYPE_CUSTOM - static field in class java.awt.image.BufferedImage
TYPE_DCLR - static field in class java.awt.color.ColorSpace
type_def - field in class org.omg.CORBA.StructMember
The IDL type of the structure member.
type_def - field in class org.omg.CORBA.UnionMember
The IDL type of the union member.
type_def - field in class org.omg.CORBA.ValueMember
The typedef that represents the IDL type of the value member.
TYPE_DOUBLE - static field in class java.awt.image.DataBuffer
A constant representing a data type that uses double primitives as the storage unit.
TYPE_ECLR - static field in class java.awt.color.ColorSpace
TYPE_ERR - static field in class org.w3c.dom.xpath.XPathException
If the expression cannot be converted to return the specified type.
TYPE_FCLR - static field in class java.awt.color.ColorSpace
TYPE_FLIP - static field in class java.awt.geom.AffineTransform
The transformation includes a flip about an axis, swapping between right-handed and left-handed coordinate systems.
TYPE_FLOAT - static field in class java.awt.image.DataBuffer
A constant representing a data type that uses float primitives as the storage unit.
TYPE_FORWARD_ONLY - static field in class java.sql.ResultSet
This type of result set may only step forward through the rows returned.
TYPE_GENERAL_ROTATION - static field in class java.awt.geom.AffineTransform
The transformation includes a rotation by an arbitrary angle.
TYPE_GENERAL_SCALE - static field in class java.awt.geom.AffineTransform
The transformation includes a general scale - length is scaled in either or both the x and y directions, but by different amounts; without affecting angles.
TYPE_GENERAL_TRANSFORM - static field in class java.awt.geom.AffineTransform
The transformation is an arbitrary conversion of coordinates which could not be decomposed into the other TYPEs.
TYPE_GRAY - static field in class java.awt.color.ColorSpace
TYPE_HLS - static field in class java.awt.color.ColorSpace
TYPE_HSV - static field in class java.awt.color.ColorSpace
type_id - field in class org.omg.IOP.IOR
The object repository Id.
TYPE_IDENTITY - static field in class java.awt.geom.AffineTransform
The transformation is the identity (x' = x, y' = y).
TYPE_IMAGE_BUFFER - static field in class java.awt.GraphicsDevice
Device is an image buffer not visible to the user.
TYPE_INT - static field in class java.awt.image.DataBuffer
A constant representing a data type that uses int primitives as the storage unit.
TYPE_INT_ARGB - static field in class java.awt.image.BufferedImage
TYPE_INT_ARGB_PRE - static field in class java.awt.image.BufferedImage
TYPE_INT_BGR - static field in class java.awt.image.BufferedImage
TYPE_INT_RGB - static field in class java.awt.image.BufferedImage
TYPE_Lab - static field in class java.awt.color.ColorSpace
TYPE_Luv - static field in class java.awt.color.ColorSpace
TYPE_MASK_ROTATION - static field in class java.awt.geom.AffineTransform
This constant checks if either variety of rotation is performed.
TYPE_MASK_SCALE - static field in class java.awt.geom.AffineTransform
This constant checks if either variety of scale transform is performed.
TYPE_MISMATCH_ERR - static field in class 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.
TYPE_NEAREST_NEIGHBOR - static field in class java.awt.image.AffineTransformOp
TYPE_PRINTER - static field in class java.awt.GraphicsDevice
Device is a printer.
TYPE_QUADRANT_ROTATION - static field in class java.awt.geom.AffineTransform
The transformation includes a rotation of a multiple of 90 degrees (PI/2 radians).
TYPE_RASTER_SCREEN - static field in class java.awt.GraphicsDevice
Device is a raster screen.
TYPE_RGB - static field in class java.awt.color.ColorSpace
TYPE_SCROLL_INSENSITIVE - static field in class java.sql.ResultSet
This type of result set is scrollable and is not sensitive to changes made by other statements.
TYPE_SCROLL_SENSITIVE - static field in class java.sql.ResultSet
This type of result set is scrollable and is also sensitive to changes made by other statements.
TYPE_SHORT - static field in class java.awt.image.DataBuffer
A constant representing a data type that uses short primitives as the storage unit.
TYPE_TRANSLATION - static field in class java.awt.geom.AffineTransform
The transformation includes a translation - shifting in the x or y direction without changing length or angles.
TYPE_UNDEFINED - static field in class java.awt.image.DataBuffer
A constant representing an undefined data type.
TYPE_UNIFORM_SCALE - static field in class java.awt.geom.AffineTransform
The transformation includes a uniform scale - length is scaled in both the x and y directions by the same amount, without affecting angles.
TYPE_USHORT - static field in class java.awt.image.DataBuffer
A constant representing a data type that uses short primitives as the storage unit.
TYPE_USHORT_555_RGB - static field in class java.awt.image.BufferedImage
TYPE_USHORT_565_RGB - static field in class java.awt.image.BufferedImage
TYPE_USHORT_GRAY - static field in class java.awt.image.BufferedImage
TYPE_XYZ - static field in class java.awt.color.ColorSpace
TYPE_YCbCr - static field in class java.awt.color.ColorSpace
TYPE_Yxy - static field in class java.awt.color.ColorSpace
TypeCode - class org.omg.CORBA.TypeCode
An information about a CORBA data type.
TypeCodeHolder - class org.omg.CORBA.TypeCodeHolder
A holder for CORBA TypeCode that is mapped into java TypeCode.
TypeCodeHolder() - constructor for class org.omg.CORBA.TypeCodeHolder
Constructs an instance of TypeCodeHolder, initializing value to null.
TypeCodeHolder(org.omg.CORBA.TypeCode) - constructor for class org.omg.CORBA.TypeCodeHolder
Constructs an instance of TypeCodeHolder, initializing value to the given TypeCode.
TypeInfo - interface org.w3c.dom.TypeInfo
The TypeInfo interface represents a type referenced from Element or Attr nodes, specified in the schemas associated with the document.
TypeInfoProvider - class javax.xml.validation.TypeInfoProvider
Provides access to the PSVI type info supplied by ValidatorHandler.
TypeInfoProvider() - constructor for class javax.xml.validation.TypeInfoProvider
The basic constructor.
TypeMismatch - exception org.omg.CORBA.DynAnyPackage.TypeMismatch
This exception is thrown by dynamic any accessor methods when type of the actual contents do not match what is trying to be accessed.
TypeMismatch - exception org.omg.DynamicAny.DynAnyPackage.TypeMismatch
Raised when the operation cannot be performed because the involved data structure has the mismatching typecode.
TypeMismatch - exception org.omg.IOP.CodecPackage.TypeMismatch
The TypeMismatch may be thrown by various methods in org.omg.DynamicAny package when the operation is not applicable due unexpected TypeCode.
TypeMismatch() - constructor for class org.omg.CORBA.DynAnyPackage.TypeMismatch
Creates TypeMismatch without explaining message.
TypeMismatch() - constructor for class org.omg.DynamicAny.DynAnyPackage.TypeMismatch
Create TypeMismatch with no explaining message.
TypeMismatch() - constructor for class org.omg.IOP.CodecPackage.TypeMismatch
Create TypeMismatch with no explaining message.
TypeMismatch(java.lang.String) - constructor for class org.omg.CORBA.DynAnyPackage.TypeMismatch
Created TypeMismatch exception, providing the explaining message.
TypeMismatch(java.lang.String) - constructor for class org.omg.DynamicAny.DynAnyPackage.TypeMismatch
Create the TypeMismatch with explaining message.
TypeMismatch(java.lang.String) - constructor for class org.omg.IOP.CodecPackage.TypeMismatch
Create the TypeMismatch with explaining message.
TypeMismatchHelper - class org.omg.DynamicAny.DynAnyPackage.TypeMismatchHelper
The helper operations for the exception TypeMismatch.
TypeMismatchHelper - class org.omg.IOP.CodecPackage.TypeMismatchHelper
The helper operations for the exception TypeMismatch.
typeName() - method in class java.lang.TypeNotPresentException
Returns the name of the missing type.
typeNoNulls - static field in class java.sql.DatabaseMetaData
A NULL value is not allowed for this data type.
Thrown when a type is accessed using a String-based representation, but no definition of the supplied type is found.
Constructs a TypeNotPresentException for the supplied type.
typeNullable - static field in class java.sql.DatabaseMetaData
A NULL value is allowed for this data type.
typeNullableUnknown - static field in class java.sql.DatabaseMetaData
It is unknown whether or not NULL values are allowed for this data type.
typePredBasic - static field in class java.sql.DatabaseMetaData
All WHERE clauses except "WHERE..LIKE" style are allowed on this data type.
typePredChar - static field in class java.sql.DatabaseMetaData
Only "WHERE..LIKE" style WHERE clauses are allowed on this data type.
typePredNone - static field in class java.sql.DatabaseMetaData
Where clauses are not supported for this type.
Types - class java.sql.Types
This class contains constants that are used to identify SQL data types.
typeSearchable - static field in class java.sql.DatabaseMetaData
Any type of WHERE clause is allowed for this data type.
This is a common interface for all type variables provided by the Java language.