Package | Description |
---|---|
com.teamdev.jxbrowser.browser |
This package provides the classes that allow you to work with browsers.
|
com.teamdev.jxbrowser.browser.callback |
This package provides the classes that allow you to work with browser callback.
|
com.teamdev.jxbrowser.browser.event |
This package provides the classes that allow you to work with browser events.
|
com.teamdev.jxbrowser.capture |
Provides interfaces and classes for the browser content capture.
|
com.teamdev.jxbrowser.card | |
com.teamdev.jxbrowser.cast | |
com.teamdev.jxbrowser.cookie |
Contains classes that allow you to manage cookies.
|
com.teamdev.jxbrowser.dom |
Provides the interfaces and classes for the Document Object Model (DOM).
|
com.teamdev.jxbrowser.dom.event |
Contains the classes and interfaces of the DOM events.
|
com.teamdev.jxbrowser.download |
This package provides the classes that allow you to manage downloads.
|
com.teamdev.jxbrowser.engine |
This package provides the classes that allow you to work with engines.
|
com.teamdev.jxbrowser.js |
This package provides classes that allow you to work with the JavaScript to Java bridge.
|
com.teamdev.jxbrowser.media |
Provides interfaces and classes for working with media content and devices.
|
com.teamdev.jxbrowser.media.callback |
The media callbacks.
|
com.teamdev.jxbrowser.menu |
This package contains interfaces and classes for working with context menu.
|
com.teamdev.jxbrowser.navigation |
Contains classes and interfaces for working with navigation.
|
com.teamdev.jxbrowser.net |
Contains classes and interfaces for working with network.
|
com.teamdev.jxbrowser.net.callback |
The network service callbacks.
|
com.teamdev.jxbrowser.net.tls |
Contains classes and interfaces for working with SSL certificates.
|
com.teamdev.jxbrowser.password | |
com.teamdev.jxbrowser.plugin |
Contains classes and interfaces for filtering the available plugins.
|
com.teamdev.jxbrowser.print |
Contains classes and interfaces for printing.
|
com.teamdev.jxbrowser.print.settings |
Contains classes and interfaces related to print settings.
|
com.teamdev.jxbrowser.profile |
Contains interfaces for working with Chromium profiles.
|
com.teamdev.jxbrowser.spellcheck |
This package provides classes and interfaces for spell checking.
|
com.teamdev.jxbrowser.user | |
com.teamdev.jxbrowser.zoom |
This package contains the classes and interfaces for working with zoom on the web pages.
|
Modifier and Type | Method and Description |
---|---|
java.util.List<CaptureSession> |
Browser.captureSessions()
Returns an immutable list of all active capture sessions initiated by the browser.
|
Modifier and Type | Method and Description |
---|---|
default java.util.List<Certificate> |
SelectClientCertificateCallback.Params.certificates()
Returns an immutable list of the certificates allowed by the server.
|
default java.util.List<ContextMenuItem> |
ShowContextMenuCallback.Params.customContextMenuItems()
Returns an immutable list of the custom context menu items.
|
default java.util.List<MediaReceiver> |
StartPresentationCallback.Params.list()
Returns the list of media receivers that are able to start presentation from
StartPresentationCallback.Params.presentationRequest().
|
Modifier and Type | Method and Description |
---|---|
default java.util.List<SpellCheckingResult> |
SpellCheckCompleted.results()
Returns an immutable list of the spell checking results.
|
Modifier and Type | Method and Description |
---|---|
default java.util.List<CaptureSource> |
CaptureSources.applicationWindows()
Returns the list of available application windows for capture.
|
default java.util.List<CaptureSource> |
CaptureSources.browsers()
Returns the list of available browsers for capture.
|
default java.util.List<CaptureSource> |
CaptureSources.screens()
Returns the list of available screens for capture.
|
Modifier and Type | Method and Description |
---|---|
java.util.List<CreditCard> |
CreditCards.all()
Returns all credit cards.
|
Modifier and Type | Method and Description |
---|---|
java.util.List<Screen> |
Screens.list()
Returns the list of connected screens whose content can be cast to a media receiver.
|
java.util.List<MediaReceiver> |
MediaReceivers.list()
Returns the list of connected (not unavailable)
media receivers.
|
java.util.List<CastSession> |
CastSessions.list()
Returns the list of alive cast sessions.
|
Modifier and Type | Method and Description |
---|---|
java.util.List<Cookie> |
CookieStore.cookies()
Returns an immutable list of all the cookies available in the cookie store.
|
java.util.List<Cookie> |
CookieStore.cookies(java.lang.String url)
Returns an immutable list of cookies for the given
url . |
Modifier and Type | Method and Description |
---|---|
java.util.List<Node> |
XPathResult.asSnapshotNodes()
Returns the XPath result represented as an immutable list of the snapshot nodes.
|
java.util.List<Attribute> |
Element.attributeNodes()
Returns an immutable list that contains attribute nodes of the element.
|
java.util.Map<java.lang.String,java.lang.String> |
Element.attributes()
Returns an immutable map that contains attributes of the element.
|
java.util.List<Node> |
Node.children()
Returns an immutable list of all children of this node.
|
java.util.List<FormControlElement> |
FormElement.controls()
Returns an immutable list of the form controls or an empty list if the form got no controls
on it.
|
java.util.Collection<java.lang.String> |
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.
|
java.util.List<Element> |
SearchContext.findElementsByClassName(java.lang.String className)
Returns an immutable list of the
Element objects found in the current search context
by the given className . |
java.util.List<Element> |
SearchContext.findElementsByCssSelector(java.lang.String cssSelector)
Returns an immutable list of the
Element objects found in the current search context
by the given cssSelector . |
java.util.List<Element> |
SearchContext.findElementsById(java.lang.String id)
Returns an immutable list of the
Element objects found in the current search context
by the given id . |
java.util.List<Element> |
SearchContext.findElementsByName(java.lang.String name)
Returns an immutable list of the
Element objects found in the current search context
by the given name . |
java.util.List<Element> |
SearchContext.findElementsByTagName(java.lang.String tagName)
Returns an immutable list of the
Element objects found in the current search context
by the given tagName . |
java.util.List<OptionElement> |
SelectElement.options()
Returns an immutable list of the option elements of the select element.
|
Modifier and Type | Method and Description |
---|---|
java.util.List<Observer<Event>> |
EventTarget.eventListeners(EventType eventType,
boolean useCapture)
Returns the immutable list of event listeners that listen events of the given
eventType in a phase that corresponds the given useCapture . |
Modifier and Type | Method and Description |
---|---|
java.util.List<Download> |
Downloads.list()
Returns an immutable list of all downloads including already completed downloads during this
application session and the active downloads.
|
Modifier and Type | Class and Description |
---|---|
class |
EngineOptions
The options that are used to configure
Engine instances. |
Modifier and Type | Method and Description |
---|---|
java.util.List<Browser> |
Engine.browsers()
Returns an immutable list of alive
Browser instances including child popup browsers
for the default profile. |
java.util.Set<ProprietaryFeature> |
EngineOptions.proprietaryFeatures()
Returns a set of enabled proprietary features.
|
java.util.Map<Scheme,InterceptUrlRequestCallback> |
EngineOptions.schemes()
Returns an immutable map of the schemes that will be intercepted.
|
java.util.List<java.lang.String> |
EngineOptions.secureOriginWhiteList()
Returns an immutable list of the insecure origins that will be treated as secure.
|
java.util.List<java.lang.String> |
EngineOptions.switches()
Returns an immutable list of the Chromium switches that will be passed to the Chromium Main
process.
|
Modifier and Type | Method and Description |
---|---|
java.util.List<java.lang.String> |
JsObject.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.
|
java.util.List<java.lang.String> |
JsObject.propertyNames()
Returns an immutable list of the names of the enumerable properties of this JavaScript
object, including the properties from the prototype objects.
|
Modifier and Type | Method and Description |
---|---|
java.util.List<MediaDevice> |
MediaDevices.list(MediaDeviceType type)
Returns an immutable list of the details about all the available media input devices of the
given
type or an empty collection if there are no devices of the given type . |
Modifier and Type | Method and Description |
---|---|
default java.util.List<MediaDevice> |
SelectMediaDeviceCallback.Params.mediaDevices()
Returns the list of available media input devices of specified type.
|
Modifier and Type | Method and Description |
---|---|
default java.util.List<java.lang.String> |
SpellCheckMenu.dictionarySuggestions()
Returns an immutable list of suggested replacements for a misspelled word under the cursor or
an empty list if there are no suggestions.
|
default java.util.List<ContextMenuItem> |
ContextMenuItem.items()
Returns an immutable list of the sub-items of the context menu item.
|
Modifier and Type | Method and Description |
---|---|
default java.util.List<HttpHeader> |
LoadUrlParams.extraHeaders()
Returns an immutable list of the extra HTTP headers that will be sent to the resource or an
empty list if there were no extra HTTP headers.
|
Modifier and Type | Method and Description |
---|---|
default java.util.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 java.util.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 java.util.List<HttpHeader> |
UrlRequestJob.Options.httpHeaders()
Returns an immutable list of HTTP headers.
|
Modifier and Type | Method and Description |
---|---|
default java.util.List<Cookie> |
CanGetCookiesCallback.Params.cookies()
Returns an immutable list of cookies that are going to be sent with the URL request.
|
default java.util.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.
|
default java.util.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.
|
java.util.List<HttpHeader> |
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 java.util.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 java.util.List<Certificate> |
VerifyCertificateCallback.Params.intermediateCertificates()
Returns the list of intermediate certificates in the chain of the validated certificate.
|
default java.util.List<CertVerificationError> |
VerifyCertificateCallback.Params.verificationErrors()
Returns the list of errors found by the default SSL certificate verifier.
|
default java.util.List<CertVerificationStatus> |
VerifyCertificateCallback.Params.verificationStatuses()
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
default java.util.List<Certificate> |
ClientCertificate.intermediateCertificates()
Returns the list of intermediate certificates associated with this certificate needed for
chain building.
|
default java.util.List<Certificate> |
Certificate.intermediateCertificates()
Returns the list of intermediate certificates associated with this certificate that may be
needed for chain building.
|
Modifier and Type | Method and Description |
---|---|
java.util.List<PasswordRecord> |
PasswordStore.all()
Returns all saved and blacklisted (marked as "never-saved")
records from the password store.
|
java.util.List<PasswordRecord> |
PasswordStore.allNeverSaved()
Returns only blacklisted (marked as "never-saved") records
from the password store.
|
java.util.List<PasswordRecord> |
PasswordStore.allSaved()
Returns only saved records from the password store.
|
Modifier and Type | Method and Description |
---|---|
java.util.List<Plugin> |
Plugins.list()
Returns an immutable list of the installed and available Chromium plugins or an empty list if
there are no installed and available plugins.
|
default java.util.List<MimeType> |
Plugin.mimeTypes()
Returns an immutable list of the MIME types supported by the plugin.
|
Modifier and Type | Method and Description |
---|---|
default java.util.Set<ColorModel> |
Capabilities.colorModels()
Returns an immutable set of the supported color models.
|
default java.util.Set<DuplexMode> |
Capabilities.duplexModes()
Returns an immutable set of the supported
DuplexMode values. |
java.util.List<SystemPrinter<SystemT>> |
Printers.list()
Returns an immutable list of the available system printers.
|
default java.util.Set<PaperSize> |
Capabilities.paperSizes()
Returns an immutable set of the supported
PaperSize values. |
static java.util.Collection<PaperSize> |
PaperSize.values()
Returns an immutable collection of the known
PaperSize values. |
Modifier and Type | Method and Description |
---|---|
java.util.Set<PageRange> |
PageRanges.pageRanges()
Returns an immutable set containing the page ranges to print.
|
Modifier and Type | Method and Description |
---|---|
java.util.List<Browser> |
Profile.browsers()
Returns an immutable list of alive
Browser instances including child popup browsers
for this profile or an empty list if the profile does not have any alive Browser . |
java.util.List<Profile> |
Profiles.list()
Returns an immutable list of the available profiles including the default profile.
|
Modifier and Type | Method and Description |
---|---|
java.util.List<Language> |
SpellChecker.languages()
Returns an immutable list of the languages used for spell checking.
|
Modifier and Type | Method and Description |
---|---|
java.util.List<UserDataProfile> |
UserDataProfiles.all()
Returns all user data records.
|
Modifier and Type | Method and Description |
---|---|
static java.util.List<ZoomLevel> |
ZoomLevel.values()
Returns an immutable list of the pre-defined zoom levels.
|