Uses of Interface
com.teamdev.jxbrowser.js.JsSymbol

Packages that use JsSymbol
Package
Description
This package provides classes that allow you to work with the JavaScript to Java bridge.
  • Uses of JsSymbol in com.teamdev.jxbrowser.js

    Methods in com.teamdev.jxbrowser.js that return types with arguments of type JsSymbol
    Modifier and Type
    Method
    Description
    Returns an immutable list of the symbol properties of this JavaScript object, excluding the properties from the prototype objects.
    Methods in com.teamdev.jxbrowser.js with parameters of type JsSymbol
    Modifier and Type
    Method
    Description
    boolean
    JsObject.hasProperty(JsSymbol jsSymbol)
    Checks whether this JavaScript object or any of its prototypes has a property with the given jsSymbol key.
    <T> Optional<T>
    JsObject.property(JsSymbol jsSymbol)
    Returns an Optional describing the value of the JavaScript object's property with the given jsSymbol key or an empty Optional if there is no such property or its value is undefined.
    boolean
    JsObject.putProperty(JsSymbol jsSymbol, Object value)
    Creates a new property with the given jsSymbol key or updates the existing one in the current JavaScript object and returns true if the property with the given name was created or updated successfully.
    boolean
    JsObject.removeProperty(JsSymbol jsSymbol)
    Removes a property with the given jsSymbol key in the JavaScript object and returns true if the property was successfully removed.