ProcessMIX Guide
  • Platform Overview
    • Introduction
    • Platform Purpose
    • Main Concepts
      • Organization Structure
      • Visual Language
      • Project Development Environment (IDE)
      • Deployment and Integration
      • Administration and Troubleshooting
    • First Steps
    • Change Log
      • 5.0.0
      • 5.0.5
      • 5.0.5.1
      • 5.0.5.2
      • 5.0.5.3
      • 5.0.5.4
  • Language Reference Guide
    • Overview
    • Data Structures and Types
      • Core Types (pdk.core)
      • Dictionary (pdk.asset.dictionary)
      • Scorecard (pdk.asset.scorecard)
      • Blockchain (pdk.blockchain)
      • Exceptions (pdk.ex)
      • Input/Output (pdk.io)
      • JSON Web Token (pdk.jwt)
      • Networking (pdk.net)
      • HTTP (pdk.net.http)
      • SOAP/Web Services (pdk.net.soap)
      • XML/DOM (pdk.net.xml)
      • S3 (pdk.s3)
      • SQL (pdk.sql)
      • Postgres (pdk.db.postgre)
      • Util (pdk.util)
      • Default Data Structure Field Values
    • Flows
      • Variables
        • Local Flow Variables
        • Node Variables
      • Flow Node Types
        • Core Nodes
          • In
          • Out
          • Assign
          • If
          • Switch
          • Iterator
          • Function Call
          • Subflow
          • Raise Exception
          • Exception Handler
          • Validator
        • Connector Nodes
          • Database Begin Transaction
          • Database Commit Transaction
          • Database Rollback Transaction
          • Database Query Executor
          • EVM Blockchain Functions
          • EVM Blockchain Smart Contract Functions
          • REST Service Executor
          • SOAP Service Executor
          • S3 Connector
          • SMB Connector
      • Expressions
      • Built-In Functions
        • Expression functions
          • pdk.util.Any
          • pdk.util.Array
          • pdk.util.Blockchain
          • pdk.util.Cast
          • pdk.util.Codec
          • pdk.util.Crypto
          • pdk.util.Date
          • pdk.util.File
          • pdk.util.Json
          • pdk.util.JWT
          • pdk.util.Map
          • pdk.util.Math
          • pdk.util.String
          • pdk.util.Util
        • Node functions
          • pdk.flow.Any
          • pdk.flow.Array
          • pdk.flow.File
          • pdk.flow.JsonArray
          • pdk.flow.JsonObject
          • pdk.flow.HttpRequest
          • pdk.flow.HttpResponse
          • pdk.flow.Logger
          • pdk.flow.Map
          • pdk.flow.Xml
            • pdk.flow.xml.XmlAttr
            • pdk.flow.xml.XmlElement
            • pdk.flow.xml.XmlNode
            • pdk.flow.xml.XmlDocument
            • pdk.flow.xml.XmlDocumentType
            • pdk.flow.xml.XmlDOMConfiguration
            • pdk.flow.xml.XmlDOMImplementation
            • pdk.flow.xml.XmlProcessingInstruction
            • pdk.flow.xml.XmlTypeInfo
            • pdk.flow.xml.XmlCharacterData
            • pdk.flow.xml.XmlText
            • pdk.flow.xml.XmlNamedNodeMap
          • pdk.node.BlockchainEth
          • pdk.node.S3
          • pdk.node.Smb
      • Exceptions
        • Checked Exceptions
        • Runtime Exceptions
    • Assets
      • Dictionary
      • Decision Table
      • Scorecard
      • PMML
    • Connectors
      • DB Connector
        • Prepared Query
        • Dynamic Query
        • Query input parameters
        • Stored Procedure
      • REST Connector
      • SOAP Connector
      • S3 Connector
      • SMB Connector
      • EVM Blockchain Connector
    • Global Variables
    • Appendices
      • Overview of Database Transactions
      • Reserved Words
  • Project Development Environment (IDE)
    • Project Explorer Panel
    • Flow Builder
    • Flow Node Editor
    • Data Structure Builder
    • Connector Builders
      • REST Connector Builder
      • SOAP Connector Builder
      • DB (Database) Connector Builder
      • EVM Blockchain Connectors Builder
      • S3 Connector Builder
    • Asset Builders
      • Dictionary Builder
      • Decision Table Builder
      • Scorecard Builder
      • PMML Asset Builder
    • Global Variables Panel
    • Expression Editor
    • Project Deployment and Execution
    • Cron Expression Generator
    • Test Helper
    • Debugging the Project
    • DB transactions
    • Team Collaboration Tools
      • Version Control
      • Conflict Resolver
    • Selectors
    • Error Panel
    • Local History
  • Home and Administration Guide
    • Organization and Subscription
    • Organization Team
    • Repositories and Projects
    • Environments
    • Deployments
    • Database Provisioning
    • Roles and Permissions
  • Logs and Troubleshooting
    • Request/Call Logs
    • Deployment Logs
    • Application Logs
  • Appendix: Example Project
    • Risk Mitigation Solution
