Index
A
B
C
- CDATASection interface DOM CDATA text section.
- CSVException class Exception raised when CSV data is syntactically invalid or when a dialect
cannot represent a requested value.
- CSVException.CSVException constructor Creates a CSV exception.
- CSVReader class RFC-4180 style CSV reader inspired by Python's `csv.
- CSVReader.CSVReader constructor Reads and parses a CSV file.
- CSVReader.CSVReader constructor Reads and parses all remaining text from a `TextReader`.
- CSVReader.CSVReader constructor Reads and parses a CSV file.
- CSVReader.count method Counts rows equal to `item`.
- CSVReader.join method Joins row textual representations with a separator.
- CSVReader.operator in method Returns true when `item` is one of the parsed rows.
- CSVReader.operator[] method Returns one parsed row.
- CSVReader.readRow method Returns one parsed row.
- CSVReader.readRows method Returns the parsed rows.
- CSVReader.rows method Alias for `readRows()`, useful when mirroring Python examples.
- CSVReader.size property Number of parsed rows.
- CSVReader.skip method Skips the next parsed rows.
- CSVWriter class CSV writer inspired by Python's `csv.
- CSVWriter.CSVWriter constructor Creates a buffered CSV writer.
- CSVWriter.CSVWriter constructor Creates a CSV writer on an existing text writer.
- CSVWriter.CSVWriter constructor Creates a CSV writer backed by a file name.
- CSVWriter.CSVWriter constructor Creates a CSV writer backed by a file path.
- CSVWriter.close method Closes the underlying writer when one was provided.
- CSVWriter.toString method Returns the generated CSV text.
- CSVWriter.writeRow method Writes one CSV record.
- CSVWriter.writeRows method Writes all records from an ordered row list.
- CallableStatement interface Stored-procedure statement contract.
- CallableStatement.getBoolean method Reads one output parameter as `Boolean`.
- CallableStatement.getDouble method Reads one output parameter as `Double`.
- CallableStatement.getInt method Reads one output parameter as `Int`.
- CallableStatement.getLong method Reads one output parameter as `Long`.
- CallableStatement.getObject method Reads one output parameter as an object.
- CallableStatement.getString method Reads one output parameter as text.
- CallableStatement.out method Declares one output parameter.
- CallableStatement.outParameters property Declared output parameters (`index -> sqlType`).
- CallableStatement.outValues property Output values produced by the driver.
- CallableStatement.registerOutParameter method Compatibility alias of `out(.
- CallableStatement.wasNull method True when the last `getXxx(.
- Canvas class Base class for custom drawing widgets.
- Canvas.Canvas constructor Creates an expansive non-focusable drawing widget.
- CellAddress class One-based XLSX cell address.
- CellAddress.CellAddress constructor Creates an address from one-based row and column indexes.
- CellAddress.CellAddress constructor Parses an A1 cell reference.
- CellAddress.column property One-based column index.
- CellAddress.columnIndex method Converts Excel column letters to a one-based index.
- CellAddress.columnName method Converts a one-based column index to Excel letters.
- CellAddress.parse method Parses an A1 cell reference.
- CellAddress.row property One-based row index.
- CellAddress.toString method Renders the address in normalized A1 notation.
- Char class Represents a single Unicode character value.
- Char.Char constructor Builds the neutral Char value (`'\0'`).
- Char.Char constructor Creates a Char from a signed integer code point.
- Char.Char constructor Creates a Char from an unsigned integer code point.
- Char.Char constructor Creates a Char from a signed long code point.
- Char.Char constructor Creates a Char from an unsigned long code point.
- Char.Char constructor Creates a Char from another Char value.
- Char.toInt method Returns the Unicode code point of this character.
- Char.toLower method Converts a character to lowercase when a lowercase mapping exists.
- Char.toUpper method Converts a character to uppercase when an uppercase mapping exists.
- CharacterData interface Base interface for textual DOM nodes.
- CharacterData.appendData method Appends text to this node.
- CharacterData.data property Textual content carried by this character data node.
- CharacterData.deleteData method Deletes a range of text.
- CharacterData.insertData method Inserts text at the given offset.
- CharacterData.length property Number of characters in the data property.
- CharacterData.replaceData method Replaces a range of text.
- CharacterData.substringData method Returns a substring of the node data.
- Chart class XLSX chart definition.
- Chart.Chart constructor Creates a chart from an option map.
- Chart._getChartIndex method
- Chart._setChartIndex method
- Chart.addSeries method Adds a data series.
- Chart.type property Chart type.
- CheckBox class Check box widget.
- CheckBox.CheckBox constructor
- CheckBox.checkedValue method Returns `1` when checked, otherwise `0`.
- CheckBox.click method Toggles the checked state and emits `stateChanged`.
- CheckBox.isChecked property
- CheckBox.paint method Paints the check box using the active KSS colors.
- CheckBox.stateChanged field
- Cipher class High-level encryption facade.
- Cipher.aesCbcDecrypt method Convenience AES-CBC decryption helper.
- Cipher.aesCbcEncrypt method Convenience AES-CBC encryption helper.
- Cipher.aesCtrDecrypt method Convenience AES-CTR decryption helper.
- Cipher.aesCtrEncrypt method Convenience AES-CTR encryption helper.
- Cipher.aesDecrypt method Decrypts an AES payload produced by `aesEncrypt`.
- Cipher.aesEncrypt method Encrypts text with AES.
- Cipher.aesGcmDecrypt method Convenience AES-GCM decryption helper.
- Cipher.aesGcmEncrypt method Convenience AES-GCM encryption helper.
- Cipher.rsaDecrypt method Decrypts RSA ciphertext with a private key.
- Cipher.rsaEncrypt method Encrypts text with an RSA public key.
- ClassCastException class Exception raised when an explicit cast cannot be performed at runtime.
- ClassCastException.ClassCastException constructor Creates a class cast exception.
- ClassLoader class Class loader abstraction.
- ClassLoader.forName method Loads a class by its fully qualified name using the system loader.
- ClassLoader.getSystem method Returns the runtime system class loader.
- ClassLoader.getTypeByName method Resolves a type by name using the runtime facilities.
- ClassLoader.loadClass method Loads a class by name and returns its Type.
- ClassLoader.loadPackage method Loads a package by name (if supported by the runtime).
- ClassLoader.system property Returns the system class loader of the current runtime.
- ClassNotFoundException class Exception raised when the compiler or runtime class loader cannot resolve a
requested class.
- ClassNotFoundException.ClassNotFoundException constructor Creates a class-not-found exception.
- CodeHighlighter class Generic line-oriented highlighter for C-like languages.
- CodeHighlighter.CodeHighlighter constructor
- CodeHighlighter.highlight method
- Collection interface A collection of elements.
- Collection.add method Adds an element to the collection.
- Collection.count method Counts occurrences of the specified element in the collection.
- Collection.operator in method Determines whether the collection contains the specified element.
- Collection.remove method Removes the first occurrence of the specified element from the collection.
- Collection.toString method Returns a string representation of the collection.
- Color class RGBA color used by `Painter`, `Pen` and `Brush`.
- Color.Color constructor
- Color.alpha property Alpha channel in `[0.
- Color.black method Returns an opaque black color.
- Color.blue property Blue channel in `[0, 255]`.
- Color.clone method Creates a copy of the color.
- Color.darker method Returns a darker variant of this color.
- Color.fromHex method Parses a `#RRGGBB` or `#RRGGBBAA` color literal.
- Color.green property Green channel in `[0, 255]`.
- Color.lighter method Returns a lighter variant of this color.
- Color.mix method Mixes this color with another one.
- Color.parse method Parses a CSS-like color value.
- Color.red property Red channel in `[0, 255]`.
- Color.toCssColor method Serializes the color into a CSS-compatible `rgba(.
- Color.toString method
- Color.transparent method Returns a fully transparent black color.
- Color.white method Returns an opaque white color.
- Color.withAlpha method Returns the same RGB color with another alpha channel.
- Column annotation Spécifie le nom de la colonne pour un champ.
- ComboBox class Single-line terminal combo box.
- ComboBox class Themed drop-down selection field.
- ComboBox.ComboBox constructor
- ComboBox.ComboBox constructor
- ComboBox.addItem method Appends a new selectable item.
- ComboBox.arrowAreaWidth property Width reserved for the drop-down indicator.
- ComboBox.bgFocus property
- ComboBox.bgNormal property
- ComboBox.clearItems method Removes all items and clears the current selection.
- ComboBox.clearSelection method Clears the current selection.
- ComboBox.collapse method Collapses the drop-down indicator.
- ComboBox.expand method Marks the drop-down indicator as expanded.
- ComboBox.fgFocus property
- ComboBox.fgNormal property
- ComboBox.focusable property
- ComboBox.focused property
- ComboBox.handleEvent method
- ComboBox.handleMouseEvent method
- ComboBox.id property
- ComboBox.isExpanded property Visual expanded state used by future native popups.
- ComboBox.items method Returns the current item storage.
- ComboBox.label property
- ComboBox.labelWidth property
- ComboBox.options property
- ComboBox.paddingX property Horizontal text padding.
- ComboBox.paint method Paints the combo box with the active KSS style.
- ComboBox.paintToFrame method
- ComboBox.placeholder property Placeholder text displayed when nothing is selected.
- ComboBox.select method Selects an item by index.
- ComboBox.selectNext method
- ComboBox.selectPrevious method
- ComboBox.selectValue method
- ComboBox.selectedIndex property
- ComboBox.selectedIndex property Currently selected item index, `-1` when there is no selection.
- ComboBox.selectedItem property Selected item text, or an empty string when nothing is selected.
- ComboBox.selectedValue property
- ComboBox.selectionChanged field
- ComboBox.setItems method Replaces the current content with the provided items.
- ComboBox.size property Number of available items.
- ComboBox.text property Selected item text, or an empty string when nothing is selected.
- ComboBox.toggleExpanded method Toggles the expanded indicator state.
- Comment interface DOM comment node.
- Complex class Represents a complex number with real and imaginary parts.
- Complex.Complex constructor Constructor for Complex class.
- Complex.conjugate method Returns the conjugate of the complex number.
- Complex.imag property The imaginary part of the complex number.
- Complex.magnitude method Returns the magnitude (or absolute value) of the complex number.
- Complex.operator* method Multiplication operator for Complex numbers.
- Complex.operator+ method Addition operator for Complex numbers.
- Complex.operator+ method Addition operator between a complex number and a scalar value.
- Complex.operator+ method Addition operator between a scalar value and a complex number.
- Complex.operator- method Subtraction operator for Complex numbers.
- Complex.operator- method Subtraction operator between a complex number and a scalar value.
- Complex.operator- method Subtraction operator between a scalar value and a complex number.
- Complex.operator/ method Division operator for Complex numbers.
- Complex.phase method Returns the phase (or angle) of the complex number in radians.
- Complex.real property The real part of the complex number.
- Complex.toString method Returns a string representation of the complex number.
- Component annotation Annotation used to mark classes as components that can be managed by the dependency injection context.
- Component.name property The name of the component.
- Component.singleton property Specifies whether the component is a singleton.
- ConfirmDialog class Confirm/cancel modal dialog.
- ConfirmDialog.ConfirmDialog constructor
- ConfirmDialog.cancelLabel field
- ConfirmDialog.message field
- ConfirmDialog.okLabel field
- ConnectException class Raised when connecting a client socket fails.
- ConnectException.ConnectException constructor Creates a connection exception.
- Connection interface SQL connection contract.
- Connection.autoCommit property True when each statement is committed immediately.
- Connection.callable method Prepares one stored-procedure call.
- Connection.catalog property Current catalog when supported by the driver.
- Connection.clearWarnings method Clears the warning chain.
- Connection.clientInfo property Mutable client-info map.
- Connection.closed property True when the connection has been closed.
- Connection.commit method Commits the current transaction.
- Connection.connected property True when the connection has been opened.
- Connection.createStatement method Compatibility alias of `statement(.
- Connection.holdability property Current result-set holdability.
- Connection.isValid method Returns true when the connection is still usable.
- Connection.metadata property Database metadata facade.
- Connection.nativeSql method Converts generic SQL to the driver-native dialect.
- Connection.networkTimeoutMillis property Network timeout in milliseconds.
- Connection.prepareCall method Compatibility alias of `callable(.
- Connection.prepareStatement method Compatibility alias of `prepared(.
- Connection.prepared method Prepares one SQL statement.
- Connection.readOnly property True when the connection is read-only.
- Connection.releaseSavepoint method Releases one savepoint.
- Connection.rollback method Rolls back the current transaction or one savepoint.
- Connection.savepoint method Creates a savepoint descriptor.
- Connection.schema property Current schema when supported by the driver.
- Connection.sslContext property Optional TLS context used by the underlying secure transport.
- Connection.statement method Creates a statement with optional cursor settings.
- Connection.transactionIsolation property Current transaction isolation level.
- Connection.url property Effective connection URL.
- Connection.userName property Effective user name.
- Connection.warning property Current warning chain.
- Constructor class Class representing a constructor.
- Constructor.Constructor constructor Constructor for Constructor
- Constructor.annotations property Constructor annotations
- Constructor.flags property Raw modifier flags
- Constructor.invoke method Invokes the constructor with arguments.
- Constructor.isAccessible property Accessibility flag for private constructor access.
- Constructor.isPrivate property
- Constructor.name property Name for Invocable interface
- Constructor.operator call method Direct call operator.
- Constructor.parameterCount property Parameter count for Invocable interface
- Constructor.parameters property Parameters of the constructor
- Constructor.returnType property Return type for Invocable interface (the constructed type)
- Container class A container stores child widgets and optionally owns a layout.
- Container.Container constructor
- Container.Container constructor
- Container.add method
- Container.applyLayout method Applies the current layout and optionally recurses into child containers.
- Container.attachWindow method Propagates the owning window through the full subtree.
- Container.autoRelayout property Enables automatic relayout when children are added or removed.
- Container.children method
- Container.clear method
- Container.layout property Layout manager associated with this container.
- Container.operator[] method
- Container.padding property Inner padding expressed as `(left, top, right, bottom)`.
- Container.paint method Paints child widgets in insertion order.
- Container.remove method
- Container.setBounds method
- Container.size property Number of child widgets.
- Container.withLayout method Creates a container already configured with a layout.
- ContentHandler interface Handler for logical XML document content.
- ContentHandler.characters method Receives character data.
- ContentHandler.declaration method Receives the XML declaration pseudo-attributes.
- ContentHandler.endDocument method Receives the end of a document.
- ContentHandler.endElement method Receives the end of an element.
- ContentHandler.endPrefixMapping method Ends a prefix-to-Namespace mapping scope.
- ContentHandler.ignorableWhitespace method Receives ignorable whitespace in element content.
- ContentHandler.processingInstruction method Receives a processing instruction.
- ContentHandler.setDocumentLocator method Receives the locator used for later document events.
- ContentHandler.skippedEntity method Receives notification of a skipped entity.
- ContentHandler.startDocument method Receives the beginning of a document.
- ContentHandler.startElement method Receives the beginning of an element.
- ContentHandler.startPrefixMapping method Begins a prefix-to-Namespace mapping scope.
- CppHighlighter class Syntax highlighter for C/C++ sources.
- CppHighlighter.CppHighlighter constructor
- CppHighlighter.highlight method
- CryptoException class Exception raised when a cryptographic operation cannot be completed.
- CryptoException.CryptoException constructor Creates a new cryptography exception.
- CsHighlighter class Syntax highlighter for C# sources.
- CsHighlighter.CsHighlighter constructor
- CsHighlighter.highlight method
- CssHighlighter class Syntax highlighter for CSS sources.
- CssHighlighter.CssHighlighter constructor
- CssHighlighter.highlight method
D
- DIContext class Minimal dependency injection context.
- DIContext.DIContext constructor Creates an empty dependency injection context.
- DIContext.getComponent method Returns a registered component by name.
- DIContext.registerComponent method Registers a component instance under a name.
- DIContext.scanAnnotations method Scans annotations and registers discovered components.
- DOMConfiguration interface DOM parser/serializer configuration surface.
- DOMConfiguration.canSetParameter method Indicates whether a parameter can be set to a value.
- DOMConfiguration.getParameter method Returns a configuration parameter.
- DOMConfiguration.parameterNames property Supported parameter names.
- DOMConfiguration.setParameter method Sets a configuration parameter.
- DOMError interface DOM processing error.
- DOMError.SEVERITY_ERROR field
- DOMError.SEVERITY_FATAL_ERROR field
- DOMError.SEVERITY_WARNING field Severity constants for DOM processing errors.
- DOMError.location property Location associated with the error, when known.
- DOMError.message property Human-readable error message.
- DOMError.relatedData property Related data object, when any.
- DOMError.relatedException property Related exception object, when any.
- DOMError.severity property Error severity.
- DOMError.type property Implementation-defined error type.
- DOMErrorHandler interface DOM error callback.
- DOMErrorHandler.handleError method Handles a DOM error.
- DOMException class DOM operation error.
- DOMException.DOMException constructor Creates a DOM exception.
- DOMException.DOMSTRING_SIZE_ERR field
- DOMException.HIERARCHY_REQUEST_ERR field
- DOMException.INDEX_SIZE_ERR field DOMException error code constants.
- DOMException.INUSE_ATTRIBUTE_ERR field
- DOMException.INVALID_ACCESS_ERR field
- DOMException.INVALID_CHARACTER_ERR field
- DOMException.INVALID_MODIFICATION_ERR field
- DOMException.INVALID_STATE_ERR field
- DOMException.NAMESPACE_ERR field
- DOMException.NOT_FOUND_ERR field
- DOMException.NOT_SUPPORTED_ERR field
- DOMException.NO_DATA_ALLOWED_ERR field
- DOMException.NO_MODIFICATION_ALLOWED_ERR field
- DOMException.SYNTAX_ERR field
- DOMException.TYPE_MISMATCH_ERR field
- DOMException.VALIDATION_ERR field
- DOMException.WRONG_DOCUMENT_ERR field
- DOMException.code property Numeric DOM exception code.
- DOMImplementation interface Factory and feature discovery interface for DOM implementations.
- DOMImplementation.createDocument method Creates a document with an optional document type and root element.
- DOMImplementation.createDocumentType method Creates a document type node.
- DOMImplementation.getFeature method Returns a specialized feature object when available.
- DOMImplementation.hasFeature method Indicates whether this implementation supports a DOM feature.
- DOMImplementationList interface Read-only list of DOM implementations.
- DOMImplementationList.item method Returns an implementation by index, or null.
- DOMImplementationList.length property Number of implementations in the list.
- DOMImplementationSource interface Provider of DOM implementations.
- DOMImplementationSource.getDOMImplementation method Returns an implementation supporting the requested features.
- DOMImplementationSource.getDOMImplementationList method Returns all implementations supporting the requested features.
- DOMLocator interface Location metadata for DOM errors.
- DOMLocator.byteOffset property Byte offset, or -1 when unknown.
- DOMLocator.columnNumber property One-based column number, or -1 when unknown.
- DOMLocator.lineNumber property One-based line number, or -1 when unknown.
- DOMLocator.relatedNode property Related node, when known.
- DOMLocator.uri property URI associated with the location.
- DOMLocator.utf16Offset property UTF-16 offset, or -1 when unknown.
- DOMParser class DOM parser that reads XML into the pure Klyn `XMLDocument` implementation.
- DOMParser.DOMParser constructor Creates a DOM parser.
- DOMParser.parse method Parses XML from a SAX input source.
- DOMParser.parseFromFile method Parses XML from a file path.
- DOMParser.parseFromFile method Parses XML from a FilePath.
- DOMParser.parseFromString method Parses XML from a string.
- DOMStringList interface Read-only list of DOM strings.
- DOMStringList.contains method Indicates whether the list contains a string.
- DOMStringList.item method Returns a string by index, or null when out of range.
- DOMStringList.length property Number of strings in the list.
- DOMXPathEvaluator class Pure Klyn DOM XPath evaluator.
- DOMXPathEvaluator.DOMXPathEvaluator constructor Creates an XPath evaluator.
- DOMXPathEvaluator.createExpression method Compiles an XPath expression.
- DOMXPathEvaluator.createNSResolver method Creates a namespace resolver backed by a DOM node.
- DOMXPathEvaluator.evaluate method Evaluates an XPath expression.
- DOMXPathEvaluator.selectNodes method Evaluates an XPath expression and returns the matching nodes as a DOM
`NodeList`.
- DOMXPathEvaluator.selectSingleNode method Evaluates an XPath expression and returns its first matching node.
- DOMXPathExpression class Compiled pure Klyn XPath expression.
- DOMXPathExpression.DOMXPathExpression constructor Compiles an XPath expression.
- DOMXPathExpression.evaluate method Evaluates this compiled expression against a context node.
- DOMXPathNSResolver class Namespace resolver backed by a DOM node.
- DOMXPathNSResolver.DOMXPathNSResolver constructor Creates a resolver relative to a DOM node.
- DOMXPathNSResolver.lookupNamespaceURI method Resolves a namespace prefix.
- DOMXPathResult class Pure Klyn implementation of the DOM `XPathResult` contract.
- DOMXPathResult.DOMXPathResult constructor Creates an empty `ANY_TYPE` result.
- DOMXPathResult.booleanValue property Boolean result value.
- DOMXPathResult.fromBoolean method Builds a result from a boolean value.
- DOMXPathResult.fromNodeSet method Builds a result from a node set.
- DOMXPathResult.fromNumber method Builds a result from a numeric value.
- DOMXPathResult.fromString method Builds a result from a string value.
- DOMXPathResult.invalidIteratorState property Iterator invalidation state.
- DOMXPathResult.iterateNext method Returns the next node from an iterator result.
- DOMXPathResult.nodeStringValue method
- DOMXPathResult.numberValue property Numeric result value.
- DOMXPathResult.resultType property Actual result type.
- DOMXPathResult.singleNodeValue property Single node result value.
- DOMXPathResult.snapshotItem method Returns one node from a snapshot result.
- DOMXPathResult.snapshotLength property Number of nodes in a snapshot result.
- DOMXPathResult.stringValue property String result value.
- DTDHandler interface Handler for basic DTD declaration events.
- DTDHandler.notationDecl method Receives a notation declaration.
- DTDHandler.unparsedEntityDecl method Receives an unparsed entity declaration.
- DataTruncation class Warning raised when data is truncated during read or write.
- DataTruncation.DataTruncation constructor Creates a data truncation warning.
- DataTruncation.dataSize property Original value size.
- DataTruncation.index property Column or parameter index.
- DataTruncation.parameter property True when the truncation happened on a parameter write.
- DataTruncation.read property True when the truncation happened on a read operation.
- DataTruncation.transferSize property Transferred value size.
- DatabaseConfig class Configuration de la connexion à la base de données.
- DatabaseConfig.DatabaseConfig constructor
- DatabaseConfig.buildConnectionString method
- DatabaseConfig.database property
- DatabaseConfig.driver property
- DatabaseConfig.host property
- DatabaseConfig.mapping2ddl property
- DatabaseConfig.password property
- DatabaseConfig.poolSize property
- DatabaseConfig.port property
- DatabaseConfig.showSql property
- DatabaseConfig.username property
- DatabaseMetaData interface Database capability and catalog metadata contract.
- DatabaseMetaData.catalogs method Returns visible catalogs.
- DatabaseMetaData.columns method Returns metadata about visible columns.
- DatabaseMetaData.connection property Owning connection.
- DatabaseMetaData.driverName property Driver name.
- DatabaseMetaData.driverVersion property Driver version.
- DatabaseMetaData.exportedKeys method Returns exported-key metadata for one table.
- DatabaseMetaData.functions method Returns function metadata.
- DatabaseMetaData.importedKeys method Returns imported-key metadata for one table.
- DatabaseMetaData.primaryKeys method Returns primary-key metadata for one table.
- DatabaseMetaData.procedures method Returns stored-procedure metadata.
- DatabaseMetaData.productName property Database product name.
- DatabaseMetaData.productVersion property Database product version.
- DatabaseMetaData.readOnly property True when the connection is read-only.
- DatabaseMetaData.schemas method Returns visible schemas.
- DatabaseMetaData.supportsBatchUpdates property True when batch updates are supported.
- DatabaseMetaData.supportsNamedParameters property True when named parameters are supported.
- DatabaseMetaData.supportsPreparedStatements property True when prepared statements are supported.
- DatabaseMetaData.supportsSavepoints property True when savepoints are supported.
- DatabaseMetaData.supportsStoredProcedures property True when stored procedures are supported.
- DatabaseMetaData.supportsTransactions property True when transactions are supported.
- DatabaseMetaData.tableTypes method Returns supported table types.
- DatabaseMetaData.tables method Returns metadata about visible tables.
- DatabaseMetaData.typeInfo method Returns supported SQL type metadata.
- DatabaseMetaData.url property Effective connection URL.
- DatabaseMetaData.userName property Effective user name.
- DateTime class Represents a date and time, including timezone information.
- DateTime.DateTime constructor Constructs a DateTime from a timestamp.
- DateTime.DateTime constructor Constructs a DateTime from an epoch timestamp expressed in seconds.
- DateTime.DateTime constructor Constructs a DateTime from individual date/time components.
- DateTime.DateTime constructor Constructs a DateTime by parsing an ISO 8601 date-time string
(e.
- DateTime.day property Day component.
- DateTime.dayOfWeek property Returns the day of the week (0 = Sunday, 1 = Monday, .
- DateTime.dayOfYear property Returns the day of the year (1.
- DateTime.hour property Hour component.
- DateTime.minute property Minute component.
- DateTime.month property Month component (1.
- DateTime.now property Returns the current date and time.
- DateTime.operator+ method Adds a duration to this DateTime object.
- DateTime.operator- method Subtracts a duration from this DateTime object.
- DateTime.operator- method Subtracts one DateTime object from another.
- DateTime.second property Second component.
- DateTime.timeZone property Timezone of this date/time.
- DateTime.timestamp property Returns the timestamp representation of this DateTime object.
- DateTime.toString method Returns a string representation of this DateTime object using the default locale.
- DateTime.toString method Returns a string representation of this DateTime object using a specific locale.
- DateTime.totalSeconds property
- DateTime.usecond property Microsecond component.
- DateTime.year property Year component.
- DeckPane class Stack of views where one card is active.
- DeckPane.DeckPane constructor
- DeckPane.activeKey property
- DeckPane.activeView method
- DeckPane.addCard method
- DeckPane.hasCard method
- DeckPane.paint method
- DeckPane.showCard method
- DeclHandler interface SAX2 extension handler for DTD declaration events.
- DeclHandler.attributeDecl method Reports an attribute declaration.
- DeclHandler.elementDecl method Reports an element type declaration.
- DeclHandler.externalEntityDecl method Reports an external entity declaration.
- DeclHandler.internalEntityDecl method Reports an internal entity declaration.
- DefaultHandler class No-op SAX handler covering the common SAX callback interfaces.
- DefaultHandler.DefaultHandler constructor Creates a no-op handler.
- DefaultHandler.characters method Receives character data.
- DefaultHandler.declaration method Receives the XML declaration pseudo-attributes.
- DefaultHandler.endDocument method Receives the end of a document.
- DefaultHandler.endElement method Receives the end of an element.
- DefaultHandler.endPrefixMapping method Receives the end of a Namespace prefix scope.
- DefaultHandler.error method Receives a recoverable error.
- DefaultHandler.fatalError method Receives a fatal error.
- DefaultHandler.ignorableWhitespace method Receives ignorable whitespace.
- DefaultHandler.notationDecl method Receives notation declarations.
- DefaultHandler.processingInstruction method Receives a processing instruction.
- DefaultHandler.resolveEntity method Resolves an external entity.
- DefaultHandler.setDocumentLocator method Receives the parser locator.
- DefaultHandler.skippedEntity method Receives notification of a skipped entity.
- DefaultHandler.startDocument method Receives the beginning of a document.
- DefaultHandler.startElement method Receives the beginning of an element.
- DefaultHandler.startPrefixMapping method Receives the beginning of a Namespace prefix scope.
- DefaultHandler.unparsedEntityDecl method Receives unparsed entity declarations.
- DefaultHandler.warning method Receives a recoverable warning.
- DefaultHandler2 class No-op SAX handler covering the SAX extension callbacks.
- DefaultHandler2.DefaultHandler2 constructor Creates a no-op extension handler.
- DefaultHandler2.attributeDecl method Receives an attribute declaration from the DTD.
- DefaultHandler2.comment method Receives an XML comment.
- DefaultHandler2.declaration method Receives the XML declaration pseudo-attributes.
- DefaultHandler2.elementDecl method Receives an element declaration from the DTD.
- DefaultHandler2.endCDATA method Receives the end of a CDATA section.
- DefaultHandler2.endDTD method Receives the end of a DTD declaration.
- DefaultHandler2.endEntity method Receives the end of an entity.
- DefaultHandler2.externalEntityDecl method Receives an external entity declaration.
- DefaultHandler2.getExternalSubset method Provides an external subset.
- DefaultHandler2.internalEntityDecl method Receives an internal entity declaration.
- DefaultHandler2.resolveEntity method Resolves an external entity using SAX1 metadata.
- DefaultHandler2.resolveEntity method Resolves an external entity using SAX2 metadata.
- DefaultHandler2.startCDATA method Receives the beginning of a CDATA section.
- DefaultHandler2.startDTD method Receives the beginning of a DTD declaration.
- DefaultHandler2.startEntity method Receives the beginning of an entity.
- Deprecated annotation Marks a declaration as deprecated.
- DestroyMethod annotation Marks a method that must be called when a managed component is destroyed.
- Dialog class Base modal dialog.
- Dialog class Base dialog window.
- Dialog.Dialog constructor
- Dialog.Dialog constructor
- Dialog.close method
- Dialog.onAccept field
- Dialog.onCancel field
- Dialog.show method
- Dialog.terminal field
- Dialog.title field
- Digest class Immutable digest result with both hexadecimal and Base64 views.
- Digest.Digest constructor Creates a digest result.
- Digest.algorithm field Canonical digest algorithm name.
- Digest.base64 field Standard Base64 representation.
- Digest.fromMap method
- Digest.hex field Lower-case hexadecimal representation.
- Digest.sizeBits property Digest size in bits.
- Digest.sizeBytes property Digest size in bytes.
- Digest.toBytes method Returns the raw digest bytes.
- Digest.toMap method Converts this digest result to a serializable map.
- Digest.toString method
- DivideByZeroException class Compatibility exception raised when an operation explicitly reports a
division by zero.
- DivideByZeroException.DivideByZeroException constructor Creates a division-by-zero exception.
- DockLayout class Dock layout.
- DockLayout.DockLayout constructor
- DockLayout.add method Adds a widget on a dock side.
- DockLayout.layout method
- DockLayout.spacing property
- DockLayoutParams class Layout hints for `DockLayout`.
- DockLayoutParams.DockLayoutParams constructor
- DockLayoutParams.DockLayoutParams constructor
- DockLayoutParams.side property Dock side.
- DockedPane class Docked pane descriptor.
- DockedPane.DockedPane constructor
- DockedPane.key field
- DockedPane.side field
- DockedPane.titles field
- DockedPane.view field
- DockedPane.visible field
- DockedSide class Docking side enumeration.
- DockedSide.BOTTOM property
- DockedSide.LEFT property
- DockedSide.RIGHT property
- DockedSide.TOP property
- DockedSide.toString method
- Document interface DOM document node.
- Document.adoptNode method Adopts a node into this document.
- Document.createAttribute method Creates an attribute node.
- Document.createAttributeNS method Creates a namespace-aware attribute.
- Document.createCDATASection method Creates a CDATA section node.
- Document.createComment method Creates a comment node.
- Document.createDocumentFragment method Creates a document fragment.
- Document.createElement method Creates an element with the given tag name.
- Document.createElementNS method Creates a namespace-aware element.
- Document.createEntityReference method Creates an entity reference node.
- Document.createProcessingInstruction method Creates a processing instruction node.
- Document.createTextNode method Creates a text node.
- Document.doctype property Document type declaration associated with this document.
- Document.documentElement property Root element of the document.
- Document.documentURI property Document URI.
- Document.domConfig property DOM configuration object used by normalizeDocument.
- Document.getElementById method Returns the element marked with the given identifier.
- Document.getElementsByTagName method Returns descendant elements matching the tag name.
- Document.getElementsByTagNameNS method Returns descendant elements matching namespace URI and local name.
- Document.implementation property DOM implementation that created this document.
- Document.importNode method Imports a node into this document.
- Document.inputEncoding property Input character encoding, when known.
- Document.normalizeDocument method Normalizes this document according to its DOM configuration.
- Document.renameNode method Renames a node.
- Document.strictErrorChecking property Enables or disables strict DOM error checking.
- Document.xmlEncoding property XML encoding, when known.
- Document.xmlStandalone property XML standalone flag.
- Document.xmlVersion property XML version string.
- DocumentFragment interface Lightweight container for a DOM subtree.
- DocumentHandler interface Deprecated SAX1 document event handler.
- DocumentHandler.characters method Receives character data.
- DocumentHandler.endDocument method Receives the end of a document.
- DocumentHandler.endElement method Receives the end of an element.
- DocumentHandler.ignorableWhitespace method Receives ignorable whitespace in element content.
- DocumentHandler.processingInstruction method Receives a processing instruction.
- DocumentHandler.setDocumentLocator method Receives the locator used for later document events.
- DocumentHandler.startDocument method Receives the beginning of a document.
- DocumentHandler.startElement method Receives the beginning of an element.
- DocumentType interface DOM document type declaration.
- DocumentType.entities property Entity declarations exposed by this document type.
- DocumentType.internalSubset property Internal subset text.
- DocumentType.name property Document type name.
- DocumentType.notations property Notation declarations exposed by this document type.
- DocumentType.publicId property Public identifier for this document type.
- DocumentType.systemId property System identifier for this document type.
- DomDocument class Compatibility DOM document class returned by `DOMParser`.
- DomDocument.DomDocument constructor Creates an empty parser document.
- DomDocument.createElement method Creates a DOM parser element without a namespace.
- DomDocument.createElementNS method Creates a DOM parser element with an optional namespace.
- DomDocument.documentElement property Root element of the parsed document.
- DomDocument.getElementsByTagName method Returns document descendant elements matching a tag name.
- DomDocument.getElementsByTagNameNS method Returns document descendant elements matching a namespace URI and local name.
- DomElement class Compatibility DOM element class returned by `DOMParser`.
- DomElement.DomElement constructor Creates a DOM parser element.
- DomElement.getElementsByTagName method Returns descendant elements matching a tag name.
- DomElement.getElementsByTagNameNS method Returns descendant elements matching a namespace URI and local name.
- DomNodeList class Element list compatible with both Klyn lists and DOM NodeList.
- DomNodeList.DomNodeList constructor Creates an empty DOM element list.
- DomNodeList.add method Adds an element to the DOM node list.
- DomNodeList.item method Returns the node at an index.
- DomNodeList.length property Number of nodes in the list.
- DomParser class Compatibility alias for `DOMParser`.
- DomParser.DomParser constructor Creates a DOM parser.
- Double class Represents a 64-bit IEEE 754 floating-point number.
- Double.Double constructor Builds the neutral Double value (`0.
- Double.Double constructor Builds a Double from a Boolean value.
- Double.Double constructor Builds a Double from an Int value.
- Double.Double constructor Builds a Double from a Float value.
- Double.Double constructor Parses a Double from a textual representation.
- Double.Double constructor Builds a Double from a UInt value.
- Double.Double constructor Builds a Double from a Long value.
- Double.Double constructor Builds a Double from a ULong value.
- Double.Double constructor Copy constructor.
- Double.Double constructor Builds a Double from a character code point.
- Double.operator!= method Tests whether two Double values are different.
- Double.operator% method Computes the floating-point remainder.
- Double.operator%= method Replaces `a` with the floating-point remainder of `a / b`.
- Double.operator* method Multiplies two Double values.
- Double.operator** method Raises a Double value to a Double power.
- Double.operator**= method Replaces `value` with `value ** power`.
- Double.operator*= method Multiplies `a` by `b` in place.
- Double.operator+ method Adds two Double values.
- Double.operator+= method Adds `b` to `a` in place.
- Double.operator- method Subtracts two Double values.
- Double.operator-= method Subtracts `b` from `a` in place.
- Double.operator/ method Divides two Double values.
- Double.operator/= method Divides `a` by `b` in place.
- Double.operator< method Tests whether `a` is strictly lower than `b`.
- Double.operator<= method Tests whether `a` is lower than or equal to `b`.
- Double.operator== method Tests whether two Double values are equal.
- Double.operator> method Tests whether `a` is strictly greater than `b`.
- Double.operator>= method Tests whether `a` is greater than or equal to `b`.
- Double.toString method Converts this value to its textual representation.
- Driver interface SQL driver contract used by DriverManager to resolve connection URLs.
- Driver.name property Human-readable driver name.
- Driver.openConnection method Opens a connection using the supplied URL and properties.
- Driver.supports method Returns true when this driver can open the given URL.
- DriverManager class SQL connection factory.
- DriverManager.Map method Global arbitrary connection properties.
- DriverManager.connect method Opens a connection from a URL and optional properties.
- DriverManager.driverFor method Returns the first registered driver supporting the URL.
- DriverManager.drivers property Registered SQL drivers, in resolution order.
- DriverManager.getConnection method Opens a SQL connection from a database URL and credentials.
- DriverManager.loginTimeoutSeconds field Login timeout applied by driver resolution.
- DriverManager.register method Registers a custom SQL driver at the end of the resolution list.
- Duration class Represents a duration of time.
- Duration.Duration constructor Constructs a Duration object from individual time components.
- Duration.operator* method Multiplies a Duration by a numeric factor.
- Duration.operator+ method Adds two Duration values.
- Duration.operator- method Subtracts two Duration values.
- Duration.toString method Returns a string representation of this Duration.
- Duration.totalSeconds property Returns the total number of seconds in the duration.
E
F
G
H
I
J
K
L
M
- MD5 class MD5 message digest.
- MD5.MD5 constructor
- Mac class Abstract base class for keyed message authentication codes.
- Mac.algorithm field Canonical MAC algorithm name.
- Mac.doFinal method Computes the MAC for the buffered text and an optional final chunk.
- Mac.getInstance method Compatibility factory for dynamic algorithm selection.
- Mac.hashAlgorithm field Canonical digest algorithm name used by this MAC.
- Mac.init method Loads the secret key used to compute the MAC.
- Mac.reset method Clears the buffered text accumulated with `update`.
- Mac.toString method
- Mac.update method Appends text to the in-memory MAC buffer.
- Mac.verify method Verifies a MAC value against the provided message.
- MailSecurity enum SMTP transport security mode.
- MailSupport class Internal helper functions shared by `klyn.
- MailSupport.appendUniqueHeader method
- MailSupport.contentHeaderBlocked method
- MailSupport.dotStuff method
- MailSupport.encodeHeaderText method
- MailSupport.encodePhrase method
- MailSupport.formatDate method
- MailSupport.generateBoundary method
- MailSupport.generateMessageId method
- MailSupport.headerNamesContain method
- MailSupport.isAsciiHeaderSafe method
- MailSupport.joinAddresses method
- MailSupport.normalizeCrlf method
- MailSupport.pad2 method
- MailSupport.quoteParameter method
- MailSupport.require method Performs a mail or SMTP operation.
- MailSupport.sanitizeHeaderValue method
- MailSupport.wrap method
- MainWindow class Main application window.
- MainWindow.MainWindow constructor
- MainWindow.applyLayout method
- MainWindow.centralWidget property
- MainWindow.menuBar property
- MainWindow.paint method Paints the main window background and its central widget tree using the
active KSS theme.
- MainWindow.relayout method
- MainWindow.render method
- MainWindow.setBounds method
- MalformedURLException class Raised when a URL cannot be parsed.
- MalformedURLException.MalformedURLException constructor Creates a malformed-URL exception.
- ManyToOne annotation Définit une relation Many-to-One.
- Map class Balanced binary tree map.
- Map.Map constructor
- Map.clear method Clears all entries.
- Map.containsValue method Returns true if the value exists.
- Map.items method Returns the items as a list of tuples.
- Map.keys method Returns the keys as a list.
- Map.operator in method Returns true if the key exists.
- Map.operator!= method Structural inequality between two maps.
- Map.operator== method Structural equality between two maps.
- Map.operator[] method Gets or sets the value associated with the key.
- Map.remove method Removes an entry.
- Map.size property Number of entries stored in the map.
- Map.toString method Returns a normalized textual representation of map entries.
- Map.values method Returns the values as a list.
- MapCollection interface Base interface for associative collections.
- MapCollection.clear method Clears all entries.
- MapCollection.containsValue method Returns true if the value exists.
- MapCollection.items method Returns the items as a list of tuples.
- MapCollection.keys method Returns the keys as a list.
- MapCollection.operator in method Returns true if the key exists.
- MapCollection.operator[] method Gets or sets the value associated with the key, or null if missing.
- MapCollection.remove method Removes an entry.
- MapCollection.size property Gets the number of entries in the collection.
- MapCollection.values method Returns the values as a list.
- MapSync class Thread-safe balanced binary tree map.
- MapSync.MapSync constructor Creates an empty synchronized map.
- MapSync.MapSync constructor Creates a synchronized map from another map.
- MapSync.MapSync constructor Creates a synchronized map from key-value pairs.
- MapSync.clear method Clears all entries.
- MapSync.containsValue method Returns true if the value exists.
- MapSync.items method Returns the items as a list of tuples.
- MapSync.keys method Returns the keys as a list.
- MapSync.operator in method Returns true if the key exists.
- MapSync.operator[] method Gets or sets the value associated with the key.
- MapSync.remove method Removes an entry.
- MapSync.size property Number of entries stored in the map.
- MapSync.toString method Returns a normalized textual representation of map entries.
- MapSync.values method Returns the values as a list.
- MariaDbCallableStatement class MariaDB callable statement.
- MariaDbCallableStatement.execute method Configures or executes a SQL statement.
- MariaDbCallableStatement.execute method Configures or executes a SQL statement.
- MariaDbCallableStatement.executeQuery method Configures or executes a SQL statement.
- MariaDbCallableStatement.executeUpdate method Configures or executes a SQL statement.
- MariaDbCallableStatement.getBoolean method Configures or executes a SQL statement.
- MariaDbCallableStatement.getDouble method Configures or executes a SQL statement.
- MariaDbCallableStatement.getInt method Configures or executes a SQL statement.
- MariaDbCallableStatement.getLong method Configures or executes a SQL statement.
- MariaDbCallableStatement.getObject method Configures or executes a SQL statement.
- MariaDbCallableStatement.getString method Configures or executes a SQL statement.
- MariaDbCallableStatement.out method Configures or executes a SQL statement.
- MariaDbCallableStatement.outParameters property
- MariaDbCallableStatement.outValues property
- MariaDbCallableStatement.query method Configures or executes a SQL statement.
- MariaDbCallableStatement.query method Configures or executes a SQL statement.
- MariaDbCallableStatement.registerOutParameter method Configures or executes a SQL statement.
- MariaDbCallableStatement.update method Configures or executes a SQL statement.
- MariaDbCallableStatement.update method Configures or executes a SQL statement.
- MariaDbCallableStatement.wasNull method Configures or executes a SQL statement.
- MariaDbConnection class MariaDB SQL connection implementation.
- MariaDbConnection.autoCommit property
- MariaDbConnection.callable method
- MariaDbConnection.catalog property
- MariaDbConnection.clearWarnings method
- MariaDbConnection.clientInfo property
- MariaDbConnection.close method
- MariaDbConnection.closed property
- MariaDbConnection.commit method Performs a database connection operation.
- MariaDbConnection.connect method
- MariaDbConnection.connected property
- MariaDbConnection.createStatement method
- MariaDbConnection.holdability property
- MariaDbConnection.isConnected method Returns true when the connection has a live socket and is not closed.
- MariaDbConnection.isValid method
- MariaDbConnection.metadata property
- MariaDbConnection.nativeSql method
- MariaDbConnection.networkTimeoutMillis property
- MariaDbConnection.open method Opens a MariaDB connection from a URL and optional properties.
- MariaDbConnection.prepareCall method
- MariaDbConnection.prepareStatement method
- MariaDbConnection.prepared method
- MariaDbConnection.readOnly property
- MariaDbConnection.releaseSavepoint method Performs a database connection operation.
- MariaDbConnection.rollback method Performs a database connection operation.
- MariaDbConnection.savepoint method Performs a database connection operation.
- MariaDbConnection.schema property
- MariaDbConnection.serverVersion property
- MariaDbConnection.sslContext property
- MariaDbConnection.statement method
- MariaDbConnection.transactionIsolation property
- MariaDbConnection.url property
- MariaDbConnection.userName property
- MariaDbConnection.warning property
- MariaDbDatabaseMetaData class MariaDB database metadata implementation.
- MariaDbDatabaseMetaData.catalogs method Reads SQL metadata.
- MariaDbDatabaseMetaData.columns method
- MariaDbDatabaseMetaData.connection property
- MariaDbDatabaseMetaData.driverName property
- MariaDbDatabaseMetaData.driverVersion property
- MariaDbDatabaseMetaData.exportedKeys method
- MariaDbDatabaseMetaData.functions method
- MariaDbDatabaseMetaData.importedKeys method
- MariaDbDatabaseMetaData.primaryKeys method
- MariaDbDatabaseMetaData.procedures method
- MariaDbDatabaseMetaData.productName property
- MariaDbDatabaseMetaData.productVersion property
- MariaDbDatabaseMetaData.readOnly property
- MariaDbDatabaseMetaData.schemas method Reads SQL metadata.
- MariaDbDatabaseMetaData.supportsBatchUpdates property
- MariaDbDatabaseMetaData.supportsNamedParameters property
- MariaDbDatabaseMetaData.supportsPreparedStatements property
- MariaDbDatabaseMetaData.supportsSavepoints property
- MariaDbDatabaseMetaData.supportsStoredProcedures property
- MariaDbDatabaseMetaData.supportsTransactions property
- MariaDbDatabaseMetaData.tableTypes method Reads SQL metadata.
- MariaDbDatabaseMetaData.tables method
- MariaDbDatabaseMetaData.typeInfo method Reads SQL metadata.
- MariaDbDatabaseMetaData.url property
- MariaDbDatabaseMetaData.userName property
- MariaDbDriver class MariaDB driver entry point for `klyn.
- MariaDbDriver.MariaDbDriver constructor Creates the stateless MariaDB driver object.
- MariaDbDriver.connect method Opens a MariaDB connection.
- MariaDbDriver.name property Human-readable driver name.
- MariaDbDriver.openConnection method Opens a MariaDB connection from URL and connection properties.
- MariaDbDriver.supports method Returns true for MariaDB connection URLs.
- MariaDbParameterMetaData class MariaDB prepared-statement parameter metadata.
- MariaDbParameterMetaData.getParameterCount method
- MariaDbParameterMetaData.getParameterMode method Reads SQL metadata.
- MariaDbParameterMetaData.getParameterType method Reads SQL metadata.
- MariaDbParameterMetaData.getParameterTypeName method Reads SQL metadata.
- MariaDbParameterMetaData.getPrecision method Reads SQL metadata.
- MariaDbParameterMetaData.getScale method Reads SQL metadata.
- MariaDbParameterMetaData.isNullable method Reads SQL metadata.
- MariaDbParameterMetaData.isSigned method Reads SQL metadata.
- MariaDbParameterMetaData.nullability method Reads SQL metadata.
- MariaDbParameterMetaData.parameterCount property
- MariaDbParameterMetaData.parameterMode method Reads SQL metadata.
- MariaDbParameterMetaData.parameterType method Reads SQL metadata.
- MariaDbParameterMetaData.parameterTypeName method Reads SQL metadata.
- MariaDbParameterMetaData.precision method Reads SQL metadata.
- MariaDbParameterMetaData.scale method Reads SQL metadata.
- MariaDbParameterMetaData.signed method Reads SQL metadata.
- MariaDbPreparedStatement class MariaDB prepared statement.
- MariaDbPreparedStatement.clearParameters method
- MariaDbPreparedStatement.execute method Configures or executes a SQL statement.
- MariaDbPreparedStatement.execute method Configures or executes a SQL statement.
- MariaDbPreparedStatement.executeQuery method Configures or executes a SQL statement.
- MariaDbPreparedStatement.executeUpdate method Configures or executes a SQL statement.
- MariaDbPreparedStatement.parameterInfo property
- MariaDbPreparedStatement.parameterMetadata property
- MariaDbPreparedStatement.parameters property
- MariaDbPreparedStatement.query method Configures or executes a SQL statement.
- MariaDbPreparedStatement.set method Configures or executes a SQL statement.
- MariaDbPreparedStatement.setBoolean method Configures or executes a SQL statement.
- MariaDbPreparedStatement.setDouble method Configures or executes a SQL statement.
- MariaDbPreparedStatement.setInt method Configures or executes a SQL statement.
- MariaDbPreparedStatement.setLong method Configures or executes a SQL statement.
- MariaDbPreparedStatement.setNull method Configures or executes a SQL statement.
- MariaDbPreparedStatement.setString method Configures or executes a SQL statement.
- MariaDbPreparedStatement.sql property
- MariaDbPreparedStatement.update method Configures or executes a SQL statement.
- MariaDbResultSet class In-memory MariaDB result set.
- MariaDbResultSet.absolute method Moves the result-set cursor.
- MariaDbResultSet.afterLast property
- MariaDbResultSet.beforeFirst property
- MariaDbResultSet.clearWarnings method
- MariaDbResultSet.close method
- MariaDbResultSet.closed property
- MariaDbResultSet.concurrency property
- MariaDbResultSet.empty method Creates an empty result set.
- MariaDbResultSet.fetchDirection property
- MariaDbResultSet.fetchSize property
- MariaDbResultSet.first method Moves the result-set cursor.
- MariaDbResultSet.getBoolean method Reads data from the current result-set row.
- MariaDbResultSet.getDateTime method Reads data from the current result-set row.
- MariaDbResultSet.getDouble method Reads data from the current result-set row.
- MariaDbResultSet.getInt method Reads data from the current result-set row.
- MariaDbResultSet.getLong method Reads data from the current result-set row.
- MariaDbResultSet.getObject method Reads data from the current result-set row.
- MariaDbResultSet.getString method Reads data from the current result-set row.
- MariaDbResultSet.holdability property
- MariaDbResultSet.last method Moves the result-set cursor.
- MariaDbResultSet.lastReadWasNull property
- MariaDbResultSet.metadata property
- MariaDbResultSet.moveAfterLast method Moves the result-set cursor.
- MariaDbResultSet.moveBeforeFirst method Moves the result-set cursor.
- MariaDbResultSet.next method Moves the result-set cursor.
- MariaDbResultSet.previous method Moves the result-set cursor.
- MariaDbResultSet.relative method Moves the result-set cursor.
- MariaDbResultSet.resultSetType property
- MariaDbResultSet.rowNumber property
- MariaDbResultSet.statement property
- MariaDbResultSet.warning property
- MariaDbResultSet.wasNull method Reads data from the current result-set row.
- MariaDbResultSetMetaData class MariaDB result-set metadata implementation.
- MariaDbResultSetMetaData.autoIncrement method Reads SQL metadata.
- MariaDbResultSetMetaData.caseSensitive method Reads SQL metadata.
- MariaDbResultSetMetaData.catalogName method Reads SQL metadata.
- MariaDbResultSetMetaData.columnCount property
- MariaDbResultSetMetaData.columnLabel method Reads SQL metadata.
- MariaDbResultSetMetaData.columnName method Reads SQL metadata.
- MariaDbResultSetMetaData.columnType method Reads SQL metadata.
- MariaDbResultSetMetaData.columnTypeName method Reads SQL metadata.
- MariaDbResultSetMetaData.definitelyWritable method Reads SQL metadata.
- MariaDbResultSetMetaData.displaySize method Reads SQL metadata.
- MariaDbResultSetMetaData.nullability method Reads SQL metadata.
- MariaDbResultSetMetaData.precision method Reads SQL metadata.
- MariaDbResultSetMetaData.readOnly method Reads SQL metadata.
- MariaDbResultSetMetaData.scale method Reads SQL metadata.
- MariaDbResultSetMetaData.schemaName method Reads SQL metadata.
- MariaDbResultSetMetaData.searchable method Reads SQL metadata.
- MariaDbResultSetMetaData.signed method Reads SQL metadata.
- MariaDbResultSetMetaData.tableName method Reads SQL metadata.
- MariaDbResultSetMetaData.writable method Reads SQL metadata.
- MariaDbSavepoint class MariaDB savepoint descriptor.
- MariaDbSavepoint.MariaDbSavepoint constructor
- MariaDbSavepoint.id property
- MariaDbSavepoint.name property
- MariaDbStatement class Plain MariaDB statement.
- MarkdownAnsi class Small Markdown-to-ANSI renderer for terminal UI text.
- MarkdownAnsi.render method Renders a Markdown fragment using the terminal default DeepCodIA palette.
- MarkdownAnsi.render method Renders a Markdown fragment with a caller-provided base style.
- MatchResult class Represents one successful regular-expression match.
- MatchResult.MatchResult constructor Creates a new match result from the matched text.
- MatchResult.operator!= method Value inequality with another match result.
- MatchResult.operator!= method Value inequality with a string.
- MatchResult.operator!= method Value inequality with a string.
- MatchResult.operator== method Value equality with another match result.
- MatchResult.operator== method Value equality with a string.
- MatchResult.operator== method Value equality with a string.
- MatchResult.toString method Returns the matched text.
- MatchResult.value property Matched text.
- Math class Basic mathematical constants and functions.
- Math.E field Euler's number.
- Math.PI field PI: the ratio of a circle's circumference to its diameter.
- Math.TAU field TAU: the ratio of a circle's circumference to its radius.
- Math.abs method Returns the absolute value of a scalar number.
- Math.abs method Returns the magnitude of a complex number.
- Math.abs method Returns the magnitude of a single-precision complex number.
- Math.abs method Returns the element-wise absolute value of an array.
- Math.acos method Returns the arccosine of a value.
- Math.acos method
- Math.acos method Returns the element-wise arccosine of an array.
- Math.acosh method Returns the inverse hyperbolic cosine of a value.
- Math.acosh method
- Math.asin method Returns the arcsine of a value.
- Math.asin method
- Math.asin method Returns the element-wise arcsine of an array.
- Math.asinh method Returns the inverse hyperbolic sine of a value.
- Math.asinh method
- Math.atan method Returns the arctangent of a value.
- Math.atan method
- Math.atan method Returns the element-wise arctangent of an array.
- Math.atan2 method Returns `atan2(y, x)` in radians.
- Math.atan2 method Returns the element-wise `atan2(y, x)` for two arrays.
- Math.atan2 method Returns the element-wise `atan2(y, x)` between an array and a scalar.
- Math.atanh method Returns the inverse hyperbolic tangent of a value.
- Math.atanh method
- Math.cbrt method Returns the cube root of a floating-point value.
- Math.cbrt method
- Math.cbrt method Returns the element-wise cube root of an array.
- Math.ceil method Returns the smallest integer greater than or equal to `value`, preserved
in the same floating-point type.
- Math.ceil method Applies `ceil` element-wise on an array while preserving the array element type.
- Math.cos method Returns the cosine of an angle in radians.
- Math.cos method
- Math.cos method Returns the element-wise cosine of an array expressed in radians.
- Math.cosh method Returns the hyperbolic cosine of a value.
- Math.cosh method
- Math.cosh method Returns the element-wise hyperbolic cosine of an array.
- Math.degrees method Converts radians to degrees.
- Math.degrees method Converts the elements of an array from radians to degrees.
- Math.exp method Returns `e` raised to the specified power.
- Math.exp method
- Math.exp method Returns the element-wise exponential of an array.
- Math.exp2 method Returns `2` raised to the specified power.
- Math.exp2 method
- Math.exp2 method Returns the element-wise power of two of an array.
- Math.expm1 method Returns `e^value - 1`.
- Math.expm1 method
- Math.expm1 method Returns the element-wise `e^value - 1` of an array.
- Math.fact method Computes the factorial of an integer.
- Math.floor method Returns the greatest integer less than or equal to `value`, preserved in
the same floating-point type.
- Math.floor method Applies `floor` element-wise on an array while preserving the array element type.
- Math.fmod method Returns the floating-point remainder of the division.
- Math.fmod method Returns the element-wise floating-point remainder of two arrays.
- Math.fmod method Returns the element-wise floating-point remainder of an array by a scalar.
- Math.gcd method Computes the greatest common divisor of one or more integers.
- Math.gcd method Computes the greatest common divisor of one or more integers.
- Math.hypot method Returns the Euclidean distance `sqrt(x*x + y*y)`.
- Math.hypot method Returns the element-wise Euclidean distance of two arrays.
- Math.hypot method Returns the element-wise Euclidean distance between an array and a scalar.
- Math.log method Returns the natural logarithm of a value.
- Math.log method
- Math.log method Returns the element-wise natural logarithm of an array.
- Math.log10 method Returns the base-10 logarithm of a value.
- Math.log10 method
- Math.log10 method Returns the element-wise base-10 logarithm of an array.
- Math.log1p method Returns `log(1 + value)` with improved precision near zero.
- Math.log1p method
- Math.log1p method Returns the element-wise `log(1 + value)` of an array.
- Math.log2 method Returns the base-2 logarithm of a value.
- Math.log2 method
- Math.log2 method Returns the element-wise base-2 logarithm of an array.
- Math.pow method Raises a floating-point value to the specified power.
- Math.pow method
- Math.pow method Raises each element of an array to the matching powers of another array.
- Math.pow method Raises each element of an array to the specified scalar power.
- Math.radians method Converts degrees to radians.
- Math.radians method Converts the elements of an array from degrees to radians.
- Math.round method Rounds a floating-point value to the nearest integer value, returned in
the same floating-point type.
- Math.round method Rounds each element of an array while preserving the array element type.
- Math.sin method Returns the sine of an angle in radians.
- Math.sin method
- Math.sin method Returns the element-wise sine of an array expressed in radians.
- Math.sinh method Returns the hyperbolic sine of a value.
- Math.sinh method
- Math.sinh method Returns the element-wise hyperbolic sine of an array.
- Math.sqrt method Returns the element-wise square root of an array.
- Math.sqrt method Returns the square root of a floating-point value.
- Math.sqrt method
- Math.tan method Returns the tangent of an angle in radians.
- Math.tan method
- Math.tan method Returns the element-wise tangent of an array expressed in radians.
- Math.tanh method Returns the hyperbolic tangent of a value.
- Math.tanh method
- Math.tanh method Returns the element-wise hyperbolic tangent of an array.
- Math.trunc method Returns the integral part of `value`, preserved in the same
floating-point type.
- Math.trunc method Applies `trunc` element-wise on an array while preserving the array element type.
- Menu class A drop-down menu.
- Menu.Menu constructor
- Menu.addItem method
- Menu.items method
- Menu.removeItem method
- Menu.title property
- MenuBar class Function-key menu bar.
- MenuBar class Menu bar of a window.
- MenuBar.MenuBar constructor
- MenuBar.MenuBar constructor
- MenuBar.activeKey field
- MenuBar.addMenu method
- MenuBar.compactTitleOf method
- MenuBar.hasKey method
- MenuBar.keyAt method
- MenuBar.keys method
- MenuBar.menus method
- MenuBar.paintToFrame method
- MenuBar.removeMenu method
- MenuBar.setMenu method
- MenuBar.titleOf method
- MenuBar.trigger method
- MenuItem class Single menu entry.
- MenuItem.MenuItem constructor
- MenuItem.click method
- MenuItem.text property
- Message class Base mail message.
- Message.addBcc method Adds a `Bcc` recipient from a mailbox string.
- Message.addBcc method Adds a `Bcc` recipient.
- Message.addCc method Adds a `Cc` recipient from a mailbox string.
- Message.addCc method Adds a `Cc` recipient.
- Message.addRecipient method Adds a recipient.
- Message.addTo method Adds a `To` recipient from a mailbox string.
- Message.addTo method Adds a `To` recipient.
- Message.allRecipients method Returns all recipients, including `Bcc`.
- Message.bccRecipients field Blind-carbon-copy recipients.
- Message.ccRecipients field Carbon-copy recipients.
- Message.from property Author address.
- Message.header method Adds or replaces a custom header.
- Message.headers field Additional message headers.
- Message.render method Renders the message as RFC 5322 text.
- Message.replyTo property Optional reply-to address.
- Message.sentDate property Optional explicit sent date.
- Message.session property Associated mail session.
- Message.subject property Message subject.
- Message.toRecipients field Primary recipients.
- MessageDialog class Message dialog with a single accept action.
- MessageDialog.MessageDialog constructor
- MessageDialog.message field
- MessageDialog.okLabel field
- MessageDigest class Abstract base class for text-oriented message digests.
- MessageDigest.algorithm property Canonical digest algorithm name.
- MessageDigest.digest method Hashes the buffered text and an optional final chunk.
- MessageDigest.digestFile method Hashes a file from a `String` or `Path` value.
- MessageDigest.digestFileInfo method Hashes a file and returns a structured digest view.
- MessageDigest.digestInfo method Hashes the buffered text and returns a structured digest view.
- MessageDigest.getInstance method Compatibility factory for dynamic algorithm selection.
- MessageDigest.reset method Resets the buffered text accumulated with `update`.
- MessageDigest.toString method
- MessageDigest.update method Appends text to the in-memory digest buffer.
- MessagingException class Base exception raised by `klyn.
- MessagingException.MessagingException constructor Creates a messaging exception.
- Method class Class representing a method.
- Method.Method constructor Constructor for Method
- Method.annotations property Method annotations
- Method.body property Method to get the body of the method
- Method.declaringClass property Declaring class
- Method.flags property Raw modifier flags
- Method.invoke method Invokes the method with dynamic arguments.
- Method.invokeOn method Invokes the method on an instance.
- Method.isAccessible property Accessibility flag for private/protected member access.
- Method.name property Method to get the name of the method
- Method.operator call method Direct call operator.
- Method.parameterCount property Parameter count for Invocable interface
- Method.parameters property Method to get the parameters of the method
- Method.returnType property Method to get the return type name required by Invocable
- Method.returnTypeInfo property Method to get the return type metadata
- Method.toString method Method to convert the method to a string representation
- MimeBodyPart class MIME body part.
- MimeBodyPart.MimeBodyPart constructor Creates a MIME body part.
- MimeBodyPart.asAttachment method Marks this part as an attachment.
- MimeBodyPart.asInline method Marks this part as inline content.
- MimeBodyPart.attachmentBase64 method Creates an attachment from Base64 content.
- MimeBodyPart.attachmentBase64 method Creates a Base64 attachment with an explicit content type.
- MimeBodyPart.attachmentText method Creates a text attachment.
- MimeBodyPart.attachmentText method Creates a text attachment with an explicit content type.
- MimeBodyPart.content property Raw part content or already-encoded Base64 content.
- MimeBodyPart.contentDisposition property Optional Content-Disposition header value.
- MimeBodyPart.contentId property Optional inline content identifier.
- MimeBodyPart.contentType property MIME content type.
- MimeBodyPart.fileName property Optional attachment or inline file name.
- MimeBodyPart.header method Adds or replaces a MIME header on this part.
- MimeBodyPart.headers field Additional MIME headers for this part.
- MimeBodyPart.html method Creates an HTML body part.
- MimeBodyPart.text method Creates a plain text body part.
- MimeBodyPart.transferEncoding property Content-Transfer-Encoding header value.
- MimeMessage class MIME message inspired by JavaMail `MimeMessage`, adapted to Klyn.
- MimeMessage.MimeMessage constructor Creates a MIME message.
- MimeMessage.attach method Adds an attachment.
- MimeMessage.attachBase64 method Adds an attachment from Base64 content.
- MimeMessage.attachBase64 method Adds a Base64 attachment with an explicit content type.
- MimeMessage.attachText method Adds a text attachment.
- MimeMessage.attachText method Adds a text attachment with an explicit content type.
- MimeMessage.header method Adds or replaces a custom message header.
- MimeMessage.htmlBody property HTML body.
- MimeMessage.messageId property Optional explicit Message-ID.
- MimeMessage.multipart property Optional explicit MIME tree.
- MimeMessage.render method Renders this message as RFC 5322 text.
- MimeMessage.textBody property Plain text body.
- MimeMultipart class MIME multipart container.
- MimeMultipart.MimeMultipart constructor Creates a multipart container.
- MimeMultipart.addHtml method Adds an HTML body part.
- MimeMultipart.addMultipart method Adds a nested multipart.
- MimeMultipart.addPart method Adds a body part.
- MimeMultipart.addText method Adds a plain text body part.
- MimeMultipart.attachBase64 method Adds a Base64 attachment with an explicit content type.
- MimeMultipart.attachBase64 method Adds an attachment whose payload is already Base64-encoded.
- MimeMultipart.attachText method Adds a text attachment.
- MimeMultipart.attachText method Adds a text attachment with an explicit content type.
- MimeMultipart.boundary property Boundary marker used for serialization.
- MimeMultipart.clear method Removes all child parts.
- MimeMultipart.header method Adds or replaces a multipart header.
- MimeMultipart.headers field Additional multipart headers.
- MimeMultipart.mixed method Creates a `multipart/mixed` container.
- MimeMultipart.partCount property Returns the number of direct child parts.
- MimeMultipart.related method Creates a `multipart/related` container.
- MimeMultipart.subType property Multipart subtype, for example `mixed` or `alternative`.
- MouseEvent class Terminal mouse event decoded from SGR mouse sequences.
- MouseEvent.MouseEvent constructor
- MouseEvent.button property
- MouseEvent.clickCount property
- MouseEvent.drag property
- MouseEvent.pressed property
- MouseEvent.rawCode property
- MouseEvent.released property
- MouseEvent.wheel property
- MouseEvent.wheelDelta property
- MouseEvent.x property
- MouseEvent.y property
- Mutex class Mutual exclusion primitive.
- Mutex.close method AutoClosable support for try-with-resources.
- Mutex.lock method Acquires the mutex and returns a guard that unlocks on `close()`.
- Mutex.unload method Alias for unlock (kept for compatibility with older naming).
- Mutex.unlock method Releases the mutex.
N
- NDArray class Represents a multi-dimensional array (NDArray) with elements of type T.
- NDArray.NDArray constructor Constructs a new NDArray with the given shape.
- NDArray.NDArray constructor Constructs a new NDArray from a read-only shape.
- NDArray.NDArray constructor Constructs a new NDArray from a tuple shape.
- NDArray.NDArray constructor Constructs a new 1D NDArray with the given size.
- NDArray.abs method Returns the element-wise absolute value.
- NDArray.acos method Returns the element-wise arccosine.
- NDArray.asin method Returns the element-wise arcsine.
- NDArray.atan method Returns the element-wise arctangent.
- NDArray.atan2 method Returns the element-wise `atan2(this, other)`.
- NDArray.atan2 method Returns the element-wise `atan2(this, value)`.
- NDArray.cbrt method Returns the element-wise cube root.
- NDArray.ceil method Applies `ceil` element-wise while preserving the array element type.
- NDArray.cos method Returns the element-wise cosine in radians.
- NDArray.cosh method Returns the element-wise hyperbolic cosine.
- NDArray.degrees method Converts each element from radians to degrees.
- NDArray.exp method Returns the element-wise exponential.
- NDArray.exp2 method Returns the element-wise power of two.
- NDArray.expm1 method Returns the element-wise `exp(value) - 1`.
- NDArray.eye method Creates a new NDArray with ones on the diagonal and zeros elsewhere.
- NDArray.flatten method Flattens the NDArray into a 1D array.
- NDArray.floor method Applies `floor` element-wise while preserving the array element type.
- NDArray.fmod method Returns the element-wise floating-point remainder with another array.
- NDArray.fmod method Returns the element-wise floating-point remainder with a scalar.
- NDArray.fromList method Creates a 1D NDArray from a list.
- NDArray.fromList method Creates a 2D NDArray from a nested list.
- NDArray.full method Creates a new NDArray filled with a given value.
- NDArray.full method Creates a new NDArray filled with a given value.
- NDArray.full method Creates a new NDArray filled with a given value.
- NDArray.full method Creates a new NDArray filled with a given value using a tuple shape.
- NDArray.hypot method Returns the element-wise Euclidean distance with another array.
- NDArray.hypot method Returns the element-wise Euclidean distance with a scalar.
- NDArray.log method Returns the element-wise natural logarithm.
- NDArray.log10 method Returns the element-wise base-10 logarithm.
- NDArray.log1p method Returns the element-wise `log(1 + value)`.
- NDArray.log2 method Returns the element-wise base-2 logarithm.
- NDArray.max method Returns the maximum value of the array.
- NDArray.min method Returns the minimum value of the array.
- NDArray.ndim property The number of dimensions in the array.
- NDArray.ones method Creates a new NDArray with ones.
- NDArray.ones method Creates a new NDArray with ones.
- NDArray.ones method Creates a new NDArray with ones.
- NDArray.ones method Creates a new NDArray with ones from a tuple shape.
- NDArray.operator* method Multiplies two NDArrays element-wise.
- NDArray.operator** method Raises first NDArray to second NDArray element-wise.
- NDArray.operator+ method Adds two NDArrays element-wise.
- NDArray.operator- method Subtracts two NDArrays element-wise.
- NDArray.operator/ method Divides two NDArrays element-wise.
- NDArray.operator// method Integer-divides two NDArrays element-wise.
- NDArray.operator@ method Matrix multiplication (2D x 2D).
- NDArray.operator[] method Gets one element for 1D arrays.
- NDArray.operator[] method Gets one element for 2D arrays.
- NDArray.pow method Raises each element to the matching power array.
- NDArray.pow method Raises each element to the given scalar power.
- NDArray.radians method Converts each element from degrees to radians.
- NDArray.randint method Creates a new NDArray with random integers.
- NDArray.randint method Creates a 1D NDArray with random integers in `[min, max]`.
- NDArray.randint method Creates a NDArray with random integers in `[min, max]` using read-only shape dimensions.
- NDArray.randint method Creates a NDArray with random integers in `[min, max]` using a tuple shape.
- NDArray.randn method Creates a new NDArray with random floating-point numbers from a normal distribution.
- NDArray.randn method Creates a 1D NDArray sampled from a normal-like distribution.
- NDArray.randn method Creates a NDArray sampled from a normal-like distribution using read-only shape dimensions.
- NDArray.randn method Creates a NDArray sampled from a normal-like distribution using a tuple shape.
- NDArray.random method Creates a new NDArray with random values in [0, 1).
- NDArray.random method Creates a 1D NDArray with random values in `[0, 1)`.
- NDArray.random method Creates a NDArray with random values in `[0, 1)` using read-only shape dimensions.
- NDArray.random method Creates a NDArray with random values in `[0, 1)` using a tuple shape.
- NDArray.reshape method Reshapes the NDArray to the specified shape.
- NDArray.reshape method Reshapes the NDArray using a tuple shape.
- NDArray.reshape method Reshapes the NDArray using two dimensions.
- NDArray.round method Rounds each element to the nearest integer value while preserving the
array element type.
- NDArray.set method Sets one element in a 1D NDArray.
- NDArray.set method Sets one element in a 2D NDArray.
- NDArray.shape property The shape of the array.
- NDArray.sin method Returns the element-wise sine in radians.
- NDArray.sinh method Returns the element-wise hyperbolic sine.
- NDArray.size property The total number of elements in the array.
- NDArray.sort method Sorts the NDArray in place.
- NDArray.sort method Sorts the NDArray along one axis, in place.
- NDArray.sqrt method Returns the element-wise square root.
- NDArray.sum method Computes the sum of all elements.
- NDArray.sum method Computes the sum along one axis.
- NDArray.t property The transpose of the NDArray (2D only).
- NDArray.tan method Returns the element-wise tangent in radians.
- NDArray.tanh method Returns the element-wise hyperbolic tangent.
- NDArray.toString method Returns a string representation of the array.
- NDArray.trunc method Applies `trunc` element-wise while preserving the array element type.
- NDArray.zeros method Creates a new NDArray with zeros.
- NDArray.zeros method Creates a new NDArray with zeros.
- NDArray.zeros method Creates a new NDArray with zeros.
- NDArray.zeros method Creates a new NDArray with zeros from a tuple shape.
- NameList interface Read-only list of names and namespaces.
- NameList.contains method Indicates whether a name exists in the list.
- NameList.containsNS method Indicates whether a namespace/name pair exists in the list.
- NameList.getName method Returns the name at an index.
- NameList.getNamespaceURI method Returns the namespace URI at an index.
- NameList.length property Number of name entries in the list.
- NamedNodeMap interface Name-addressable collection of DOM nodes, typically attributes.
- NamedNodeMap.getNamedItem method Returns a node by its qualified name.
- NamedNodeMap.getNamedItemNS method Returns a node by namespace URI and local name.
- NamedNodeMap.item method Returns the node at the given zero-based index, or null when out of range.
- NamedNodeMap.length property Number of nodes in this map.
- NamedNodeMap.removeNamedItem method Removes a named node.
- NamedNodeMap.removeNamedItemNS method Removes a namespace-aware named node.
- NamedNodeMap.setNamedItem method Adds or replaces a named node.
- NamedNodeMap.setNamedItemNS method Adds or replaces a namespace-aware named node.
- NoResultException class Exception levée lorsqu'une requête ne retourne aucun résultat.
- NoResultException.NoResultException constructor
- Node interface Base interface for all DOM tree nodes.
- Node.ATTRIBUTE_NODE field
- Node.CDATA_SECTION_NODE field
- Node.COMMENT_NODE field
- Node.DOCUMENT_FRAGMENT_NODE field
- Node.DOCUMENT_NODE field
- Node.DOCUMENT_POSITION_CONTAINED_BY field
- Node.DOCUMENT_POSITION_CONTAINS field
- Node.DOCUMENT_POSITION_DISCONNECTED field Bit-mask values returned by compareDocumentPosition.
- Node.DOCUMENT_POSITION_FOLLOWING field
- Node.DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC field
- Node.DOCUMENT_POSITION_PRECEDING field
- Node.DOCUMENT_TYPE_NODE field
- Node.ELEMENT_NODE field Numeric node type constants defined by DOM Core.
- Node.ENTITY_NODE field
- Node.ENTITY_REFERENCE_NODE field
- Node.NOTATION_NODE field
- Node.PROCESSING_INSTRUCTION_NODE field
- Node.TEXT_NODE field
- Node.appendChild method Appends a child node.
- Node.attributes property Attributes map for element nodes, or null.
- Node.baseURI property Base URI associated with this node.
- Node.childNodes property Ordered child node list.
- Node.cloneNode method Clones this node.
- Node.compareDocumentPosition method Compares document order with another node.
- Node.firstChild property First child node, or null.
- Node.getAttribute method Returns an element attribute value when this node is an element.
- Node.getFeature method Returns a specialized feature object when available.
- Node.getUserData method Returns application data associated with this node.
- Node.hasAttributes method Indicates whether this node has attributes.
- Node.hasChildNodes method Indicates whether this node has children.
- Node.insertBefore method Inserts a node before a reference child.
- Node.isDefaultNamespace method Indicates whether the namespace URI is the default namespace.
- Node.isEqualNode method Tests structural equality with another node.
- Node.isSameNode method Tests object identity with another node.
- Node.isSupported method Indicates whether a DOM feature is supported.
- Node.lastChild property Last child node, or null.
- Node.localName property Local name of this node.
- Node.lookupNamespaceURI method Resolves a namespace URI for a prefix.
- Node.lookupPrefix method Resolves a prefix for a namespace URI.
- Node.namespaceURI property Namespace URI of this node, or null.
- Node.nextSibling property Next sibling node, or null.
- Node.nodeName property Qualified name of this node.
- Node.nodeType property Numeric node type.
- Node.nodeValue property Node value, when the node kind carries a scalar value.
- Node.normalize method Normalizes adjacent text nodes in this subtree.
- Node.ownerDocument property Owner document of this node.
- Node.parentNode property Parent node, or null for detached/root nodes.
- Node.prefix property Namespace prefix of this node.
- Node.previousSibling property Previous sibling node, or null.
- Node.removeChild method Removes a child node.
- Node.replaceChild method Replaces one child node by another.
- Node.setUserData method Associates application data with this node.
- Node.textContent property Concatenated text content of this node.
- NodeList interface Ordered list of DOM nodes.
- NodeList.item method Returns the node at the given zero-based index, or null when the index is outside the list.
- NodeList.length property Number of nodes in this list.
- NonUniqueResultException class Exception levée lorsqu'une requête retourne plusieurs résultats alors qu'un seul est attendu.
- NonUniqueResultException.NonUniqueResultException constructor
- Notation interface DOM notation declaration.
- Notation.publicId property Public identifier for the notation.
- Notation.systemId property System identifier for the notation.
- NullException class Exception thrown when a null reference is used where a value is required.
- NullException.NullException constructor Creates a null-reference exception.
- Nullability enum Nullability contract used by SQL metadata APIs.
O
P
Q
R
S
- SAXAttributes class Mutable SAX attribute collection used by the pure Klyn SAX parser.
- SAXAttributes.SAXAttributes constructor Creates an empty attribute collection.
- SAXAttributes.add method Adds one attribute to the collection.
- SAXAttributes.getIndex method Finds an attribute by qualified name.
- SAXAttributes.getIndex method Finds an attribute by Namespace URI and local name.
- SAXAttributes.getLength method Returns the number of attributes.
- SAXAttributes.getLocalName method Returns the local name at an index.
- SAXAttributes.getName method Returns the SAX1 qualified attribute name at an index.
- SAXAttributes.getQName method Returns the qualified name at an index.
- SAXAttributes.getType method Returns an attribute type by Namespace URI and local name.
- SAXAttributes.getType method Returns an attribute type by qualified name.
- SAXAttributes.getType method Returns the attribute type at an index.
- SAXAttributes.getURI method Returns the Namespace URI at an index.
- SAXAttributes.getValue method Returns an attribute value by Namespace URI and local name.
- SAXAttributes.getValue method Returns an attribute value by qualified name.
- SAXAttributes.getValue method Returns the attribute value at an index.
- SAXAttributes.isDeclared method Reports whether an indexed attribute was declared in a DTD.
- SAXAttributes.isDeclared method Reports whether a qualified attribute name was declared in a DTD.
- SAXAttributes.isDeclared method Reports whether a Namespace/local-name attribute was declared in a DTD.
- SAXAttributes.isSpecified method Reports whether an indexed attribute was present in the source.
- SAXAttributes.isSpecified method Reports whether a Namespace/local-name attribute was present in the source.
- SAXAttributes.isSpecified method Reports whether a qualified attribute name was present in the source.
- SAXException class Base SAX error or warning.
- SAXException.SAXException constructor Creates an empty SAX exception.
- SAXException.SAXException constructor Creates a SAX exception with a message.
- SAXException.SAXException constructor Creates a SAX exception wrapping another exception.
- SAXException.SAXException constructor Creates a SAX exception with a message and embedded exception.
- SAXException.getCause method Returns the exception cause.
- SAXException.getException method Returns the embedded exception.
- SAXException.message property Detail message for this SAX exception.
- SAXException.toString method Returns a string representation including the embedded exception.
- SAXLocator class Mutable locator used by the pure Klyn SAX parser.
- SAXLocator.SAXLocator constructor Creates a locator without source identifiers.
- SAXLocator.getColumnNumber method Returns the current one-based column number.
- SAXLocator.getEncoding method Returns the character encoding.
- SAXLocator.getLineNumber method Returns the current one-based line number.
- SAXLocator.getPublicId method Returns the public identifier.
- SAXLocator.getSystemId method Returns the system identifier.
- SAXLocator.getXMLVersion method Returns the XML version.
- SAXLocator.setEncoding method Sets the character encoding reported by `Locator2`.
- SAXLocator.setPosition method Sets the current one-based line and column.
- SAXLocator.setPublicId method Sets the public identifier.
- SAXLocator.setSystemId method Sets the system identifier.
- SAXLocator.setXMLVersion method Sets the XML version reported by `Locator2`.
- SAXNotRecognizedException class Error raised for an unrecognized SAX feature or property identifier.
- SAXNotRecognizedException.SAXNotRecognizedException constructor Creates an empty unrecognized-identifier exception.
- SAXNotRecognizedException.SAXNotRecognizedException constructor Creates an unrecognized-identifier exception.
- SAXNotSupportedException class Error raised for a recognized but unsupported SAX feature or property value.
- SAXNotSupportedException.SAXNotSupportedException constructor Creates an empty unsupported-operation exception.
- SAXNotSupportedException.SAXNotSupportedException constructor Creates an unsupported-operation exception.
- SAXParseException class SAX exception with XML location information.
- SAXParseException.SAXParseException constructor Creates a parse exception from a locator.
- SAXParseException.SAXParseException constructor Creates a parse exception from a locator and cause.
- SAXParseException.SAXParseException constructor Creates a parse exception from explicit location values.
- SAXParseException.SAXParseException constructor Creates a parse exception from explicit location values and cause.
- SAXParseException.columnNumber property One-based column number for the parse error, or `-1` when unavailable.
- SAXParseException.getPublicId method Returns the public identifier.
- SAXParseException.getSystemId method Returns the system identifier.
- SAXParseException.lineNumber property One-based line number for the parse error, or `-1` when unavailable.
- SAXParseException.publicId property Public identifier associated with the parse error, or `null`.
- SAXParseException.systemId property System identifier associated with the parse error, or `null`.
- SAXParseException.toString method Returns a string representation including location information.
- SAXParser class Pure Klyn non-validating SAX parser.
- SAXParser.SAXParser constructor Creates a non-validating SAX parser.
- SAXParser.getContentHandler method Returns the SAX2 content handler.
- SAXParser.getDTDHandler method Returns the DTD handler.
- SAXParser.getEntityResolver method Returns the entity resolver.
- SAXParser.getErrorHandler method Returns the error handler.
- SAXParser.getFeature method Returns the current feature value.
- SAXParser.getProperty method Returns a SAX property value.
- SAXParser.parse method Parses XML from a system identifier.
- SAXParser.parse method Parses XML from an input source.
- SAXParser.parse method Parses an input source with a `DefaultHandler`.
- SAXParser.parse method Parses a system identifier with a `DefaultHandler`.
- SAXParser.parse method Parses an input source with a content handler.
- SAXParser.parse method Parses a system identifier with a content handler.
- SAXParser.setContentHandler method Registers the SAX2 content handler.
- SAXParser.setDTDHandler method Registers the DTD handler.
- SAXParser.setDocumentHandler method Registers the SAX1 document handler.
- SAXParser.setEntityResolver method Registers the entity resolver.
- SAXParser.setErrorHandler method Registers the error handler.
- SAXParser.setFeature method Sets a feature value.
- SAXParser.setLocale method Accepts a preferred diagnostics locale.
- SAXParser.setProperty method Sets a SAX property value.
- SByte class Represents an 8-bit signed integer.
- SByte.MAX_VALUE field The greatest value representable by an SByte.
- SByte.MIN_VALUE field The smallest value representable by an SByte.
- SByte.SByte constructor Builds the neutral SByte value (`0`).
- SByte.SByte constructor Builds an SByte from a Boolean value (`false` = 0, `true` = 1).
- SByte.SByte constructor Builds an SByte from a Float value.
- SByte.SByte constructor Builds an SByte from a Double value.
- SByte.SByte constructor Builds an SByte from a textual representation.
- SByte.SByte constructor Builds an SByte from a signed 32-bit integer.
- SByte.SByte constructor Builds an SByte from an unsigned 32-bit integer.
- SByte.SByte constructor Builds an SByte from a signed 64-bit integer.
- SByte.SByte constructor Builds an SByte from an unsigned 64-bit integer.
- SByte.SByte constructor Builds an SByte from a character code point.
- SByte.operator!= method Tests whether two SByte values are different.
- SByte.operator% method Computes the remainder of one SByte value divided by another.
- SByte.operator%= method Replaces `a` with the remainder of `a` divided by `b`.
- SByte.operator* method Multiplies two SByte values.
- SByte.operator** method Raises a SByte value to a power.
- SByte.operator**= method Replaces `value` with `value ** power`.
- SByte.operator*= method Multiplies `a` by `b` in place.
- SByte.operator+ method Adds two SByte values.
- SByte.operator+= method Adds `b` to `a` in place.
- SByte.operator- method Subtracts one SByte value from another.
- SByte.operator-= method Subtracts `b` from `a` in place.
- SByte.operator/ method Divides one SByte value by another.
- SByte.operator// method Performs integer division on two SByte values.
- SByte.operator//= method Replaces `a` with the integer division of `a` by `b`.
- SByte.operator< method Tests whether `a` is strictly lower than `b`.
- SByte.operator<= method Tests whether `a` is lower than or equal to `b`.
- SByte.operator== method Tests whether two SByte values are equal.
- SByte.operator> method Tests whether `a` is strictly greater than `b`.
- SByte.operator>= method Tests whether `a` is greater than or equal to `b`.
- SByte.toString method Converts this value to its textual representation.
- SByte.tryParse method Parses an SByte value from text.
- SHA1 class SHA-1 message digest.
- SHA1.SHA1 constructor
- SHA224 class SHA-224 message digest.
- SHA224.SHA224 constructor
- SHA256 class SHA-256 message digest.
- SHA256.SHA256 constructor
- SHA384 class SHA-384 message digest.
- SHA384.SHA384 constructor
- SHA3_224 class SHA3-224 message digest.
- SHA3_224.SHA3_224 constructor
- SHA3_256 class SHA3-256 message digest.
- SHA3_256.SHA3_256 constructor
- SHA3_384 class SHA3-384 message digest.
- SHA3_384.SHA3_384 constructor
- SHA3_512 class SHA3-512 message digest.
- SHA3_512.SHA3_512 constructor
- SHA512 class SHA-512 message digest.
- SHA512.SHA512 constructor
- SHA512_224 class SHA-512/224 message digest.
- SHA512_224.SHA512_224 constructor
- SHA512_256 class SHA-512/256 message digest.
- SHA512_256.SHA512_256 constructor
- SQLException class Base exception for SQL access, statement preparation and result processing.
- SQLException.SQLException constructor Creates an SQL exception.
- SQLException.sqlState property Optional five-character SQL state.
- SQLException.vendorCode property Optional vendor-specific error code.
- SQLFeatureNotSupportedException class Raised when a requested SQL feature is declared by the API but not yet
provided by the current driver or runtime branch.
- SQLFeatureNotSupportedException.SQLFeatureNotSupportedException constructor Creates a feature-not-supported exception.
- SQLWarning class Non-fatal SQL warning.
- SQLWarning.SQLWarning constructor Creates an SQL warning.
- SQLWarning.nextWarning property Optional next warning in the chain.
- SSLContext class Immutable TLS client context.
- SSLContext.SSLContext constructor Creates a TLS context.
- SSLContext.caFile field Optional CA certificate file in PEM format.
- SSLContext.caPath field Optional CA certificate folder.
- SSLContext.clientCertificateFile field Optional client certificate file in PEM format.
- SSLContext.clientDefault method Returns the default verified client context.
- SSLContext.clientPrivateKeyFile field Optional client private key file in PEM format.
- SSLContext.copy method Returns a copy of this context.
- SSLContext.insecure method Returns an insecure context that disables peer verification.
- SSLContext.maxVersion field Optional maximum TLS version, for example `TLSv1.
- SSLContext.minVersion field Optional minimum TLS version, for example `TLSv1.
- SSLContext.openSocket method Opens a TLS socket using this context.
- SSLContext.trustAll method Returns a copy that trusts all peers.
- SSLContext.verifyPeer field True when peer certificates and host names must be verified.
- SSLContext.withCaFile method Returns a copy with a custom CA certificate file.
- SSLContext.withCaPath method Returns a copy with a custom CA certificate directory.
- SSLContext.withClientCertificate method Returns a copy with a client certificate and private key.
- SSLContext.withTlsVersions method Returns a copy with minimum and optional maximum TLS versions.
- SSLException class Raised when a TLS/SSL handshake or encrypted transport operation fails.
- SSLException.SSLException constructor Creates an SSL exception.
- SSLSocket class Blocking TLS client socket.
- SSLSocket.SSLSocket constructor Creates an unconnected TLS socket.
- SSLSocket.SSLSocket constructor Creates and connects a TLS socket.
- SSLSocket.SSLSocket constructor Wraps an already-connected TCP socket into TLS.
- SSLSocket.attachToSocket method Upgrades an already-connected TCP socket using this TLS context.
- SSLSocket.cipherSuite property Negotiated cipher suite.
- SSLSocket.close method Closes the TLS socket.
- SSLSocket.connect method Connects this TLS socket.
- SSLSocket.context property TLS context applied to this socket.
- SSLSocket.fromSocket method Stable alias of `upgrade(.
- SSLSocket.getInputStream method Returns the input stream facade.
- SSLSocket.getOutputStream method Returns the output stream facade.
- SSLSocket.getReader method Returns the text reader facade.
- SSLSocket.getWriter method Returns the text writer facade.
- SSLSocket.host property Remote host name.
- SSLSocket.isConnected property True when the socket is connected.
- SSLSocket.port property Remote port number.
- SSLSocket.protocol property Negotiated TLS protocol, for example `TLSv1.
- SSLSocket.readAllText method Reads until the peer closes the TLS stream.
- SSLSocket.readLine method Reads one line from the TLS stream.
- SSLSocket.reader property Read-only alias for `getReader()`.
- SSLSocket.receive method Receives up to `maxBytes` bytes interpreted as text.
- SSLSocket.receiveBytes method Receives raw bytes from the peer.
- SSLSocket.send method Sends text to the peer.
- SSLSocket.sendBytes method Sends raw bytes to the peer.
- SSLSocket.toString method
- SSLSocket.upgrade method Upgrades an already-connected TCP socket to TLS.
- SSLSocket.write method Writes text to the peer.
- SSLSocket.writeBytes method Writes raw bytes to the peer.
- SSLSocket.writeLine method Writes one line to the peer.
- SSLSocket.writer property Read-only alias for `getWriter()`.
- SSLSocketInputStream class Binary input stream wrapper for `SSLSocket`.
- SSLSocketInputStream.close method Performs a TLS network operation.
- SSLSocketInputStream.read method Reads a text chunk from the TLS socket.
- SSLSocketInputStream.readBytes method Reads bytes from the TLS socket.
- SSLSocketOutputStream class Binary output stream wrapper for `SSLSocket`.
- SSLSocketOutputStream.close method Performs a TLS network operation.
- SSLSocketOutputStream.write method Writes text to the TLS socket.
- SSLSocketOutputStream.writeBytes method Writes raw bytes to the TLS socket.
- SSLSocketReader class Text reader over one TLS socket connection.
- SSLSocketReader.SSLSocketReader constructor Creates a text reader bound to a connected TLS socket.
- SSLSocketReader.close method Closes the underlying TLS socket.
- SSLSocketReader.readAllText method Reads all remaining text from the TLS socket.
- SSLSocketReader.readLine method Reads one line from the TLS socket and consumes the transport line terminator.
- SSLSocketReader.readLines method Reads all remaining lines until the TLS stream closes.
- SSLSocketWriter class Text writer over one TLS socket connection.
- SSLSocketWriter.SSLSocketWriter constructor Creates a text writer bound to a connected TLS socket.
- SSLSocketWriter.close method Closes the underlying TLS socket.
- SSLSocketWriter.write method Writes text to the TLS socket.
- Savepoint interface Savepoint descriptor contract.
- Savepoint.id property Optional numeric identifier.
- Savepoint.name property Optional savepoint name.
- ScrollView class Basic text scroll view.
- ScrollView.ScrollView constructor
- ScrollView.appendLine method
- ScrollView.clampScrollOffsetFor method Clamps the current scroll offset to the valid range.
- ScrollView.clear method
- ScrollView.contentWidth method Returns the content width when the scrollbar reserves one column.
- ScrollView.handleVerticalScrollbarMouse method Handles mouse interaction with the vertical scrollbar.
- ScrollView.hasVerticalScrollbar method Returns true when a vertical scrollbar is needed.
- ScrollView.maxScrollOffsetFor method Computes the maximal vertical scroll offset for the given content size.
- ScrollView.paintToFrame method
- ScrollView.scrollByAmount method Scrolls vertically by the requested delta.
- ScrollView.scrollOffset field
- ScrollView.scrollToTrackRow method Scrolls to the absolute track row targeted by the mouse.
- ScrollView.scrollbarColumn method Returns the track column for the vertical scrollbar.
- ScrollView.scrollbarThumbSize method Returns the scrollbar thumb size in rows.
- ScrollView.scrollbarThumbTop method Returns the scrollbar thumb top row relative to the viewport.
- ScrollView.terminalPromptVisible method
- ScrollView.text property
- ScrollView.toString method Returns full textual content of the view.
- ScrollView.visibleRowCount method Returns the number of visible rows available for scrollable content.
- SecretKeyFactory class Abstract base class for secret-key derivation algorithms.
- SecretKeyFactory.algorithm field Canonical factory algorithm name.
- SecretKeyFactory.generateSecret method Derives key material from a password-based specification.
- SecretKeyFactory.generateSecret method Performs a cryptographic operation.
- SecretKeyFactory.getInstance method Compatibility factory for dynamic algorithm selection.
- SecretKeyFactory.toString method
- SecureRandom class Transport-safe secure random helper.
- SecureRandom.SecureRandom constructor Creates a secure random generator instance.
- SecureRandom.nextBase64 method Generates random data encoded as standard Base64.
- SecureRandom.nextHex method Generates random data encoded as hexadecimal.
- SecureRandom.nextUrlBase64 method Generates random data encoded as URL-safe Base64.
- Semaphore class Counting semaphore.
- Semaphore.Semaphore constructor Creates a semaphore with an initial number of permits.
- Semaphore.acquire method Acquires one permit and returns an AutoClosable guard.
- Semaphore.close method AutoClosable support for try-with-resources.
- Semaphore.release method Releases one permit.
- SendFailedException class Raised when SMTP delivery fails for one or more recipients.
- SendFailedException.SendFailedException constructor Creates a send failure.
- SendFailedException.invalidAddresses property Recipients rejected by the SMTP server.
- SendFailedException.unsentAddresses property Recipients left unsent because of the failure.
- SendFailedException.validSentAddresses property Recipients that were accepted by the SMTP server.
- ServerSocket class TCP server socket.
- ServerSocket.ServerSocket constructor Performs a network operation.
- ServerSocket.accept method Accepts one client connection.
- ServerSocket.bind method Binds and starts listening.
- ServerSocket.close method Closes the listening socket.
- ServerSocket.isBound property Returns true if the socket is currently bound.
- ServerSocket.localPort property Local listening port.
- ServerSocket.localSocketAddress property Returns the local bound address.
- Service annotation Marks a class as an injectable service component.
- Session class SMTP session configuration inspired by JavaMail `Session`, adapted to Klyn.
- Session.Session constructor Creates a mail session.
- Session.authenticator property Optional lazy authenticator.
- Session.clientName property Returns the EHLO/HELO client name.
- Session.defaultFrom property Optional default sender address.
- Session.deliver method Sends a message through this session.
- Session.effectivePort property Returns the effective SMTP port for this session.
- Session.heloName property Optional EHLO/HELO client name.
- Session.host property SMTP host name.
- Session.openTransport method Opens an SMTP transport bound to this session.
- Session.password property SMTP login password.
- Session.port property SMTP port.
- Session.security property Plain SMTP, direct TLS or STARTTLS.
- Session.smtp method Creates an SMTP session.
- Session.sslContext property Optional TLS context for direct SMTPS connections.
- Session.userName property SMTP login user name.
- Set interface Unordered collection of unique elements.
- Set.count method Counts occurrences of the given element in the set.
- Set.operator in method Returns true if the set contains the given element.
- Short class Represents a 16-bit signed integer.
- Short.MAX_VALUE field The greatest value representable by a Short.
- Short.MIN_VALUE field The smallest value representable by a Short.
- Short.Short constructor Builds the neutral Short value (`0`).
- Short.Short constructor Builds a Short from a Boolean value (`false` = 0, `true` = 1).
- Short.Short constructor Builds a Short from a Float value.
- Short.Short constructor Builds a Short from a Double value.
- Short.Short constructor Builds a Short from a textual representation.
- Short.Short constructor Builds a Short from a signed 32-bit integer.
- Short.Short constructor Builds a Short from an unsigned 32-bit integer.
- Short.Short constructor Builds a Short from a signed 64-bit integer.
- Short.Short constructor Builds a Short from an unsigned 64-bit integer.
- Short.Short constructor Builds a Short from a character code point.
- Short.operator!= method Tests whether two Short values are different.
- Short.operator% method Computes the remainder of one Short value divided by another.
- Short.operator%= method Replaces `a` with the remainder of `a` divided by `b`.
- Short.operator* method Multiplies two Short values.
- Short.operator** method Raises a Short value to a power.
- Short.operator**= method Replaces `value` with `value ** power`.
- Short.operator*= method Multiplies `a` by `b` in place.
- Short.operator+ method Adds two Short values.
- Short.operator+= method Adds `b` to `a` in place.
- Short.operator- method Subtracts one Short value from another.
- Short.operator-= method Subtracts `b` from `a` in place.
- Short.operator/ method Divides one Short value by another.
- Short.operator// method Performs integer division on two Short values.
- Short.operator//= method Replaces `a` with the integer division of `a` by `b`.
- Short.operator< method Tests whether `a` is strictly lower than `b`.
- Short.operator<= method Tests whether `a` is lower than or equal to `b`.
- Short.operator== method Tests whether two Short values are equal.
- Short.operator> method Tests whether `a` is strictly greater than `b`.
- Short.operator>= method Tests whether `a` is greater than or equal to `b`.
- Short.toString method Converts this value to its textual representation.
- Short.tryParse method Parses a Short value from text.
- Signature class Abstract base class for digital signatures.
- Signature.algorithm field Canonical signature algorithm name.
- Signature.getInstance method Compatibility factory for dynamic algorithm selection.
- Signature.hashAlgorithm field Canonical digest algorithm name used by the signature.
- Signature.initSign method Initializes the instance for signing with a private key.
- Signature.initVerify method Initializes the instance for verification with a public key.
- Signature.padding field RSA padding mode used by the signature.
- Signature.reset method Clears the buffered text accumulated with `update`.
- Signature.sign method Signs the buffered text and an optional final chunk.
- Signature.toString method
- Signature.update method Appends text to the in-memory signature buffer.
- Signature.verify method Verifies a signature against the buffered text and an optional final chunk.
- SizePolicy enum Describes how a widget consumes extra layout space.
- Slider class Integer slider widget.
- Slider.HORIZONTAL field
- Slider.Slider constructor Creates a slider with an initial value, range, and orientation.
- Slider.Slider constructor Creates a slider with an explicit orientation and optional range.
- Slider.VERTICAL field
- Slider.adjustValueBy method Adjusts the current value by a signed delta.
- Slider.beginDrag method Native backend hook called when a pointer drag starts on this slider.
- Slider.clampValue method Clamps a value into the slider range.
- Slider.endDrag method Native backend hook called when a pointer drag ends on this slider.
- Slider.liveValue property Whether the current value is displayed next to the thumb during drag.
- Slider.maximum property Highest allowed value.
- Slider.minimum property Lowest allowed value.
- Slider.orientation property Slider orientation: `horizontal` or `vertical`.
- Slider.paint method Paints the slider track, optional scale, optional live value, and thumb.
- Slider.setValue method Sets the value and emits `valueChanged` when it changes.
- Slider.setValueFromPoint method Updates the value from a window-relative pointer position.
- Slider.showTicks property Whether the slider paints graduations along its scale.
- Slider.showValues property Whether numeric values are painted near the ticks.
- Slider.tickInterval property Distance between two tick marks and displayed values.
- Slider.trackFillColor property Color used for the active track segment between `minimum` and `value`.
- Slider.value property Current value, clamped between `minimum` and `maximum`.
- Slider.valueChanged field Emitted after the value changes.
- SmtpResponse class SMTP response returned by `SmtpTransport`.
- SmtpResponse.SmtpResponse constructor Creates an SMTP response.
- SmtpResponse.code field SMTP status code.
- SmtpResponse.lines field Raw response lines received from the server.
- SmtpResponse.message field Final response message without the leading numeric code.
- SmtpResponse.ok property Returns true when the response is successful or intermediate.
- SmtpResponse.toString method
- SmtpTransport class Stateful SMTP transport.
- SmtpTransport.SmtpTransport constructor Creates an SMTP transport.
- SmtpTransport.close method Closes the SMTP connection.
- SmtpTransport.connect method Opens the SMTP connection and performs greeting, EHLO and optional AUTH.
- SmtpTransport.deliver method Sends one message.
- SmtpTransport.isConnected property Returns true when the underlying socket is connected.
- SmtpTransport.session field Session bound to this transport.
- Socket class TCP client socket.
- Socket.Socket constructor Creates a socket and connects when endpoint parameters are provided.
- Socket.Socket constructor Creates a socket and connects when endpoint parameters are provided.
- Socket.Socket constructor Performs a network operation.
- Socket.close method Closes the socket.
- Socket.connect method Connects this socket.
- Socket.connectWithTimeout method Performs a network operation.
- Socket.getInputStream method Returns the input stream wrapper.
- Socket.getOutputStream method Returns the output stream wrapper.
- Socket.getReader method Returns a text reader facade over this socket.
- Socket.getWriter method Returns a text writer facade over this socket.
- Socket.isConnected property Returns true when the socket has a valid native handle.
- Socket.readAllText method Reads the whole socket stream as text.
- Socket.readLine method Reads one line from the socket.
- Socket.reader property Read-only property alias for `getReader()`.
- Socket.receive method Receives text data from the peer.
- Socket.receive method Receives text data from the peer.
- Socket.receiveBytes method Receives raw bytes from the peer.
- Socket.remoteSocketAddress property Returns the remote socket endpoint when known.
- Socket.send method Sends text data to the peer.
- Socket.sendBytes method Sends raw bytes to the peer.
- Socket.setTimeoutMillis method Performs a network operation.
- Socket.write method Writes raw text to the socket.
- Socket.writeBytes method Writes raw bytes to the socket.
- Socket.writeLine method Writes one line to the socket.
- Socket.writer property Read-only property alias for `getWriter()`.
- SocketAddress class Base class for socket endpoints, for socket endpoints.
- SocketAddress.toString method Returns a debug-friendly endpoint representation.
- SocketException class Base network exception for socket, TCP, TLS and HTTP transport failures.
- SocketException.SocketException constructor Creates a socket exception.
- SocketInputStream class Binary input stream wrapper for `Socket`.
- SocketInputStream.close method Performs a network operation.
- SocketInputStream.read method Reads a text chunk from the socket.
- SocketInputStream.readBytes method Reads bytes from the socket.
- SocketOutputStream class Binary output stream wrapper for `Socket`.
- SocketOutputStream.close method Performs a network operation.
- SocketOutputStream.write method Writes text to the socket.
- SocketOutputStream.writeBytes method Writes raw bytes to the socket.
- SocketReader class Text reader over one socket connection.
- SocketReader.SocketReader constructor Creates a text reader bound to a connected socket.
- SocketReader.close method Closes the underlying socket.
- SocketReader.readAllText method Reads all remaining text from the socket.
- SocketReader.readLine method Reads one line from the socket and consumes the transport line terminator.
- SocketReader.readLines method Reads all remaining lines until the socket stream closes.
- SocketWriter class Text writer over one socket connection.
- SocketWriter.SocketWriter constructor Creates a text writer bound to a connected socket.
- SocketWriter.close method Closes the underlying socket.
- SocketWriter.write method Writes text to the socket.
- SpinBox class Numeric spin box widget.
- SpinBox.SpinBox constructor
- SpinBox.value property
- SqlServerByteBuilder class Byte builder helper for TDS protocol.
- SqlServerByteBuilder.SqlServerByteBuilder constructor
- SqlServerByteBuilder.append method
- SqlServerByteBuilder.append method
- SqlServerByteBuilder.append method
- SqlServerByteBuilder.appendBytes method
- SqlServerByteBuilder.appendBytes method
- SqlServerByteBuilder.appendInt method
- SqlServerByteBuilder.appendIntBE method
- SqlServerByteBuilder.appendLong method
- SqlServerByteBuilder.appendNBytes method
- SqlServerByteBuilder.appendShort method
- SqlServerByteBuilder.appendShortBE method
- SqlServerByteBuilder.length method
- SqlServerByteBuilder.toArray method
- SqlServerCallableStatement class SQL Server callable statement for stored procedures.
- SqlServerCallableStatement.execute method Configures or executes a SQL statement.
- SqlServerCallableStatement.execute method Configures or executes a SQL statement.
- SqlServerCallableStatement.executeQuery method Configures or executes a SQL statement.
- SqlServerCallableStatement.executeUpdate method Configures or executes a SQL statement.
- SqlServerCallableStatement.getBoolean method Configures or executes a SQL statement.
- SqlServerCallableStatement.getByte method Configures or executes a SQL statement.
- SqlServerCallableStatement.getDateTime method Configures or executes a SQL statement.
- SqlServerCallableStatement.getDouble method Configures or executes a SQL statement.
- SqlServerCallableStatement.getFloat method Configures or executes a SQL statement.
- SqlServerCallableStatement.getInt method Configures or executes a SQL statement.
- SqlServerCallableStatement.getLong method Configures or executes a SQL statement.
- SqlServerCallableStatement.getObject method Configures or executes a SQL statement.
- SqlServerCallableStatement.getShort method Configures or executes a SQL statement.
- SqlServerCallableStatement.getString method Configures or executes a SQL statement.
- SqlServerCallableStatement.out method Configures or executes a SQL statement.
- SqlServerCallableStatement.outParameters property
- SqlServerCallableStatement.outValues property
- SqlServerCallableStatement.query method Configures or executes a SQL statement.
- SqlServerCallableStatement.registerOutParameter method Configures or executes a SQL statement.
- SqlServerCallableStatement.update method Configures or executes a SQL statement.
- SqlServerCallableStatement.wasNull method Configures or executes a SQL statement.
- SqlServerColumnDefinition class Column definition for SQL Server result sets.
- SqlServerColumnDefinition.SqlServerColumnDefinition constructor
- SqlServerColumnDefinition.autoIncrement field
- SqlServerColumnDefinition.length field
- SqlServerColumnDefinition.name field
- SqlServerColumnDefinition.nullable field
- SqlServerColumnDefinition.originalName field
- SqlServerColumnDefinition.precision field
- SqlServerColumnDefinition.primaryKey field
- SqlServerColumnDefinition.scale field
- SqlServerColumnDefinition.schemaName field
- SqlServerColumnDefinition.sqlType field
- SqlServerColumnDefinition.sqlTypeName field
- SqlServerColumnDefinition.tableName field
- SqlServerConnection class Microsoft SQL Server connection implementation.
- SqlServerConnection.autoCommit property
- SqlServerConnection.callable method
- SqlServerConnection.catalog property
- SqlServerConnection.clearWarnings method
- SqlServerConnection.clientInfo property
- SqlServerConnection.close method
- SqlServerConnection.closed property
- SqlServerConnection.commit method Performs a database connection operation.
- SqlServerConnection.connected property
- SqlServerConnection.createStatement method
- SqlServerConnection.holdability property
- SqlServerConnection.isValid method
- SqlServerConnection.metadata property
- SqlServerConnection.nativeSql method
- SqlServerConnection.networkTimeoutMillis property
- SqlServerConnection.open method Opens a SQL Server connection from a URL and optional properties.
- SqlServerConnection.prepareCall method
- SqlServerConnection.prepareStatement method
- SqlServerConnection.prepared method
- SqlServerConnection.readOnly property
- SqlServerConnection.releaseSavepoint method Performs a database connection operation.
- SqlServerConnection.rollback method Performs a database connection operation.
- SqlServerConnection.savepoint method Performs a database connection operation.
- SqlServerConnection.schema property
- SqlServerConnection.sslContext property
- SqlServerConnection.statement method
- SqlServerConnection.transactionIsolation property
- SqlServerConnection.url property
- SqlServerConnection.userName property
- SqlServerConnection.warning property
- SqlServerDatabaseMetaData class Database metadata for SQL Server.
- SqlServerDatabaseMetaData.SqlServerDatabaseMetaData constructor
- SqlServerDatabaseMetaData.connection property
- SqlServerDatabaseMetaData.dataDefinitionCausesTransactionCommit property
- SqlServerDatabaseMetaData.dataDefinitionIgnoredInTransactions property
- SqlServerDatabaseMetaData.dateTimeFunctions property
- SqlServerDatabaseMetaData.deletesAreDetected method
- SqlServerDatabaseMetaData.driverMajorVersion property
- SqlServerDatabaseMetaData.driverMinorVersion property
- SqlServerDatabaseMetaData.driverName property
- SqlServerDatabaseMetaData.driverVersion property
- SqlServerDatabaseMetaData.extraNameCharacters property
- SqlServerDatabaseMetaData.generatedKeyAlwaysReturned method
- SqlServerDatabaseMetaData.getAttributes method Reads SQL metadata.
- SqlServerDatabaseMetaData.getCatalogs method Reads SQL metadata.
- SqlServerDatabaseMetaData.getClientInfoProperties method Reads SQL metadata.
- SqlServerDatabaseMetaData.getColumns method Reads SQL metadata.
- SqlServerDatabaseMetaData.getConnection method
- SqlServerDatabaseMetaData.getCrossReference method
- SqlServerDatabaseMetaData.getDatabaseMajorVersion method
- SqlServerDatabaseMetaData.getDatabaseMinorVersion method
- SqlServerDatabaseMetaData.getExportedKeys method Reads SQL metadata.
- SqlServerDatabaseMetaData.getFunctionColumns method Reads SQL metadata.
- SqlServerDatabaseMetaData.getFunctions method Reads SQL metadata.
- SqlServerDatabaseMetaData.getImportedKeys method Reads SQL metadata.
- SqlServerDatabaseMetaData.getIndexInfo method Reads SQL metadata.
- SqlServerDatabaseMetaData.getMetadataApiMajorVersion method
- SqlServerDatabaseMetaData.getMetadataApiMinorVersion method
- SqlServerDatabaseMetaData.getPrimaryKeys method Reads SQL metadata.
- SqlServerDatabaseMetaData.getProcedureColumns method Reads SQL metadata.
- SqlServerDatabaseMetaData.getProcedures method Reads SQL metadata.
- SqlServerDatabaseMetaData.getPseudoColumns method Reads SQL metadata.
- SqlServerDatabaseMetaData.getResultSetHoldability method
- SqlServerDatabaseMetaData.getSQLStateType method
- SqlServerDatabaseMetaData.getSchemas method Reads SQL metadata.
- SqlServerDatabaseMetaData.getSuperTables method Reads SQL metadata.
- SqlServerDatabaseMetaData.getSuperTypes method Reads SQL metadata.
- SqlServerDatabaseMetaData.getTableTypes method Reads SQL metadata.
- SqlServerDatabaseMetaData.getTables method Reads SQL metadata.
- SqlServerDatabaseMetaData.getTypeInfo method Reads SQL metadata.
- SqlServerDatabaseMetaData.getUDTs method Reads SQL metadata.
- SqlServerDatabaseMetaData.identifierQuoteString property
- SqlServerDatabaseMetaData.insertsAreDetected method
- SqlServerDatabaseMetaData.locatorsUpdateCopy method
- SqlServerDatabaseMetaData.nullPlusNonNullIsNull property
- SqlServerDatabaseMetaData.numericFunctions property
- SqlServerDatabaseMetaData.othersDeletesAreVisible method
- SqlServerDatabaseMetaData.othersInsertsAreVisible method
- SqlServerDatabaseMetaData.othersUpdatesAreVisible method
- SqlServerDatabaseMetaData.ownDeletesAreVisible method
- SqlServerDatabaseMetaData.ownInsertsAreVisible method
- SqlServerDatabaseMetaData.ownUpdatesAreVisible method
- SqlServerDatabaseMetaData.productName property
- SqlServerDatabaseMetaData.productVersion property
- SqlServerDatabaseMetaData.readOnly property
- SqlServerDatabaseMetaData.searchStringEscape property
- SqlServerDatabaseMetaData.sqlKeywords property
- SqlServerDatabaseMetaData.storesLowerCaseIdentifiers property
- SqlServerDatabaseMetaData.storesLowerCaseQuotedIdentifiers property
- SqlServerDatabaseMetaData.storesMixedCaseIdentifiers property
- SqlServerDatabaseMetaData.storesMixedCaseQuotedIdentifiers property
- SqlServerDatabaseMetaData.storesUpperCaseIdentifiers property
- SqlServerDatabaseMetaData.storesUpperCaseQuotedIdentifiers property
- SqlServerDatabaseMetaData.stringFunctions property
- SqlServerDatabaseMetaData.supportsANSI92EntryLevelSQL property
- SqlServerDatabaseMetaData.supportsANSI92FullSQL property
- SqlServerDatabaseMetaData.supportsANSI92IntermediateSQL property
- SqlServerDatabaseMetaData.supportsAlterTableWithAddColumn property
- SqlServerDatabaseMetaData.supportsAlterTableWithDropColumn property
- SqlServerDatabaseMetaData.supportsBatchUpdates property
- SqlServerDatabaseMetaData.supportsCatalogsInDataManipulation property
- SqlServerDatabaseMetaData.supportsCatalogsInIndexDefinitions property
- SqlServerDatabaseMetaData.supportsCatalogsInPrivilegeDefinitions property
- SqlServerDatabaseMetaData.supportsCatalogsInProcedureCalls property
- SqlServerDatabaseMetaData.supportsCatalogsInTableDefinitions property
- SqlServerDatabaseMetaData.supportsColumnAliasing property
- SqlServerDatabaseMetaData.supportsConvert property
- SqlServerDatabaseMetaData.supportsCoreSQLGrammar property
- SqlServerDatabaseMetaData.supportsCorrelatedSubqueries property
- SqlServerDatabaseMetaData.supportsDataDefinitionAndDataManipulationTransactions property
- SqlServerDatabaseMetaData.supportsDataManipulationTransactionsOnly property
- SqlServerDatabaseMetaData.supportsDifferentTableCorrelationNames property
- SqlServerDatabaseMetaData.supportsExpressionsInOrderBy property
- SqlServerDatabaseMetaData.supportsExtendedSQLGrammar property
- SqlServerDatabaseMetaData.supportsFullOuterJoins property
- SqlServerDatabaseMetaData.supportsGetGeneratedKeys method
- SqlServerDatabaseMetaData.supportsGroupBy property
- SqlServerDatabaseMetaData.supportsGroupByBeyondSelect property
- SqlServerDatabaseMetaData.supportsGroupByUnrelated property
- SqlServerDatabaseMetaData.supportsIntegrityEnhancementFacility property
- SqlServerDatabaseMetaData.supportsLikeEscapeClause property
- SqlServerDatabaseMetaData.supportsMinimumSQLGrammar property
- SqlServerDatabaseMetaData.supportsMixedCaseIdentifiers property
- SqlServerDatabaseMetaData.supportsMixedCaseQuotedIdentifiers property
- SqlServerDatabaseMetaData.supportsMultipleOpenResults method
- SqlServerDatabaseMetaData.supportsMultipleResultSets property
- SqlServerDatabaseMetaData.supportsMultipleTransactions property
- SqlServerDatabaseMetaData.supportsNamedParameters property
- SqlServerDatabaseMetaData.supportsNonNullableColumns property
- SqlServerDatabaseMetaData.supportsOpenCursorsAcrossCommit property
- SqlServerDatabaseMetaData.supportsOpenCursorsAcrossRollback property
- SqlServerDatabaseMetaData.supportsOpenStatementsAcrossCommit property
- SqlServerDatabaseMetaData.supportsOpenStatementsAcrossRollback property
- SqlServerDatabaseMetaData.supportsOrderByUnrelated property
- SqlServerDatabaseMetaData.supportsOuterJoins property
- SqlServerDatabaseMetaData.supportsPositionedDelete property
- SqlServerDatabaseMetaData.supportsPositionedUpdate property
- SqlServerDatabaseMetaData.supportsPreparedStatements property
- SqlServerDatabaseMetaData.supportsResultSetConcurrency method
- SqlServerDatabaseMetaData.supportsResultSetType method
- SqlServerDatabaseMetaData.supportsSavepoints property
- SqlServerDatabaseMetaData.supportsSchemasInDataManipulation property
- SqlServerDatabaseMetaData.supportsSchemasInIndexDefinitions property
- SqlServerDatabaseMetaData.supportsSchemasInPrivilegeDefinitions property
- SqlServerDatabaseMetaData.supportsSchemasInProcedureCalls property
- SqlServerDatabaseMetaData.supportsSchemasInTableDefinitions property
- SqlServerDatabaseMetaData.supportsSelectForUpdate property
- SqlServerDatabaseMetaData.supportsStatementPooling method
- SqlServerDatabaseMetaData.supportsStoredProcedures property
- SqlServerDatabaseMetaData.supportsSubqueriesInComparisons property
- SqlServerDatabaseMetaData.supportsSubqueriesInExists property
- SqlServerDatabaseMetaData.supportsSubqueriesInIns property
- SqlServerDatabaseMetaData.supportsSubqueriesInQuantifieds property
- SqlServerDatabaseMetaData.supportsTableCorrelationNames property
- SqlServerDatabaseMetaData.supportsTransactionIsolationLevel property
- SqlServerDatabaseMetaData.supportsTransactions property
- SqlServerDatabaseMetaData.supportsUnion property
- SqlServerDatabaseMetaData.supportsUnionAll property
- SqlServerDatabaseMetaData.systemFunctions property
- SqlServerDatabaseMetaData.updatesAreDetected method
- SqlServerDatabaseMetaData.url property
- SqlServerDatabaseMetaData.userName property
- SqlServerDatabaseMetaData.usesLocalFilePerTable property
- SqlServerDatabaseMetaData.usesLocalFiles property
- SqlServerDriver class Microsoft SQL Server driver entry point for `klyn.
- SqlServerDriver.SqlServerDriver constructor Creates the stateless SQL Server driver object.
- SqlServerDriver.connect method Opens a SQL Server connection.
- SqlServerDriver.name property Human-readable driver name.
- SqlServerDriver.openConnection method Opens a SQL Server connection from URL and connection properties.
- SqlServerDriver.supports method Returns true for SQL Server connection URLs.
- SqlServerOptions class Connection options for SQL Server TDS protocol.
- SqlServerOptions.SqlServerOptions constructor
- SqlServerOptions.appName field
- SqlServerOptions.connectTimeoutMillis field
- SqlServerOptions.database field
- SqlServerOptions.effectiveSslContext field
- SqlServerOptions.host field
- SqlServerOptions.language field
- SqlServerOptions.password field
- SqlServerOptions.port field
- SqlServerOptions.requiresTls field
- SqlServerOptions.socketTimeoutMillis field
- SqlServerOptions.url field
- SqlServerOptions.userName field
- SqlServerOptions.wantsTls field
- SqlServerPacketStream class
- SqlServerPacketStream.SqlServerPacketStream constructor
- SqlServerPacketStream.close method
- SqlServerPacketStream.getLastPacketType method
- SqlServerPacketStream.readPacket method Exchanges data with the SQL server protocol stream.
- SqlServerPacketStream.writePacket method Exchanges data with the SQL server protocol stream.
- SqlServerPacketStream.writePacketType method Exchanges data with the SQL server protocol stream.
- SqlServerParameterMetaData class Parameter metadata for SQL Server prepared statements.
- SqlServerParameterMetaData.SqlServerParameterMetaData constructor
- SqlServerParameterMetaData.getParameterCount method
- SqlServerParameterMetaData.getParameterMode method
- SqlServerParameterMetaData.getParameterType method
- SqlServerParameterMetaData.getParameterTypeName method
- SqlServerParameterMetaData.getPrecision method
- SqlServerParameterMetaData.getScale method
- SqlServerParameterMetaData.isNullable method
- SqlServerParameterMetaData.isSigned method
- SqlServerParameterMetaData.nullability method
- SqlServerParameterMetaData.parameterCount property
- SqlServerParameterMetaData.parameterMode method
- SqlServerParameterMetaData.parameterType method
- SqlServerParameterMetaData.parameterTypeName method
- SqlServerParameterMetaData.precision method
- SqlServerParameterMetaData.scale method
- SqlServerParameterMetaData.signed method
- SqlServerPreparedStatement class SQL Server prepared statement implementation.
- SqlServerPreparedStatement.clearParameters method
- SqlServerPreparedStatement.execute method Configures or executes a SQL statement.
- SqlServerPreparedStatement.execute method Configures or executes a SQL statement.
- SqlServerPreparedStatement.executeQuery method Configures or executes a SQL statement.
- SqlServerPreparedStatement.executeUpdate method Configures or executes a SQL statement.
- SqlServerPreparedStatement.parameterInfo property
- SqlServerPreparedStatement.parameterMetadata property
- SqlServerPreparedStatement.parameters property
- SqlServerPreparedStatement.query method Configures or executes a SQL statement.
- SqlServerPreparedStatement.set method Configures or executes a SQL statement.
- SqlServerPreparedStatement.setBoolean method Configures or executes a SQL statement.
- SqlServerPreparedStatement.setDouble method Configures or executes a SQL statement.
- SqlServerPreparedStatement.setInt method Configures or executes a SQL statement.
- SqlServerPreparedStatement.setLong method Configures or executes a SQL statement.
- SqlServerPreparedStatement.setNull method Configures or executes a SQL statement.
- SqlServerPreparedStatement.setString method Configures or executes a SQL statement.
- SqlServerPreparedStatement.sql property
- SqlServerPreparedStatement.update method Configures or executes a SQL statement.
- SqlServerResultSet class In-memory SQL Server result set.
- SqlServerResultSet.absolute method Moves the result-set cursor.
- SqlServerResultSet.afterLast property
- SqlServerResultSet.beforeFirst property
- SqlServerResultSet.clearWarnings method
- SqlServerResultSet.close method
- SqlServerResultSet.closed property
- SqlServerResultSet.concurrency property
- SqlServerResultSet.empty method
- SqlServerResultSet.fetchDirection property
- SqlServerResultSet.fetchSize property
- SqlServerResultSet.first method Moves the result-set cursor.
- SqlServerResultSet.getBoolean method Reads data from the current result-set row.
- SqlServerResultSet.getDateTime method Reads data from the current result-set row.
- SqlServerResultSet.getDouble method Reads data from the current result-set row.
- SqlServerResultSet.getInt method Reads data from the current result-set row.
- SqlServerResultSet.getLong method Reads data from the current result-set row.
- SqlServerResultSet.getObject method Reads data from the current result-set row.
- SqlServerResultSet.getString method Reads data from the current result-set row.
- SqlServerResultSet.holdability property
- SqlServerResultSet.last method Moves the result-set cursor.
- SqlServerResultSet.lastReadWasNull property
- SqlServerResultSet.metadata property
- SqlServerResultSet.moveAfterLast method Moves the result-set cursor.
- SqlServerResultSet.moveBeforeFirst method Moves the result-set cursor.
- SqlServerResultSet.next method Moves the result-set cursor.
- SqlServerResultSet.previous method Moves the result-set cursor.
- SqlServerResultSet.relative method Moves the result-set cursor.
- SqlServerResultSet.resultSetType property
- SqlServerResultSet.rowNumber property
- SqlServerResultSet.statement property
- SqlServerResultSet.warning property
- SqlServerResultSet.wasNull method Reads data from the current result-set row.
- SqlServerResultSetMetaData class Result set metadata for SQL Server.
- SqlServerResultSetMetaData.SqlServerResultSetMetaData constructor
- SqlServerResultSetMetaData.columnCount property
- SqlServerResultSetMetaData.getColumnDisplaySize method
- SqlServerResultSetMetaData.getColumnLabel method
- SqlServerResultSetMetaData.getColumnName method
- SqlServerResultSetMetaData.getColumnType method
- SqlServerResultSetMetaData.getColumnTypeName method
- SqlServerResultSetMetaData.getPrecision method
- SqlServerResultSetMetaData.getScale method
- SqlServerResultSetMetaData.getSchemaName method
- SqlServerResultSetMetaData.getTableName method
- SqlServerResultSetMetaData.isAutoIncrement method
- SqlServerResultSetMetaData.isCaseSensitive method
- SqlServerResultSetMetaData.isNullable method
- SqlServerResultSetMetaData.isPrimaryKey method
- SqlServerResultSetMetaData.isReadOnly method
- SqlServerResultSetMetaData.isSearchable method
- SqlServerSavepoint class Savepoint implementation for SQL Server.
- SqlServerSavepoint.SqlServerSavepoint constructor
- SqlServerSavepoint.name property
- SqlServerSocketAdapter class Socket adapter for SQL Server TDS protocol.
- SqlServerSocketAdapter.SqlServerSocketAdapter constructor
- SqlServerSocketAdapter.close method Closes the socket.
- SqlServerSocketAdapter.flush method Flushes the socket output (no-op for SQL Server as sendBytes is synchronous).
- SqlServerSocketAdapter.isSecure method Returns true if the socket is using TLS.
- SqlServerSocketAdapter.read method Reads bytes from the socket.
- SqlServerSocketAdapter.setTimeoutMillis method Sets the socket timeout.
- SqlServerSocketAdapter.upgrade method Upgrades the socket to TLS/SSL.
- SqlServerSocketAdapter.write method Writes bytes to the socket.
- SqlServerStatement class SQL Server statement implementation.
- SqlServerStatement.addBatch method Configures or executes a SQL statement.
- SqlServerStatement.clearBatch method
- SqlServerStatement.clearWarnings method
- SqlServerStatement.close method
- SqlServerStatement.execute method Configures or executes a SQL statement.
- SqlServerStatement.executeBatch method Configures or executes a SQL statement.
- SqlServerStatement.executeQuery method Configures or executes a SQL statement.
- SqlServerStatement.executeUpdate method Configures or executes a SQL statement.
- SqlServerSupport class Protocol helpers for Microsoft SQL Server TDS (Tabular Data Stream).
- SqlServerSupport.DRIVER_NAME field
- SqlServerSupport.DRIVER_VERSION field
- SqlServerSupport.ENCRYPT_NOT_SUP field
- SqlServerSupport.ENCRYPT_OFF field
- SqlServerSupport.ENCRYPT_ON field
- SqlServerSupport.ENCRYPT_REQ field
- SqlServerSupport.PRELOGIN_ENCRYPTION field
- SqlServerSupport.PRELOGIN_FEDAUTHREQUIRED field
- SqlServerSupport.PRELOGIN_INSTOPT field
- SqlServerSupport.PRELOGIN_MARS field
- SqlServerSupport.PRELOGIN_NONCEOPT field
- SqlServerSupport.PRELOGIN_TERMINATOR field
- SqlServerSupport.PRELOGIN_THREADID field
- SqlServerSupport.PRELOGIN_TRACEID field
- SqlServerSupport.PRELOGIN_VERSION field
- SqlServerSupport.PRODUCT_NAME field
- SqlServerSupport.SQLTYPE_BIGINT field
- SqlServerSupport.SQLTYPE_BINARY field
- SqlServerSupport.SQLTYPE_BINARY_LEGACY field
- SqlServerSupport.SQLTYPE_BIT field
- SqlServerSupport.SQLTYPE_BITN field
- SqlServerSupport.SQLTYPE_CHAR field
- SqlServerSupport.SQLTYPE_CHAR_LEGACY field
- SqlServerSupport.SQLTYPE_DATE field
- SqlServerSupport.SQLTYPE_DATETIME field
- SqlServerSupport.SQLTYPE_DATETIME2 field
- SqlServerSupport.SQLTYPE_DATETIMEOFFSET field
- SqlServerSupport.SQLTYPE_DATETIMN field
- SqlServerSupport.SQLTYPE_DECIMAL field
- SqlServerSupport.SQLTYPE_FLOAT field
- SqlServerSupport.SQLTYPE_FLTN field
- SqlServerSupport.SQLTYPE_IMAGE field
- SqlServerSupport.SQLTYPE_INT field
- SqlServerSupport.SQLTYPE_INTN field
- SqlServerSupport.SQLTYPE_MONEY field
- SqlServerSupport.SQLTYPE_MONEYN field
- SqlServerSupport.SQLTYPE_NCHAR field
- SqlServerSupport.SQLTYPE_NTEXT field
- SqlServerSupport.SQLTYPE_NUMERIC field
- SqlServerSupport.SQLTYPE_NVARCHAR field
- SqlServerSupport.SQLTYPE_REAL field
- SqlServerSupport.SQLTYPE_SMALLDATETIME field
- SqlServerSupport.SQLTYPE_SMALLINT field
- SqlServerSupport.SQLTYPE_SMALLMONEY field
- SqlServerSupport.SQLTYPE_TEXT field
- SqlServerSupport.SQLTYPE_TIME field
- SqlServerSupport.SQLTYPE_TIMESTAMP field
- SqlServerSupport.SQLTYPE_TINYINT field
- SqlServerSupport.SQLTYPE_UNIQUEIDENTIFIER field
- SqlServerSupport.SQLTYPE_VARBINARY field
- SqlServerSupport.SQLTYPE_VARBINARY_LEGACY field
- SqlServerSupport.SQLTYPE_VARCHAR field
- SqlServerSupport.SQLTYPE_VARCHAR_LEGACY field
- SqlServerSupport.SQLTYPE_XML field
- SqlServerSupport.TDS_CLOSE field
- SqlServerSupport.TDS_LOGIN7 field
- SqlServerSupport.TDS_PRELOGIN field
- SqlServerSupport.TDS_QUERY field
- SqlServerSupport.TDS_RPC field
- SqlServerSupport.TDS_SSPI field
- SqlServerSupport.TDS_TOKENS field
- SqlServerSupport.TDS_TOKEN_ALTMETADATA field
- SqlServerSupport.TDS_TOKEN_ALTROW field
- SqlServerSupport.TDS_TOKEN_COLINFO field
- SqlServerSupport.TDS_TOKEN_COLMETADATA field
- SqlServerSupport.TDS_TOKEN_DONE field
- SqlServerSupport.TDS_TOKEN_DONEINSTREAM field
- SqlServerSupport.TDS_TOKEN_DONEPROC field
- SqlServerSupport.TDS_TOKEN_ENVCHANGE field
- SqlServerSupport.TDS_TOKEN_ERROR field
- SqlServerSupport.TDS_TOKEN_FEATUREEXTACK field
- SqlServerSupport.TDS_TOKEN_INFO field
- SqlServerSupport.TDS_TOKEN_LOGINACK field
- SqlServerSupport.TDS_TOKEN_NBCROW field
- SqlServerSupport.TDS_TOKEN_ORDERBY field
- SqlServerSupport.TDS_TOKEN_RETURNSTATUS field
- SqlServerSupport.TDS_TOKEN_RETURNVALUE field
- SqlServerSupport.TDS_TOKEN_ROW field
- SqlServerSupport.TDS_TOKEN_SSPI field
- SqlServerSupport.TDS_TOKEN_TABNAME field
- SqlServerSupport.TDS_VERSION_7_4 field
- SqlServerSupport._ubyte method
- SqlServerSupport.buildLogin7Packet method Builds a TDS login7 packet.
- SqlServerSupport.buildPreLoginPacket method Builds a TDS pre-login packet.
- SqlServerSupport.byteToHex method
- SqlServerSupport.convertValue method Converts a raw string value to the appropriate Klyn type based on SQL type.
- SqlServerSupport.decodeUtf16Le method
- SqlServerSupport.encodeUrlComponent method Encodes a string for URL usage.
- SqlServerSupport.isDoneToken method Checks if a token indicates end of results.
- SqlServerSupport.obfuscatePassword method
- SqlServerSupport.parseExecutionResponse method Parses a SQL execution response token stream.
- SqlServerSupport.parseLoginResponse method Parses a login response token stream.
- SqlServerSupport.parsePreLoginResponse method Parses a pre-login response packet.
- SqlServerSupport.parseUrl method Parses a connection URL into SqlServerOptions.
- SqlServerSupport.sqlTypeToKlynType method Converts a SQL Server type code to Klyn Types constant.
- SqlServerSupport.stringToUtf16LeBytes method Converts a String to UTF-16LE bytes.
- SqlServerSupport.stringToUtf8Bytes method Converts a String to UTF-8 bytes.
- StackOverflowError class Error thrown when the call stack limit is exceeded.
- StackOverflowError.StackOverflowError constructor Constructor for StackOverflowError.
- Statement interface SQL statement contract.
- Statement.addBatch method Adds one SQL statement to the batch.
- Statement.batchSize property Number of statements currently queued in the batch.
- Statement.clearBatch method Clears the queued batch.
- Statement.clearWarnings method Clears the warning chain.
- Statement.closeOnCompletion property True when the statement auto-closes after completion.
- Statement.closed property True when the statement has been closed.
- Statement.concurrency property Result-set concurrency mode.
- Statement.connection property Owning connection.
- Statement.cursorName property Optional cursor name.
- Statement.escapeProcessing property True when SQL escape processing is enabled.
- Statement.execute method Executes any SQL statement.
- Statement.executeBatch method Executes the queued batch.
- Statement.executeQuery method Executes a SQL query and returns the result set.
- Statement.executeUpdate method Executes a SQL update (INSERT, UPDATE, DELETE) and returns affected rows.
- Statement.fetchDirection property Preferred fetch direction.
- Statement.fetchSize property Preferred fetch size.
- Statement.generatedKeys property Generated keys from the last update when supported by the driver.
- Statement.getResultSet method Returns the current result set from the last `execute(.
- Statement.holdability property Result-set holdability mode.
- Statement.largeMaxRows property Max row count as `Long`, or `0` for unlimited.
- Statement.maxFieldSize property Max field size, or `0` for unlimited.
- Statement.maxRows property Max rows returned by queries, or `0` for unlimited.
- Statement.poolable property True when the statement may participate in pooling.
- Statement.queryTimeoutSeconds property Query timeout in seconds.
- Statement.resultSetType property Cursor scrollability mode.
- Statement.warning property Current warning chain.
- StatusBar class Bottom status bar.
- StatusBar.Map method
- StatusBar.StatusBar constructor
- StatusBar.addWidget method
- StatusBar.displayMessage method
- StatusBar.message field
- StatusLabel class Status bar text compartment with optional binding.
- StatusLabel.StatusLabel constructor
- StatusLabel.connect method
- StatusLabel.disconnect method
- StatusLabel.text property
- String class The String class is used to store and manipulate textual content.
- String.String constructor Builds the empty string.
- String.String constructor Builds a string from any object by using its textual representation.
- String.String constructor Builds a one-character string from a Char.
- String.String constructor Builds a string from a character array.
- String._slice method Internal helper used by the compiler to implement slice syntax.
- String.capitalize method Capitalizes the string in place (first character only).
- String.center method Centers this string to the target width.
- String.contains method Returns true if this string contains the provided substring.
- String.count method Counts non-overlapping occurrences of a substring.
- String.endsWith method Returns true if this string ends with the provided suffix.
- String.endsWith method Returns true if this string ends with the provided value.
- String.endsWith method Returns true if this string ends with at least one suffix from the
provided list.
- String.equalsIgnoreCase method Compares two strings without case sensitivity.
- String.indexOf method Finds the first index of a substring starting from a position.
- String.isAlnum method Returns true if all characters are alphanumeric.
- String.isAlpha method Returns true if all characters are alphabetic.
- String.isBlank method Returns true if the string is empty or only contains spaces.
- String.isDigit method Returns true if all characters are digits.
- String.isEmpty property Returns true if the string is empty.
- String.isLower method Returns true if all cased characters are lowercase and at least one cased character exists.
- String.isSpace method Returns true if all characters are whitespace.
- String.isUpper method Returns true if all cased characters are uppercase and at least one cased character exists.
- String.join method Joins a list of strings using this string as separator.
- String.join method Joins an array of characters using this string as separator.
- String.join method Joins an array of strings using this string as separator.
- String.lastIndexOf method Finds the last index of a substring up to a position.
- String.lower method Converts the string to lowercase in place.
- String.lpad method Left pads this string to the target width.
- String.ltrim method Removes leading whitespace in place.
- String.matches method Tests the string against a regular expression.
- String.operator* method Repeats a string a given number of times.
- String.operator*= method Repeats this string in place.
- String.operator+ method Concatenates two strings.
- String.operator+= method Appends another string to this string (in place).
- String.operator[] method Returns or sets the character at the given position.
- String.removeAccents method Removes accents in place.
- String.removeSGR method Returns the string with ANSI SGR escape sequences removed.
- String.replace method Returns a copy where all occurrences of oldValue are replaced by newValue.
- String.replaceFirst method Returns a copy where the first occurrence of oldValue is replaced by newValue.
- String.replaceLast method Returns a copy where the last occurrence of oldValue is replaced by newValue.
- String.rpad method Right pads this string to the target width.
- String.rtrim method Removes trailing whitespace in place.
- String.size property Returns the number of characters in the string.
- String.split method Splits the string using a string delimiter.
- String.startsWith method Returns true if this string starts with the provided prefix.
- String.startsWith method Returns true if this string starts with the provided value.
- String.startsWith method Returns true if this string starts with at least one prefix from the
provided list.
- String.substring method Extracts a substring.
- String.title method Capitalizes each word in place.
- String.toCapitalize method Returns a new string with the first character capitalized.
- String.toLower method Returns the string in lowercase.
- String.toRemoveAccents method Returns a new string without accents.
- String.toString method Returns this string (identity conversion).
- String.toTitle method Returns a title-cased copy of this string.
- String.toTrim method Returns the string with leading and trailing whitespace removed.
- String.toUpper method Returns the string in uppercase.
- String.trim method Removes leading and trailing whitespace in place.
- String.upper method Converts the string to uppercase in place.
- StringBuilder class Mutable builder used to efficiently assemble text.
- StringBuilder.StringBuilder constructor Creates a new builder.
- StringBuilder.StringBuilder constructor Creates a new builder initialized with text.
- StringBuilder.append method Appends one character to the builder.
- StringBuilder.append method Appends a signed long.
- StringBuilder.append method Appends an unsigned long.
- StringBuilder.append method Appends a float.
- StringBuilder.append method Appends a double.
- StringBuilder.append method Appends a boolean.
- StringBuilder.append method Appends a string.
- StringBuilder.append method Appends the string representation of an object.
- StringBuilder.append method Appends a signed byte.
- StringBuilder.append method Appends an unsigned byte.
- StringBuilder.append method Appends a signed short.
- StringBuilder.append method Appends an unsigned short.
- StringBuilder.append method Appends a signed integer.
- StringBuilder.append method Appends an unsigned integer.
- StringBuilder.clear method Clears current content.
- StringBuilder.insert method Inserts a string at a given position.
- StringBuilder.insert method Inserts the string representation of an object.
- StringBuilder.insert method Inserts one character.
- StringBuilder.insert method Inserts a signed byte.
- StringBuilder.insert method Inserts an unsigned byte.
- StringBuilder.insert method Inserts a signed short.
- StringBuilder.insert method Inserts an unsigned short.
- StringBuilder.insert method Inserts a signed integer.
- StringBuilder.insert method Inserts an unsigned integer.
- StringBuilder.insert method Inserts a signed long.
- StringBuilder.insert method Inserts an unsigned long.
- StringBuilder.insert method Inserts a float.
- StringBuilder.insert method Inserts a double.
- StringBuilder.insert method Inserts a boolean.
- StringBuilder.isEmpty property Returns true when no character is present.
- StringBuilder.length method Returns current content length.
- StringBuilder.operator[] method Gets or sets one character by index.
- StringBuilder.remove method Removes a range of characters.
- StringBuilder.reverse method Reverses characters in place.
- StringBuilder.size property Returns the number of characters in the string builder.
- StringBuilder.toCharArray method Returns the content as a character array.
- StringBuilder.toString method Returns a String representation of the builder content.
- StringBuilderSync class Thread-safe text builder.
- StringBuilderSync.StringBuilderSync constructor Creates a new synchronized builder.
- StringBuilderSync.StringBuilderSync constructor Creates a new synchronized builder initialized with text.
- StringBuilderSync.append method Appends one character to the builder.
- StringBuilderSync.append method Appends a signed long.
- StringBuilderSync.append method Appends an unsigned long.
- StringBuilderSync.append method Appends a float.
- StringBuilderSync.append method Appends a double.
- StringBuilderSync.append method Appends a boolean.
- StringBuilderSync.append method Appends a string.
- StringBuilderSync.append method Appends the string representation of an object.
- StringBuilderSync.append method Appends a signed byte.
- StringBuilderSync.append method Appends an unsigned byte.
- StringBuilderSync.append method Appends a signed short.
- StringBuilderSync.append method Appends an unsigned short.
- StringBuilderSync.append method Appends a signed integer.
- StringBuilderSync.append method Appends an unsigned integer.
- StringBuilderSync.clear method Clears current content.
- StringBuilderSync.insert method Inserts a string at a given position.
- StringBuilderSync.insert method Inserts the string representation of an object.
- StringBuilderSync.insert method Inserts one character.
- StringBuilderSync.insert method Inserts a signed byte.
- StringBuilderSync.insert method Inserts an unsigned byte.
- StringBuilderSync.insert method Inserts a signed short.
- StringBuilderSync.insert method Inserts an unsigned short.
- StringBuilderSync.insert method Inserts a signed integer.
- StringBuilderSync.insert method Inserts an unsigned integer.
- StringBuilderSync.insert method Inserts a signed long.
- StringBuilderSync.insert method Inserts an unsigned long.
- StringBuilderSync.insert method Inserts a float.
- StringBuilderSync.insert method Inserts a double.
- StringBuilderSync.insert method Inserts a boolean.
- StringBuilderSync.isEmpty property Returns true when no character is present.
- StringBuilderSync.length method Returns current content length.
- StringBuilderSync.operator[] method Gets or sets one character by index.
- StringBuilderSync.remove method Removes a range of characters.
- StringBuilderSync.reverse method Reverses characters in place.
- StringBuilderSync.size property Returns the number of characters in the string builder.
- StringBuilderSync.toCharArray method Returns the content as a character array.
- StringBuilderSync.toString method Returns a String representation of the builder content.
- StringReader class Text reader backed by an in-memory string.
- StringReader.StringReader constructor Creates a reader over a string.
- StringReader.close method Closes the reader.
- StringReader.readAllText method Reads the remaining text.
- StringReader.readLine method Reads one line from the current reader position.
- StringReader.readLines method Reads all remaining lines from the current reader position.
- StyledSpan class Styled text fragment produced by syntax highlighters.
- StyledSpan.StyledSpan constructor
- StyledSpan.style property
- StyledSpan.text property
- SyntaxError class Exception thrown when Klyn code contains a syntax error.
- SyntaxError.SyntaxError constructor Constructor for SyntaxError.
- SyntaxHighlighter interface Line-based syntax highlighter contract.
- SyntaxHighlighter.highlight method
- SyntaxHighlighterFactory class Resolves a syntax highlighter from a file path.
- SyntaxHighlighterFactory.byPath method
- SystemClassLoader class Default runtime loader.
- SystemClassLoader.SystemClassLoader constructor Creates a system class loader.
- SystemClassLoader.instance property Shared system class loader instance.
- SystemClassLoader.loadClass method Loads a class by its fully-qualified or resolvable name.
- SystemClassLoader.loadPackage method Loads all visible classes from a package.
T
- TarArchiver class TAR archive implementation.
- TarArchiver.TarArchiver constructor
- TarArchiver.makeArchive method Creates or extracts an archive.
- TarArchiver.unpackArchive method Creates or extracts an archive.
- Target annotation Restricts the kind of declaration an annotation can target.
- Target.FIELD field Annotation target for fields.
- Target.METHOD field Annotation target for methods and constructors.
- Target.PARAMETER field Annotation target for parameters.
- Target.PROPERTY field Annotation target for properties.
- Target.TYPE field Annotation target for classes, interfaces, enums and annotations.
- Terminal class High-level terminal application root.
- Terminal.Terminal constructor
- Terminal.activePage property
- Terminal.addDockedPane method Registers a docked pane toggled from the menu.
- Terminal.addDocument method Adds a document/view entry.
- Terminal.addDocument method Adds a hidden document/view entry.
- Terminal.addPage method
- Terminal.addPage method
- Terminal.deckPane property
- Terminal.dispatchEvent method Processes one logical terminal event without reading from stdin.
- Terminal.dockedPanes property
- Terminal.exit method
- Terminal.focusPage method
- Terminal.focusPage method
- Terminal.focusPage method
- Terminal.idlePollIntervalMs property Maximum delay, in milliseconds, before the terminal calls widget idle hooks.
- Terminal.instance property Singleton instance.
- Terminal.invokeEventCallback method
- Terminal.invokePageChangeCallback method
- Terminal.lastFrame property Last composed logical terminal frame.
- Terminal.menuBar property
- Terminal.mouseTrackingEnabled property
- Terminal.onMouse property
- Terminal.onPageChange property
- Terminal.onResize property
- Terminal.pages property
- Terminal.paint method
- Terminal.prompt property
- Terminal.renderFrame method Renders one logical frame without flushing it to the real terminal.
- Terminal.run method
- Terminal.setViewportSize method Sets a logical viewport size for headless rendering/tests.
- Terminal.size property Current terminal size.
- Terminal.statusBar property
- Terminal.title property
- Terminal.togglePane method Shows or hides the first docked pane on the requested side.
- TerminalFrame class Logical terminal frame backed by styled cells.
- TerminalFrame.TerminalFrame constructor Builds a frame filled with spaces using the provided default style.
- TerminalFrame.cell method Returns the cell at the given coordinate.
- TerminalFrame.clear method Clears the frame with spaces and the default style.
- TerminalFrame.contains method Returns true when the coordinate belongs to the frame.
- TerminalFrame.copy method Returns a deep copy of the frame.
- TerminalFrame.copyRegion method Returns a sub-frame copy.
- TerminalFrame.cursorCol field
- TerminalFrame.cursorRow field
- TerminalFrame.cursorVisible field
- TerminalFrame.defaultStyle method Returns the default style of the frame.
- TerminalFrame.fillRect method Fills a rectangular region with the same glyph and style.
- TerminalFrame.glyphClusterDisplayWidth method
- TerminalFrame.glyphDisplayWidth method Returns the number of terminal columns occupied by one Unicode scalar.
- TerminalFrame.height property
- TerminalFrame.nextGlyphClusterEnd method
- TerminalFrame.previousGlyphClusterStart method
- TerminalFrame.textDisplayWidth method Returns the terminal display width of plain text.
- TerminalFrame.toAnsiText method Returns the frame as ANSI text for debug snapshots.
- TerminalFrame.toPlainText method Returns the frame as exact plain text, one line per row.
- TerminalFrame.trimTextToDisplayWidth method Trims plain text to a terminal display width without splitting wide
glyphs or emoji grapheme clusters.
- TerminalFrame.width property
- TerminalFrame.writeCell method Writes one logical glyph.
- TerminalFrame.writeStyledText method Writes plain text using a fixed style, without ANSI parsing.
- TerminalFrame.writeText method Writes ANSI-capable text into the frame.
- Test annotation Annotation to mark a method as a test case.
- Test.MyTestClass method
- Test.expected property
- Test.timeout property
- TestClass annotation Annotation to mark a class as a test class.
- TestClass.MyTestClass method
- TestClass.category property
- TestClass.description property
- TestRunner class
- TestRunner class Class responsible for running test cases and test classes.
- TestRunner.addTestClass method Method to add a test class to the runner.
- TestRunner.runPaint method
- TestRunner.runTests method Method to run all test cases in the test classes.
- Text interface DOM text node.
- Text.isElementContentWhitespace property True when this node contains ignorable element-content whitespace.
- Text.replaceWholeText method Replaces all logically adjacent text with the given content.
- Text.splitText method Splits this text node at the given offset.
- Text.wholeText property Contiguous text content around this text node.
- TextBox class Editable text field.
- TextBox.ECHO_NORMAL field Displays the field content as plain text.
- TextBox.ECHO_PASSWORD field Masks the field content while keeping the real value in `text`.
- TextBox.TextBox constructor
- TextBox.caretPosition property Caret insertion position.
- TextBox.clearSelection method Clears the current selection and keeps the caret at its position.
- TextBox.deleteBackward method Deletes the current selection or the character before the caret.
- TextBox.deleteForward method Deletes the current selection or the character after the caret.
- TextBox.echoMode property Controls how the text is rendered.
- TextBox.hasSelection method Returns true when a selection is active.
- TextBox.insertText method Inserts text at the caret position or replaces the current selection.
- TextBox.isReadOnly property Disables edition while keeping selection and focus support.
- TextBox.maxLength property Maximum accepted characters.
- TextBox.moveCaretLeft method Moves the caret to the left.
- TextBox.moveCaretRight method Moves the caret to the right.
- TextBox.paddingX property Horizontal text padding.
- TextBox.paint method Paints the field with antialiasing, selection and caret.
- TextBox.placeholder property Placeholder shown when the field is empty.
- TextBox.select method Updates the current selection range.
- TextBox.selectAll method Selects the whole field content.
- TextBox.selectionEnd property Selection active edge.
- TextBox.selectionStart property Selection anchor.
- TextBox.setCaret method Moves the caret to a given position.
- TextBox.text property Current field content.
- TextBox.textAlign property Horizontal text alignment.
- TextField class
- TextField.TextField constructor
- TextField.blur method
- TextField.deleteButton property
- TextField.focusDelete method
- TextField.focusEdit method
- TextField.focusable property
- TextField.focused property
- TextField.handleEvent method
- TextField.handleMouseEvent method
- TextField.label property
- TextField.labelWidth property
- TextField.lineEdit property
- TextField.paintToFrame method
- TextField.text property
- TextMetrics class Result of `Painter.
- TextMetrics.TextMetrics constructor
- TextMetrics.ascent property Estimated ascent.
- TextMetrics.descent property Estimated descent.
- TextMetrics.height property Estimated total height.
- TextMetrics.toString method
- TextMetrics.width property Estimated text width.
- TextReader interface Text reader contract.
- TextReader.readAllText method Reads the remaining text.
- TextReader.readLine method Reads one line from the current reader position.
- TextReader.readLines method Reads all remaining lines from the current reader position.
- TextView class Lightweight text-only view.
- TextView.TextView constructor
- TextView.append method
- TextView.paintToFrame method
- TextView.terminalPromptVisible method
- TextView.text property
- TextView.toString method
- TextWriter interface Text writer contract.
- TextWriter.write method Writes raw text.
- TextWriter.writeChar method Writes one character.
- TextWriter.writeLine method Writes one line and appends a newline.
- TextWriter.writeLines method Writes all lines with trailing newline.
- TgzArchiver class TGZ archive implementation.
- TgzArchiver.TgzArchiver constructor
- TgzArchiver.makeArchive method Creates or extracts an archive.
- TgzArchiver.unpackArchive method Creates or extracts an archive.
- ThemeManager class Central access point for `klyn.
- ThemeManager.MODE_DARK field
- ThemeManager.MODE_LIGHT field
- ThemeManager.MODE_SYSTEM field
- ThemeManager.appearanceMode method Returns the configured global appearance mode.
- ThemeManager.applyStyle method Applies layout-related KSS metrics to a widget.
- ThemeManager.applyStyleTree method Applies KSS layout metrics recursively.
- ThemeManager.effectiveAppearanceMode method Resolves `system` into `light` or `dark`.
- ThemeManager.resolveStyle method Resolves the current style for a widget.
- ThemeManager.setAppearanceMode method Sets the global appearance mode used by windows that keep the default.
- ThemeManager.setTheme method Registers a loaded KSS theme.
- ThemeManager.setThemeFromFile method Loads a KSS file and installs it for the requested mode or theme name.
- ThemeManager.theme method Returns the active theme for the requested mode or custom theme name.
- ThemeStyle class Computed visual style used by `klyn.
- ThemeStyle.accentColor property
- ThemeStyle.backgroundColor property
- ThemeStyle.backgroundColor2 property
- ThemeStyle.borderColor property
- ThemeStyle.borderWidth property
- ThemeStyle.caretColor property
- ThemeStyle.clone method Creates a deep copy of the style.
- ThemeStyle.cornerRadius property
- ThemeStyle.font property
- ThemeStyle.marginBottom property
- ThemeStyle.marginLeft property
- ThemeStyle.marginRight property
- ThemeStyle.marginTop property
- ThemeStyle.merge method Overlays another style on top of the current one.
- ThemeStyle.paddingBottom property
- ThemeStyle.paddingLeft property
- ThemeStyle.paddingRight property
- ThemeStyle.paddingTop property
- ThemeStyle.paddingX property
- ThemeStyle.paddingY property
- ThemeStyle.placeholderColor property
- ThemeStyle.selectionColor property
- ThemeStyle.shadowBlur property
- ThemeStyle.shadowColor property
- ThemeStyle.shadowOffsetX property
- ThemeStyle.shadowOffsetY property
- ThemeStyle.textColor property
- ThemeStyle.toString method
- ThemeStyle.trackFillColor property
- Thread class Logical thread abstraction.
- Thread.Thread constructor Creates a thread with an auto-generated name derived from its unique id.
- Thread.Thread constructor
- Thread.activeCount property Returns the number of logically active threads.
- Thread.current method Alias for `currentThread`.
- Thread.currentThread property Returns the current logical thread.
- Thread.id property Unique thread id.
- Thread.interrupt method Marks the thread as interrupted.
- Thread.isAlive property Returns true while this thread is not terminated.
- Thread.isInterrupted property Returns true when interruption was requested.
- Thread.join method Waits for completion.
- Thread.join method Waits up to a timeout in milliseconds.
- Thread.name property Thread name.
- Thread.priority property Logical thread priority.
- Thread.resume method Resumes execution logically.
- Thread.run method Runnable entrypoint.
- Thread.sleep method Puts the current thread to sleep.
- Thread.start method Starts the thread execution.
- Thread.state property Current lifecycle state.
- Thread.stop method Stops the thread logically.
- Thread.suspend method Suspends execution logically.
- Thread.toString method Returns a readable thread representation.
- Thread.withTarget method Creates a thread and binds a runnable target.
- Thread.yield method Provides a scheduler hint to yield execution.
- ThreadPriority enum Logical thread priority value object.
- ThreadState enum Logical lifecycle state for `Thread`.
- TimeZone class Represents a time zone, including its name and offset from UTC.
- TimeZone.TimeZone constructor Constructs a TimeZone object with a given name and offset.
- TimeZone.UTC property UTC timezone.
- TimeZone.local property Local timezone (best-effort, currently UTC by default).
- TimeZone.name property IANA-like short identifier (examples: UTC, CET).
- TimeZone.offsetHours property Offset from UTC in hours.
- TimeZone.toString method Returns a string representation of this TimeZone object.
- Timer class Event-loop based GUI timer.
- Timer.Timer constructor Creates a timer with an interval expressed in milliseconds.
- Timer.interval property Timer period in milliseconds.
- Timer.isRunning property Indicates whether the timer is currently active.
- Timer.start method Starts the timer using the current interval.
- Timer.start method Starts the timer using a new interval.
- Timer.stop method Stops the timer.
- Timer.tick method Emits the timeout event when called by the native event loop.
- Timer.timeout field
- Timestamp class Represents a point in time, typically expressed as the number of seconds since the Epoch (January 1st, 1970, 00:00:00 UTC).
- Timestamp.Timestamp constructor Constructs a Timestamp object with a given value.
- Timestamp.now property Returns the current time in seconds since the Epoch (January 1st, 1970, 00:00:00 UTC).
- Timestamp.operator+ method
- Timestamp.operator- method
- Timestamp.operator- method
- Timestamp.toDateTime method Converts this Timestamp to a DateTime object.
- Timestamp.toString method Returns a string representation of this Timestamp object.
- Timestamp.totalSeconds property Total seconds since Unix epoch.
- TlsOptions class Immutable TLS options for HTTP clients.
- TlsOptions.TlsOptions constructor Creates a TLS configuration for HTTPS requests.
- TlsOptions.caFile field Optional CA certificate file in PEM format.
- TlsOptions.caPath field Optional CA certificate folder.
- TlsOptions.clientCertificateFile field Optional client certificate file in PEM format.
- TlsOptions.clientDefault method Returns the default verified TLS options.
- TlsOptions.clientPrivateKeyFile field Optional client private key file in PEM format.
- TlsOptions.copy method Returns a copy of these TLS options.
- TlsOptions.insecure method Returns insecure TLS options that disable peer verification.
- TlsOptions.maxVersion field Optional maximum TLS version, for example `TLSv1.
- TlsOptions.minVersion field Optional minimum TLS version, for example `TLSv1.
- TlsOptions.trustAll method Returns a copy that trusts all peers.
- TlsOptions.verifyPeer field True when peer certificates and host names must be verified.
- TlsOptions.withCaFile method Returns a copy with a custom CA certificate file.
- TlsOptions.withCaPath method Returns a copy with a custom CA certificate directory.
- TlsOptions.withClientCertificate method Returns a copy with a client certificate and private key.
- TlsOptions.withTlsVersions method Returns a copy with minimum and optional maximum TLS versions.
- ToggleButton class Toggle button widget.
- ToggleButton.ToggleButton constructor
- ToggleButton.isChecked property
- Tool annotation Declares that a method can be exposed as an LLM tool.
- Tool.description property Human-readable tool description.
- Tool.name property External tool name visible by the LLM provider.
- ToolBinding class Internal immutable binding between one exposed tool name and its implementation.
- ToolBinding.ToolBinding constructor Creates one internal binding entry.
- ToolBinding.handle property Stored native handle of the implementation instance.
- ToolBinding.methodName property Target method name on the implementation.
- ToolBinding.paramNames property Ordered external parameter names.
- ToolBinding.paramTypes property Ordered declared parameter types.
- ToolBinding.toolName property External tool name exposed to providers.
- ToolCall class Tool call requested by an LLM provider.
- ToolCall.ToolCall constructor Creates a tool call.
- ToolCall.arguments property Decoded arguments.
- ToolCall.id property Provider-side call identifier.
- ToolCall.name property Requested tool name.
- ToolCall.toString method
- ToolRegistry class Registry of callable tools exposed to an LLM session.
- ToolRegistry.builder method Creates a fluent builder.
- ToolRegistry.definitions method Returns provider-ready tool definitions.
- ToolRegistry.execute method Executes one tool call and returns its textual result.
- ToolRegistry.extractAnnotationValue method
- ToolRegistry.isEmpty property Returns true when at least one tool is registered.
- ToolRegistryBuilder class Builder used to register one or more tool interfaces.
- ToolRegistryBuilder.add method Adds one tool interface implementation.
- ToolRegistryBuilder.build method Materializes the immutable registry.
- TransactionIsolation enum Transaction isolation level.
- Transient annotation Ignore un champ lors de la persistance.
- Transport class High-level sending helper inspired by JavaMail `Transport`.
- Transport.deliver method Sends a message using either the provided session or the session attached
to the message itself.
- Tuple class Immutable positional tuple.
- Tuple.Tuple constructor Builds a tuple from the provided positional values.
- Tuple.operator[] method Returns the value at the given position.
- Tuple.size property Number of elements in this tuple.
- Tuple.toString method Returns a normalized textual representation.
- Type class Class representing a type in the reflection system.
- Type.FLAG_ABSTRACT field Flag used for abstract types/members.
- Type.FLAG_ANNOTATION field Flag used for annotations.
- Type.FLAG_ENUM field Flag used for enums.
- Type.FLAG_FINAL field Flag used for final types/members.
- Type.FLAG_INTERFACE field Flag used for interfaces.
- Type.FLAG_NATIVE field Flag used for native members.
- Type.FLAG_OVERRIDE field Flag used for override members.
- Type.FLAG_PRIVATE field Flag used for private members/types.
- Type.FLAG_PROTECTED field Flag used for protected members/types.
- Type.FLAG_PUBLIC field Flag used for public members/types.
- Type.FLAG_READONLY field Flag used for readonly members.
- Type.FLAG_STATIC field Flag used for static members.
- Type.Type constructor Constructor for Type
- Type.annotations property Returns annotations applied to the type.
- Type.attributes property Reflected attributes declared on the type.
- Type.fullName property Fully qualified type name.
- Type.genericParameterCount property Returns the number of generic parameters declared by the base type.
- Type.genericParameterNames method Returns the generic parameter names declared by the base type.
- Type.getAttribute method Method to get a specific attribute of the type.
- Type.getAttributes method Method to get the attributes of the type.
- Type.getConstructor method Returns the default constructor metadata.
- Type.getMethod method Method to get a specific method of the type.
- Type.getMethods method Method to get the methods of the type.
- Type.getProperties method Method to get the properties of the type.
- Type.getProperty method Method to get a specific property of the type.
- Type.implementedInterfaces property Returns interfaces implemented by this type.
- Type.isAbstract property Indicates whether the type is abstract.
- Type.isAnnotation property Indicates whether the type is an annotation.
- Type.isEnum property Indicates whether the type is an enum.
- Type.isFinal property Indicates whether the type is final.
- Type.isGenericInstantiation property Indicates whether this type represents a concrete generic instantiation.
- Type.isInterface property Indicates whether the type is an interface.
- Type.isNative property Indicates whether the type is native.
- Type.isOverride property Indicates whether the type is marked as override.
- Type.isPrivate property Indicates whether the type is private.
- Type.isProtected property Indicates whether the type is protected.
- Type.isPublic property Indicates whether the type is public.
- Type.isReadonly property Indicates whether the type is marked readonly.
- Type.isStatic property Indicates whether the type is static.
- Type.name property Short type name without package prefix.
- Type.operator!= method Returns the negation of type equality.
- Type.operator== method Compares two reflected types by full name.
- Type.superType property Returns the direct parent type, if any.
- Type.toString method Returns the full type name when available.
- TypeError class Exception thrown when a type error is detected.
- TypeError.TypeError constructor Creates a type error.
- TypeError.message field Human-readable type error message.
- TypeInfo interface Schema type metadata associated with DOM nodes.
- TypeInfo.DERIVATION_EXTENSION field
- TypeInfo.DERIVATION_LIST field
- TypeInfo.DERIVATION_RESTRICTION field Type derivation method constants.
- TypeInfo.DERIVATION_UNION field
- TypeInfo.isDerivedFrom method Indicates whether this type derives from another schema type.
- TypeInfo.typeName property Schema type name.
- TypeInfo.typeNamespace property Schema type namespace URI.
- TypeLoader class Class responsible for loading types in the reflection system.
- TypeLoader.attributeCount method
- TypeLoader.attributeFlags method
- TypeLoader.attributeName method
- TypeLoader.attributeType method
- TypeLoader.load method Method to load a type by its name.
- TypeLoader.methodAnnotationCount method Reflection helper: returns the number of annotations on a method.
- TypeLoader.methodAnnotationName method Reflection helper: returns method annotation name by index.
- TypeLoader.methodCount method Reflection helper: returns the number of methods declared on a type.
- TypeLoader.methodFlags method
- TypeLoader.methodName method Reflection helper: returns method name by index.
- TypeLoader.methodParameterAnnotationCount method Reflection helper: returns the number of annotations on a method parameter.
- TypeLoader.methodParameterAnnotationName method Reflection helper: returns parameter annotation name by index.
- TypeLoader.methodParameterCount method Reflection helper: returns the number of parameters of a method.
- TypeLoader.methodParameterName method Reflection helper: returns parameter name by index.
- TypeLoader.methodParameterType method Reflection helper: returns parameter type by index.
- TypeLoader.methodReturnType method Reflection helper: returns method return type by index.
- TypeLoader.propertyCount method
- TypeLoader.propertyFlags method
- TypeLoader.propertyName method
- TypeLoader.propertyType method
- TypeLoader.typeAnnotationCount method
- TypeLoader.typeAnnotationName method
- TypeLoader.typeGenericParameterCount method
- TypeLoader.typeGenericParameterName method
- TypeNotFoundException class Exception raised when reflection cannot resolve a requested type name.
- TypeNotFoundException.TypeNotFoundException constructor Creates a type-not-found exception.
- Types class SQL type code constants used by metadata and parameter binding.
- Types.ARRAY field
- Types.BIGINT field
- Types.BINARY field
- Types.BIT field
- Types.BLOB field
- Types.BOOLEAN field
- Types.CHAR field
- Types.CLOB field
- Types.DATE field
- Types.DECIMAL field
- Types.DOUBLE field
- Types.FLOAT field
- Types.INTEGER field
- Types.LONGNVARCHAR field
- Types.LONGVARBINARY field
- Types.LONGVARCHAR field
- Types.NCHAR field
- Types.NCLOB field
- Types.NULL field
- Types.NUMERIC field
- Types.NVARCHAR field
- Types.OTHER field
- Types.REAL field
- Types.REF field
- Types.ROWID field
- Types.SMALLINT field
- Types.SQLXML field
- Types.STRUCT field
- Types.TIME field
- Types.TIMESTAMP field
- Types.TINYINT field
- Types.VARBINARY field
- Types.VARCHAR field
U
V
W
- WebComponent class Placeholder for an embeddable web component.
- WebComponent.WebComponent constructor
- WebComponent.url property
- Widget class Base UI widget.
- Widget class Base class for the window widgets.
- Widget.Widget constructor
- Widget.accentColor property Accent color used by focused and primary controls.
- Widget.add method
- Widget.backgroundColor property Background color used by filled controls.
- Widget.baseAnsiStyle method Shared terminal base style used after ANSI fragments that locally override colors.
- Widget.blur method Clears keyboard focus on this widget.
- Widget.borderColor property Border color used by framed controls.
- Widget.bottom property Bottom edge of the widget.
- Widget.canFocus property Whether the widget can own keyboard focus.
- Widget.captureRenderFrame method Stores the latest rendered logical frame for debugging/validation.
- Widget.children method
- Widget.clearChildren method
- Widget.configureCursor method Lets a widget place the terminal cursor inside its own frame area.
- Widget.containsPoint method Returns true when a point is inside this widget bounds.
- Widget.cornerRadius property Default corner radius for rounded controls.
- Widget.focusNext method Moves focus to the next focusable descendant.
- Widget.focusable property Returns true when this widget can receive keyboard focus.
- Widget.focused property Focus state of this widget.
- Widget.font property Default font used to render this widget.
- Widget.foregroundColor property Main text and icon color.
- Widget.handleEvent method Handles a keyboard/terminal event.
- Widget.handleMouseEvent method Handles a mouse event in widget-local coordinates.
- Widget.hasActiveTextInput method Returns true when this widget currently owns an active text input.
- Widget.hasFocus property Focus flag maintained by the GUI backend.
- Widget.height property Computed height.
- Widget.idle method Called by the terminal event loop when no input event is pending.
- Widget.isEnabled property Enabled flag.
- Widget.isHovered property Hover flag maintained by the GUI backend.
- Widget.isManaged property When false, layout managers ignore this widget.
- Widget.isVisible property Visibility flag.
- Widget.lastRenderAnsi field
- Widget.lastRenderFrame property Last rendered logical frame, when available.
- Widget.lastRenderHeight field
- Widget.lastRenderPlain field
- Widget.lastRenderWidth field
- Widget.layout field
- Widget.layoutParams property Optional layout-specific metadata.
- Widget.margin property Outer margins expressed as `(left, top, right, bottom)`.
- Widget.maxHeight property Maximal allowed height.
- Widget.maxWidth property Maximal allowed width.
- Widget.minHeight property Minimal allowed height.
- Widget.minWidth property Minimal allowed width.
- Widget.paint method
- Widget.paint method Paint hook used by the future graphical backend.
- Widget.paintToFrame method Paints the widget directly into a logical terminal frame.
- Widget.parent property Parent container of this widget.
- Widget.performLayout method
- Widget.position property Widget top-left position expressed as `(x, y)`.
- Widget.preferredHeight property Preferred height used by layout managers.
- Widget.preferredWidth property Preferred width used by layout managers.
- Widget.refresh method Refreshes widget content when the widget maintains an internal render cache.
- Widget.renderAnsiSnapshot method
- Widget.renderPlainSnapshot method
- Widget.repaint method Requests a repaint of the owning window without changing layout.
- Widget.requestFocus method Requests keyboard focus for this widget.
- Widget.resolvePreferredHeight method Resolved preferred height after min/max constraints.
- Widget.resolvePreferredWidth method Resolved preferred width after min/max constraints.
- Widget.resolvedFont method Returns the effective font description used by painter-based renderers.
- Widget.right property Right edge of the widget.
- Widget.scrollbarThumbGlyph method Shared scrollbar thumb glyph.
- Widget.scrollbarTrackGlyph method Shared scrollbar track glyph.
- Widget.setBounds method Updates the computed widget bounds.
- Widget.size property Widget viewport size expressed as `(width, height)`.
- Widget.sizePolicy property Layout growth policy expressed as `(horizontal, vertical)`.
- Widget.styleClass property Optional KSS class name.
- Widget.terminalPromptVisible method Returns true when the terminal should draw its built-in prompt below this widget.
- Widget.visible field
- Widget.width property Computed width.
- Widget.window property Owning window, propagated when the widget is inserted in a window tree.
- Widget.x property Computed left position.
- Widget.y property Computed top position.
- Window class Base class for graphical windows.
- Window.Window constructor
- Window.Window constructor
- Window.appearanceMode property Appearance mode: `system`, `light` or `dark`.
- Window.applyLayout method Synchronizes window bounds with the requested size.
- Window.capture method Captures the current window client area into a BMP image.
- Window.capture method Captures the current window client area into a BMP image.
- Window.centerIn method Centers the window inside another container or on screen.
- Window.close method Closes the window.
- Window.relayout method Replays the window layout using the current bounds.
- Window.render method Native-facing rendering hook.
- Window.repaint method Repaints the native window client area without forcing a relayout.
- Window.run method Starts the native event loop for this window.
- Window.setBounds method
- Window.show method Shows the window.
- Window.size property Requested size expressed as `(width, height)`.
- Window.theme method Returns the active KSS theme for this window.
- Window.title property Window title.
- Workbook class XLSX workbook reader and writer.
- Workbook.Workbook constructor Creates or reads a workbook.
- Workbook.Workbook constructor Creates or reads a workbook.
- Workbook.addChart method Creates a chart owned by this workbook.
- Workbook.addFormat method Adds a cell format to the workbook style table.
- Workbook.addWorksheet method Adds a worksheet.
- Workbook.close method Closes the workbook.
- Workbook.save method Writes the workbook to its configured path.
- Workbook.save method Writes the workbook to a specific path.
- Workbook.sheetCount property Number of worksheets in the workbook.
- Workbook.worksheet method Returns a worksheet by zero-based index.
- Workbook.worksheet method Returns a worksheet by name.
- Workbook.worksheets property Ordered worksheet collection.
- WorkbookMode enum Workbook opening mode.
- WorkbookMode.operator| method Combines workbook mode flags.
- WorkbookWorksheets class Workbook worksheet collection.
- WorkbookWorksheets.WorkbookWorksheets constructor Creates an empty worksheet collection.
- WorkbookWorksheets.count method Counts worksheet references equal to `item`.
- WorkbookWorksheets.join method Joins worksheet names.
- WorkbookWorksheets.operator in method Returns true when a worksheet reference exists in this collection.
- WorkbookWorksheets.operator[] method Returns a worksheet by zero-based index.
- WorkbookWorksheets.operator[] method Returns a worksheet by name.
- WorkbookWorksheets.size property Number of worksheets.
- Worksheet class Worksheet contained in an XLSX workbook.
- Worksheet.Worksheet constructor Creates a worksheet.
- Worksheet.hasCell method Returns true when a cell exists.
- Worksheet.insertChart method Inserts a chart anchored at a cell.
- Worksheet.maxColumn property Maximum one-based column index containing data.
- Worksheet.maxRow property Maximum one-based row index containing data.
- Worksheet.name property Worksheet name.
- Worksheet.read method Reads one cell value.
- Worksheet.readString method Reads one cell value as text.
- Worksheet.rows method Returns a dense row matrix up to the largest written cell.
- Worksheet.setColumn method Sets the width of a column range.
- Worksheet.setColumn method Sets the width of a column range.
- Worksheet.write method Writes one cell value.
- Worksheet.writeColumn method Writes values vertically from a starting cell.
- Worksheet.writeColumn method Writes text values vertically from a starting cell.
- Worksheet.writeColumn method Writes floating-point values vertically from a starting cell.
- Worksheet.writeColumn method Writes object values vertically from a starting cell.
X
Z
A
K
O