Generated by
JDiff

com.itextpdf.kernel.xmp.impl Documentation Differences

This file contains all the changes in documentation in the package com.itextpdf.kernel.xmp.impl as colored differences. Deletions are shown like this , and additions are shown like this.
If no deletions or additions are shown in an entry, the HTML tags will be what has changed. The new HTML tags are shown in the differences. If no documentation existed, and then some was added in a later version, this change is noted in the appropriate class pages of differences, but the change is not shown on this page. Only changes in existing text are shown here. Similarly, documentation which was inherited from another class or interface is not shown here.
Note that an HTML error in the new documentation may cause the display of other documentation changes to be presented incorrectly. For instance, failure to close a tag will cause all subsequent paragraphs to be displayed differently.

Class ByteBuffer, void append(byte[], int, int)

Appends a byte array or part of byte array to the buffer. Elements on positions {@code offset} through {@code offset+len-1} of provided array will be copied @param bytes a byte array @param offset an is offset a position of the first element to with copy @param len the number of array elements to be added

Class XMPSerializerHelper, void serialize(XMPMetaImpl, OutputStream, SerializeOptions)

Static method to serialize the metadata object. For each serialisation, a new XMPSerializer instance is created, either XMPSerializerRDF or XMPSerializerPlain so thats its possible to serialialize the same XMPMeta objects in two threads. @param xmp a metadata implementation object @param output the output stream to serialize to @param options serialization options, can be null for default. @throws XMPException if serialization failed
Class XMPSerializerHelper, byte[] serializeToBuffer(XMPMetaImpl, SerializeOptions)

Serializes an XMPMeta-object as RDF into a byte buffer. @param xmp a metadata implementation object @param options Options to control the serialization (see SerializeOptions). @return Returns a byte buffer containing the serialized RDF. @throws XMPException on serializsation serialization errors.
Class XMPSerializerHelper, String serializeToString(XMPMetaImpl, SerializeOptions)

Serializes an XMPMeta-object as RDF into a string. Note: Encoding is forced to UTF-16 when serializing to a string to ensure the correctness of "exact packet size". @param xmp a metadata implementation object @param options Options to control the serialization (see SerializeOptions). @return Returns a string containing the serialized RDF. @throws XMPException on serializsation serialization errors.