Powered by GitBook
On this page
  • All functions
  • createDocument
  • createDocumentType
  • getFeature
  • hasFeature
  1. Language Reference Guide
  2. Flows
  3. Built-In Functions
  4. Node functions
  5. pdk.flow.Xml

pdk.flow.xml.XmlDOMImplementation

contains functions to operate with XML DOMImplementation variables

Previouspdk.flow.xml.XmlDOMConfigurationNextpdk.flow.xml.XmlProcessingInstruction

Last updated 1 year ago

This functions are based on Java org.w3c.dom package classes.

You can always rely on Java documentation and examples!

All functions


createDocument

Creates a DOM Document object of the specified type with its document element. Note that based on the given to create the document, the implementation may instantiate specialized objects that support additional features than the "Core", such as "HTML" [] . On the other hand, setting the after the document was created makes this very unlikely to happen.

Arguments:

  • domImplementation :: - The dom implementation

  • namespaceURI :: - The namespace URI of the document element to create or null

  • qualifiedName :: - The qualified name of the document element to be created or null

  • doctype :: - The type of document to be created or null. When doctype is not null, its function is set to the document being created

Result:

Possible exceptions:


createDocumentType

Arguments:

Result:

Possible exceptions:


getFeature

Arguments:

Result:

Possible exceptions:


hasFeature

Arguments:

Result:

Possible exceptions:


output :: - A new object with its document element. If the namespaceURI, qualifiedName, and doctype are null, the returned is empty with no document element.

- throws if the domImplementation NULL

- INVALID_CHARACTER_ERR: Raised if the specified qualified name is not an XML name according to []. NAMESPACE_ERR: Raised if the qualifiedName is malformed, if the qualifiedName has a prefix and the namespaceURI is null, or if the qualifiedName is null and the namespaceURI is different from null, or if the qualifiedName has a prefix that is "xml" and the namespaceURI is different from "" [] , or if the DOM implementation does not support the "XML" feature but a non-null namespace URI was provided, since namespaces were defined by XML. WRONG_DOCUMENT_ERR: Raised if doctype has already been used with a different document or was created from a different implementation. NOT_SUPPORTED_ERR: May be raised if the implementation does not support the feature "XML" and the language exposed through the Document does not support XML Namespaces (such as []).

Creates an empty node. Entity declarations and notations are not made available. Entity reference expansions and default attribute additions do not occur.

domImplementation :: - The dom implementation

qualifiedName :: - The qualified name of the document type to be created

publicId :: - The external subset public identifier

systemId :: - The external subset system identifier

output :: - A new node with set to null

- throws if the domImplementation NULL

- INVALID_CHARACTER_ERR: Raised if the specified qualified name is not an XML name according to []. NAMESPACE_ERR: Raised if the qualifiedName is malformed. NOT_SUPPORTED_ERR: May be raised if the implementation does not support the feature "XML" and the language exposed through the Document does not support XML Namespaces (such as [])

This method returns a specialized object which implements the specialized APIs of the specified feature and version, as specified in . The specialized object may also be obtained by using binding-specific casting methods but is not necessarily expected to, as discussed in.

domImplementation :: - The dom implementation

feature :: - The name of the feature requested. Note that any plus sign "+" prepended to the name of the feature will be ignored since it is not significant in the context of this function

version :: - This is the version number of the feature to test

output :: - Returns an object which implements the specialized APIs of the specified feature and version, if any, or null if there is no object which implements interfaces associated with that feature.

- throws if the domImplementation or feature or version is NULL

Test if the DOM implementation implements a specific feature and version, as specified in .

domImplementation :: - The dom implementation

feature :: - The name of the feature to test

version :: - This is the version number of the feature to test

output :: - true if the feature is implemented in the specified version, false otherwise.

- throws if the domImplementation or feature or version is NULL

DOM Features
DOM Features
https://docs.oracle.com/en/java/javase/11/docs/api/java.xml/org/w3c/dom/package-summary.html
DOM Level 2 HTML
createDocument
createDocumentType
getFeature
hasFeature
XML 1.0
http://www.w3.org/XML/1998/namespace
XML Namespaces
HTML 4.01
XML 1.0
HTML 4.01
pdk.core.String
pdk.core.String
pdk.core.String
pdk.core.String
pdk.core.String
pdk.core.Any
pdk.core.String
pdk.core.String
pdk.core.Boolean
NullPointerException
NullPointerException
NullPointerException
NullPointerException
pdk.net.xml.Document
Document
Document
DOMException
DocumentType
pdk.net.xml.DOMImplementation
DOMException
pdk.net.xml.DOMImplementation
pdk.net.xml.DOMImplementation
pdk.core.String
pdk.core.String
DocumentType
Document
DocumentType
pdk.net.xml.DOMImplementation
pdk.net.xml.DocumentType
XmlNode.getOwnerDocument
pdk.net.xml.DocumentType
DocumentType
XmlNode.getOwnerDocument