Uses of Class
com.itextpdf.xmp.options.ParseOptions
-
Packages that use ParseOptions Package Description com.itextpdf.xmp Package containing the xmpcore interface.com.itextpdf.xmp.impl Package containing the xmpcore implementation.com.itextpdf.xmp.options Package containing the option classes. -
-
Uses of ParseOptions in com.itextpdf.xmp
Methods in com.itextpdf.xmp with parameters of type ParseOptions Modifier and Type Method Description void
XMPMeta. normalize(ParseOptions options)
Perform the normalization as a separate parsing step.static XMPMeta
XMPMetaFactory. parse(java.io.InputStream in, ParseOptions options)
These functions support parsing serialized RDF into an XMP object, and serailizing an XMP object into RDF.static XMPMeta
XMPMetaFactory. parseFromBuffer(byte[] buffer, ParseOptions options)
Creates anXMPMeta
-object from a byte-buffer.static XMPMeta
XMPMetaFactory. parseFromString(java.lang.String packet, ParseOptions options)
Creates anXMPMeta
-object from a string. -
Uses of ParseOptions in com.itextpdf.xmp.impl
Methods in com.itextpdf.xmp.impl with parameters of type ParseOptions Modifier and Type Method Description private static void
XMPNormalizer. moveExplicitAliases(XMPNode tree, ParseOptions options)
Visit all of the top level nodes looking for aliases.void
XMPMetaImpl. normalize(ParseOptions options)
static XMPMeta
XMPMetaParser. parse(java.lang.Object input, ParseOptions options)
Parses the input source into an XMP metadata object, including de-aliasing and normalisation.private static org.w3c.dom.Document
XMPMetaParser. parseXml(java.lang.Object input, ParseOptions options)
Parses the raw XML metadata packet considering the parsing options.private static org.w3c.dom.Document
XMPMetaParser. parseXmlFromBytebuffer(ByteBuffer buffer, ParseOptions options)
Parses XML from a byte buffer, fixing the encoding (Latin-1 to UTF-8) and illegal control character optionally.private static org.w3c.dom.Document
XMPMetaParser. parseXmlFromInputStream(java.io.InputStream stream, ParseOptions options)
Parses XML from anInputStream
, fixing the encoding (Latin-1 to UTF-8) and illegal control character optionally.private static org.w3c.dom.Document
XMPMetaParser. parseXmlFromString(java.lang.String input, ParseOptions options)
Parses XML from aString
, fixing the illegal control character optionally.(package private) static XMPMeta
XMPNormalizer. process(XMPMetaImpl xmp, ParseOptions options)
Normalizes a raw parsed XMPMeta-Object -
Uses of ParseOptions in com.itextpdf.xmp.options
Methods in com.itextpdf.xmp.options that return ParseOptions Modifier and Type Method Description ParseOptions
ParseOptions. setAcceptLatin1(boolean value)
ParseOptions
ParseOptions. setFixControlChars(boolean value)
ParseOptions
ParseOptions. setOmitNormalization(boolean value)
ParseOptions
ParseOptions. setRequireXMPMeta(boolean value)
ParseOptions
ParseOptions. setStrictAliasing(boolean value)
-