xmlstreambuffer 1.5.4-1.1 source package in Ubuntu

Changelog

xmlstreambuffer (1.5.4-1.1) unstable; urgency=medium

  * Non maintainer upload by the Reproducible Builds team.
  * No source change upload to rebuild on buildd with .buildinfo files.

 -- Holger Levsen <email address hidden>  Wed, 23 Dec 2020 18:58:00 +0100

Upload details

Uploaded by:
Debian Java Maintainers
Uploaded to:
Sid
Original maintainer:
Debian Java Maintainers
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe misc
Noble release universe misc
Mantic release universe misc
Lunar release universe misc
Jammy release universe misc

Builds

Hirsute: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
xmlstreambuffer_1.5.4-1.1.dsc 2.1 KiB 4b54f448ca2b53453fd2b32d1c368b37c07b24ad20bdd8f2acc198bc031c8de1
xmlstreambuffer_1.5.4.orig.tar.xz 37.9 KiB c2cfc2f815ab1bc8cfaca6dc78508ea3e846813b599b05f7b1bb3c25a09ba9a7
xmlstreambuffer_1.5.4-1.1.debian.tar.xz 9.5 KiB b9a43598af1e3c980d78131f480a58ffe6ecf8b0b697134635fada6aa1ff56cd

Available diffs

No changes file available.

Binary packages built by this source

libstreambuffer-java: XML Stream Buffer

 A stream buffer is a stream-based representation of an XML
 info-set in Java. Stream buffers are designed to: provide
 very efficient stream-based memory representations of XML
 info-sets; and be created and processed using any Java-based
 XML API.
 .
 Conceptually a stream buffer is similar to the representation
 used in the Xerces deferred DOM implementation, with the crucial
 difference that a stream buffer does not store hierarchical
 information like parent and sibling information. The deferred
 DOM implementation reduces memory usage when large XML documents
 are parsed but only a subset of the document needs to be processed.
 (Note that using deferred DOM will be more expensive than
 non-deferred DOM in terms of memory and processing if all
 the document is traversed.)
 .
 Stream buffers may be used as an efficient alternative to DOM where:
 * most or all of an XML info-set will eventually get traversed; and/or
 * targeted access to certain parts of an XML info-set are required
   and need to be efficiently processed using stream-based APIs like
   SAX or StAX.