Uses of Annotation Interface
com.teamdev.jxbrowser.annotation.Immutable
Packages that use Immutable
Package
Description
This package provides the classes that allow you to work with browsers.
This package provides the classes that allow you to work with browser callback.
This package provides the classes that allow you to work with browser events.
Provides interfaces and classes for the browser content capture.
Contains classes that allow you to manage cookies.
Provides the interfaces and classes for the Document Object Model (DOM).
Contains the classes and interfaces of the DOM events.
This package provides the classes that allow you to manage downloads.
This package provides the classes that allow you to work with engines.
This package provides classes that allow you to work with the JavaScript to Java bridge.
Provides interfaces and classes for working with media content and devices.
The media callbacks.
This package contains interfaces and classes for working with context menu.
Contains classes and interfaces for working with navigation.
Contains classes and interfaces for working with network.
The network service callbacks.
Contains classes and interfaces for working with SSL certificates.
Contains classes and interfaces for filtering the available plugins.
Contains classes and interfaces for printing.
Contains classes and interfaces related to print settings.
Contains interfaces for working with Chromium profiles.
This package provides classes and interfaces for spell checking.
This package contains the classes and interfaces for working with zoom on the web pages.
-
Uses of Immutable in com.teamdev.jxbrowser.browser
Methods in com.teamdev.jxbrowser.browser with annotations of type ImmutableModifier and TypeMethodDescriptionBrowser.captureSessions()
Returns an immutable list of all active capture sessions initiated by the browser. -
Uses of Immutable in com.teamdev.jxbrowser.browser.callback
Methods in com.teamdev.jxbrowser.browser.callback with annotations of type ImmutableModifier and TypeMethodDescriptiondefault List<Certificate>
SelectClientCertificateCallback.Params.certificates()
Returns an immutable list of the certificates allowed by the server.default List<ContextMenuItem>
ShowContextMenuCallback.Params.customContextMenuItems()
Returns an immutable list of the custom context menu items.default List<MediaReceiver>
StartPresentationCallback.Params.list()
Returns the list of media receivers that are able to start presentation from StartPresentationCallback.Params.presentationRequest(). -
Uses of Immutable in com.teamdev.jxbrowser.browser.event
Methods in com.teamdev.jxbrowser.browser.event with annotations of type ImmutableModifier and TypeMethodDescriptiondefault List<SpellCheckingResult>
SpellCheckCompleted.results()
Returns an immutable list of the spell checking results. -
Uses of Immutable in com.teamdev.jxbrowser.capture
Methods in com.teamdev.jxbrowser.capture with annotations of type ImmutableModifier and TypeMethodDescriptiondefault List<CaptureSource>
CaptureSources.applicationWindows()
Returns the list of available application windows for capture.default List<CaptureSource>
CaptureSources.browsers()
Returns the list of available browsers for capture.default List<CaptureSource>
CaptureSources.screens()
Returns the list of available screens for capture. -
Uses of Immutable in com.teamdev.jxbrowser.card
Methods in com.teamdev.jxbrowser.card with annotations of type Immutable -
Uses of Immutable in com.teamdev.jxbrowser.cast
Methods in com.teamdev.jxbrowser.cast with annotations of type ImmutableModifier and TypeMethodDescriptionCastSessions.list()
Returns the list of alive cast sessions.MediaReceivers.list()
Returns the list of connected (not unavailable) media receivers.Screens.list()
Returns the list of connected screens whose content can be cast to a media receiver. -
Uses of Immutable in com.teamdev.jxbrowser.cookie
Methods in com.teamdev.jxbrowser.cookie with annotations of type Immutable -
Uses of Immutable in com.teamdev.jxbrowser.dom
Methods in com.teamdev.jxbrowser.dom with annotations of type ImmutableModifier and TypeMethodDescriptionXPathResult.asSnapshotNodes()
Returns the XPath result represented as an immutable list of the snapshot nodes.Element.attributeNodes()
Returns an immutable list that contains attribute nodes of the element.Element.attributes()
Returns an immutable map that contains attributes of the element.Node.children()
Returns an immutable list of all children of this node.FormElement.controls()
Returns an immutable list of the form controls or an empty list if the form got no controls on it.InputElement.files()
Returns an immutable collection of the file paths if the input type is 'file' or an empty collection if the input does not have a value.SearchContext.findElementsByClassName
(String className) Returns an immutable list of theElement
objects found in the current search context by the givenclassName
.SearchContext.findElementsByCssSelector
(String cssSelector) Returns an immutable list of theElement
objects found in the current search context by the givencssSelector
.SearchContext.findElementsById
(String id) Returns an immutable list of theElement
objects found in the current search context by the givenid
.SearchContext.findElementsByName
(String name) Returns an immutable list of theElement
objects found in the current search context by the givenname
.SearchContext.findElementsByTagName
(String tagName) Returns an immutable list of theElement
objects found in the current search context by the giventagName
.SelectElement.options()
Returns an immutable list of the option elements of the select element. -
Uses of Immutable in com.teamdev.jxbrowser.dom.event
Methods in com.teamdev.jxbrowser.dom.event with annotations of type ImmutableModifier and TypeMethodDescriptionEventTarget.eventListeners
(EventType eventType, boolean useCapture) Returns the immutable list of event listeners that listen events of the giveneventType
in a phase that corresponds the givenuseCapture
. -
Uses of Immutable in com.teamdev.jxbrowser.download
Methods in com.teamdev.jxbrowser.download with annotations of type Immutable -
Uses of Immutable in com.teamdev.jxbrowser.engine
Classes in com.teamdev.jxbrowser.engine with annotations of type ImmutableModifier and TypeClassDescriptionfinal class
The options that are used to configureEngine
instances.Methods in com.teamdev.jxbrowser.engine with annotations of type ImmutableModifier and TypeMethodDescriptionEngine.browsers()
Returns an immutable list of aliveBrowser
instances including child popup browsers for the default profile.EngineOptions.proprietaryFeatures()
Returns a set of enabled proprietary features.EngineOptions.schemes()
Returns an immutable map of the schemes that will be intercepted.EngineOptions.secureOriginWhiteList()
Returns an immutable list of the insecure origins that will be treated as secure.EngineOptions.switches()
Returns an immutable list of the Chromium switches that will be passed to the Chromium Main process. -
Uses of Immutable in com.teamdev.jxbrowser.js
Methods in com.teamdev.jxbrowser.js with annotations of type ImmutableModifier and TypeMethodDescriptionJsObject.ownPropertyNames()
Returns an immutable list of the names of the properties of this JavaScript object, both enumerable and non-enumerable, excluding the properties from the prototype objects.JsObject.propertyNames()
Returns an immutable list of the names of the enumerable properties of this JavaScript object, including the properties from the prototype objects. -
Uses of Immutable in com.teamdev.jxbrowser.media
Methods in com.teamdev.jxbrowser.media with annotations of type ImmutableModifier and TypeMethodDescriptionMediaDevices.list
(MediaDeviceType type) Returns an immutable list of the details about all the available media input devices of the giventype
or an empty collection if there are no devices of the giventype
. -
Uses of Immutable in com.teamdev.jxbrowser.media.callback
Methods in com.teamdev.jxbrowser.media.callback with annotations of type ImmutableModifier and TypeMethodDescriptiondefault List<MediaDevice>
SelectMediaDeviceCallback.Params.mediaDevices()
Returns the list of available media input devices of specified type. -
Uses of Immutable in com.teamdev.jxbrowser.net
Methods in com.teamdev.jxbrowser.net with annotations of type ImmutableModifier and TypeMethodDescriptiondefault List<FormData.Pair>
FormData.data()
Returns an immutable list of the key-value pairs each representing a segment of a form data or an empty list if the form does not contain any data.default List<MultipartFormData.Pair>
MultipartFormData.data()
Returns an immutable list of the key-value pairs each representing a segment of a multi-part form data or an empty list if the form does not contain any data.default List<HttpHeader>
UrlRequestJob.Options.httpHeaders()
Returns an immutable list of HTTP headers. -
Uses of Immutable in com.teamdev.jxbrowser.net.callback
Methods in com.teamdev.jxbrowser.net.callback with annotations of type ImmutableModifier and TypeMethodDescriptionCanGetCookiesCallback.Params.cookies()
Returns an immutable list of cookies that are going to be sent with the URL request.default List<HttpHeader>
BeforeSendUploadDataCallback.Params.httpHeaders()
Returns an immutable list of the HTTP headers of the request or an empty list if the request does not have any HTTP headers.default List<HttpHeader>
BeforeStartTransactionCallback.Params.httpHeaders()
Returns an immutable list of the HTTP headers of the request or an empty list if the request does not have any HTTP headers.InterceptUrlRequestCallback.Params.httpHeaders()
Returns an immutable list of the HTTP headers of the request or an empty list if the request does not have any HTTP headers.default List<HttpHeader>
ReceiveHeadersCallback.Params.httpHeaders()
Returns an immutable list of the HTTP headers of the request or an empty list if the request does not have any HTTP headers.default List<Certificate>
VerifyCertificateCallback.Params.intermediateCertificates()
Returns the list of intermediate certificates in the chain of the validated certificate.default List<CertVerificationError>
VerifyCertificateCallback.Params.verificationErrors()
Returns the list of errors found by the default SSL certificate verifier.default List<CertVerificationStatus>
VerifyCertificateCallback.Params.verificationStatuses()
Deprecated, for removal: This API element is subject to removal in a future version. -
Uses of Immutable in com.teamdev.jxbrowser.net.tls
Methods in com.teamdev.jxbrowser.net.tls with annotations of type ImmutableModifier and TypeMethodDescriptiondefault List<Certificate>
Certificate.intermediateCertificates()
Returns the list of intermediate certificates associated with this certificate that may be needed for chain building.default List<Certificate>
ClientCertificate.intermediateCertificates()
Returns the list of intermediate certificates associated with this certificate needed for chain building. -
Uses of Immutable in com.teamdev.jxbrowser.password
Methods in com.teamdev.jxbrowser.password with annotations of type ImmutableModifier and TypeMethodDescriptionPasswordStore.all()
Returns all saved and blacklisted (marked as "never-saved") records from the password store.PasswordStore.allNeverSaved()
Returns only blacklisted (marked as "never-saved") records from the password store.PasswordStore.allSaved()
Returns only saved records from the password store. -
Uses of Immutable in com.teamdev.jxbrowser.plugin
Methods in com.teamdev.jxbrowser.plugin with annotations of type Immutable -
Uses of Immutable in com.teamdev.jxbrowser.print
Methods in com.teamdev.jxbrowser.print with annotations of type ImmutableModifier and TypeMethodDescriptiondefault Set<ColorModel>
Capabilities.colorModels()
Returns an immutable set of the supported color models.default Set<DuplexMode>
Capabilities.duplexModes()
Returns an immutable set of the supportedDuplexMode
values.Printers.list()
Returns an immutable list of the available system printers.Capabilities.paperSizes()
Returns an immutable set of the supportedPaperSize
values.static Collection<PaperSize>
PaperSize.values()
Returns an immutable collection of the knownPaperSize
values. -
Uses of Immutable in com.teamdev.jxbrowser.print.settings
Methods in com.teamdev.jxbrowser.print.settings with annotations of type ImmutableModifier and TypeMethodDescriptionPageRanges.pageRanges()
Returns an immutable set containing the page ranges to print. -
Uses of Immutable in com.teamdev.jxbrowser.profile
Methods in com.teamdev.jxbrowser.profile with annotations of type ImmutableModifier and TypeMethodDescriptionProfile.browsers()
Returns an immutable list of aliveBrowser
instances including child popup browsers for this profile or an empty list if the profile does not have any aliveBrowser
.Profiles.list()
Returns an immutable list of the available profiles including the default profile. -
Uses of Immutable in com.teamdev.jxbrowser.spellcheck
Methods in com.teamdev.jxbrowser.spellcheck with annotations of type Immutable -
Uses of Immutable in com.teamdev.jxbrowser.user
Methods in com.teamdev.jxbrowser.user with annotations of type Immutable -
Uses of Immutable in com.teamdev.jxbrowser.zoom
Methods in com.teamdev.jxbrowser.zoom with annotations of type Immutable
VerifyCertificateCallback.Params.verificationErrors()