congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
DomMapperBase.unmarshalNode
Code IndexAdd Tabnine to your IDE (free)

How to use
unmarshalNode
method
in
org.jibx.extras.DomMapperBase

Best Java code snippets using org.jibx.extras.DomMapperBase.unmarshalNode (Showing top 1 results out of 315)

origin: org.jibx/jibx-extras

/**
 * Unmarshal node content. This unmarshals everything up to the containing
 * element close tag, adding each component to the content list supplied. On
 * return, the parse position will always be at an END_TAG.
 *
 * @param parent node to which children are to be added 
 * @exception JiBXException on error in unmarshalling
 * @exception IOException on error reading input
 */

protected void unmarshalContent(Node parent)
  throws JiBXException, IOException {
  Node node;
  while ((node = unmarshalNode()) != null) {
    parent.appendChild(node);
  }
}

org.jibx.extrasDomMapperBaseunmarshalNode

Javadoc

Unmarshal single node. This unmarshals the next node from the input stream, up to the close tag of the containing element.

Popular methods of DomMapperBase

  • accumulateText
  • addNamespace
    Add namespace information to list.
  • addNamespaceUnique
    Add namespace information to list if not already present.
  • findNamespaceIndex
    Get index number for declared namespace.
  • getNamespaceUri
  • getNextNamespaceIndex
  • isEquivalent
    Check if a pair of strings are equivalent, meaning either equal or one empty and the other null.
  • isWhitespace
  • marshalContent
    Marshal node list.
  • marshalElement
    Marshal element with all attributes and content.
  • marshalNode
    Marshal node.
  • unmarshalContent
    Unmarshal node content. This unmarshals everything up to the containing element close tag, adding ea
  • marshalNode,
  • unmarshalContent,
  • unmarshalElement

Popular in Java

  • Start an intent from android
  • getSystemService (Context)
  • onRequestPermissionsResult (Fragment)
  • getSupportFragmentManager (FragmentActivity)
  • BigDecimal (java.math)
    An immutable arbitrary-precision signed decimal.A value is represented by an arbitrary-precision "un
  • Socket (java.net)
    Provides a client-side TCP socket.
  • ByteBuffer (java.nio)
    A buffer for bytes. A byte buffer can be created in either one of the following ways: * #allocate
  • LinkedList (java.util)
    Doubly-linked list implementation of the List and Dequeinterfaces. Implements all optional list oper
  • Executors (java.util.concurrent)
    Factory and utility methods for Executor, ExecutorService, ScheduledExecutorService, ThreadFactory,
  • IsNull (org.hamcrest.core)
    Is the value null?
  • Top Vim plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now