void |
XMPMeta.appendArrayItem(String schemaNS,
String arrayName,
PropertyOptions arrayOptions,
String itemValue,
PropertyOptions itemOptions) |
Simplifies the construction of an array by not requiring that you pre-create an empty array.
|
void |
XMPMeta.appendArrayItem(String schemaNS,
String arrayName,
String itemValue) |
|
static void |
XMPUtils.appendProperties(XMPMeta source,
XMPMeta dest,
boolean doAllProperties,
boolean replaceOldValues) |
Alias without the new option deleteEmptyValues.
|
static void |
XMPUtils.appendProperties(XMPMeta source,
XMPMeta dest,
boolean doAllProperties,
boolean replaceOldValues,
boolean deleteEmptyValues) |
Append properties from one XMP object to another.
|
static String |
XMPUtils.catenateArrayItems(XMPMeta xmp,
String schemaNS,
String arrayName,
String separator,
String quotes,
boolean allowCommas) |
Create a single edit string from an array of strings.
|
static String |
XMPPathFactory.composeArrayItemPath(String arrayName,
int itemIndex) |
Compose the path expression for an item in an array.
|
static String |
XMPPathFactory.composeFieldSelector(String arrayName,
String fieldNS,
String fieldName,
String fieldValue) |
Compose the path expression to select an alternate item by a field's value.
|
static String |
XMPPathFactory.composeQualifierPath(String qualNS,
String qualName) |
Compose the path expression for a qualifier.
|
static String |
XMPPathFactory.composeStructFieldPath(String fieldNS,
String fieldName) |
Compose the path expression for a field in a struct.
|
static boolean |
XMPUtils.convertToBoolean(String value) |
Convert from string to Boolean.
|
static XMPDateTime |
XMPUtils.convertToDate(String rawValue) |
Converts a string value to an XMPDateTime.
|
static double |
XMPUtils.convertToDouble(String rawValue) |
Converts a string value to a double.
|
static int |
XMPUtils.convertToInteger(String rawValue) |
Converts a string value to an int.
|
static long |
XMPUtils.convertToLong(String rawValue) |
Converts a string value to a long.
|
int |
XMPMeta.countArrayItems(String schemaNS,
String arrayName) |
Returns the number of items in the array.
|
static XMPDateTime |
XMPDateTimeFactory.createFromISO8601(String strValue) |
Creates an XMPDateTime from an ISO 8601 string.
|
static byte[] |
XMPUtils.decodeBase64(String base64String) |
Decode from Base64 encoded string to raw data.
|
XMPProperty |
XMPMeta.getArrayItem(String schemaNS,
String arrayName,
int itemIndex) |
Provides access to items within an array.
|
XMPProperty |
XMPMeta.getLocalizedText(String schemaNS,
String altTextName,
String genericLang,
String specificLang) |
These functions provide convenient support for localized text properties, including a number
of special and obscure aspects.
|
XMPProperty |
XMPMeta.getProperty(String schemaNS,
String propName) |
The property value getter-methods all take a property specification: the first two parameters
are always the top level namespace URI (the "schema" namespace) and the basic name
of the property being referenced.
|
byte[] |
XMPMeta.getPropertyBase64(String schemaNS,
String propName) |
Convenience method to retrieve the literal value of a property.
|
Boolean |
XMPMeta.getPropertyBoolean(String schemaNS,
String propName) |
These are very similar to getProperty() and SetProperty() above,
but the value is returned or provided in a literal form instead of as a UTF-8 string.
|
Calendar |
XMPMeta.getPropertyCalendar(String schemaNS,
String propName) |
Convenience method to retrieve the literal value of a property.
|
XMPDateTime |
XMPMeta.getPropertyDate(String schemaNS,
String propName) |
Convenience method to retrieve the literal value of a property.
|
Double |
XMPMeta.getPropertyDouble(String schemaNS,
String propName) |
Convenience method to retrieve the literal value of a property.
|
Integer |
XMPMeta.getPropertyInteger(String schemaNS,
String propName) |
Convenience method to retrieve the literal value of a property.
|
Long |
XMPMeta.getPropertyLong(String schemaNS,
String propName) |
Convenience method to retrieve the literal value of a property.
|
String |
XMPMeta.getPropertyString(String schemaNS,
String propName) |
Convenience method to retrieve the literal value of a property.
|
XMPProperty |
XMPMeta.getQualifier(String schemaNS,
String propName,
String qualNS,
String qualName) |
Provides access to a qualifier attached to a property.
|
XMPProperty |
XMPMeta.getStructField(String schemaNS,
String structName,
String fieldNS,
String fieldName) |
Provides access to fields within a nested structure.
|
void |
XMPMeta.insertArrayItem(String schemaNS,
String arrayName,
int itemIndex,
String itemValue) |
|
void |
XMPMeta.insertArrayItem(String schemaNS,
String arrayName,
int itemIndex,
String itemValue,
PropertyOptions options) |
Inserts an item into an array previous to the given index.
|
XMPIterator |
XMPMeta.iterator() |
Constructs an iterator for the properties within this XMP object.
|
XMPIterator |
XMPMeta.iterator(IteratorOptions options) |
Constructs an iterator for the properties within this XMP object using some options.
|
XMPIterator |
XMPMeta.iterator(String schemaNS,
String propName,
IteratorOptions options) |
Construct an iterator for the properties within an XMP object.
|
void |
XMPMeta.normalize(ParseOptions options) |
Perform the normalization as a separate parsing step.
|
static XMPMeta |
XMPMetaFactory.parse(InputStream in) |
Parsing with default options.
|
static XMPMeta |
XMPMetaFactory.parse(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) |
Parsing with default options.
|
static XMPMeta |
XMPMetaFactory.parseFromBuffer(byte[] buffer,
ParseOptions options) |
Creates an XMPMeta-object from a byte-buffer.
|
static XMPMeta |
XMPMetaFactory.parseFromString(String packet) |
Parsing with default options.
|
static XMPMeta |
XMPMetaFactory.parseFromString(String packet,
ParseOptions options) |
Creates an XMPMeta-object from a string.
|
String |
XMPSchemaRegistry.registerNamespace(String namespaceURI,
String suggestedPrefix) |
Register a namespace URI with a suggested prefix.
|
static void |
XMPUtils.removeProperties(XMPMeta xmp,
String schemaNS,
String propName,
boolean doAllProperties,
boolean includeAliases) |
Remove multiple properties from an XMP object.
|
static void |
XMPUtils.separateArrayItems(XMPMeta xmp,
String schemaNS,
String arrayName,
String catedStr,
PropertyOptions arrayOptions,
boolean preserveCommas) |
Separate a single edit string into an array of strings.
|
static void |
XMPMetaFactory.serialize(XMPMeta xmp,
OutputStream out) |
Serializes an XMPMeta-object as RDF into an OutputStream
with default options.
|
static void |
XMPMetaFactory.serialize(XMPMeta xmp,
OutputStream out,
SerializeOptions options) |
Serializes an XMPMeta-object as RDF into an OutputStream.
|
static byte[] |
XMPMetaFactory.serializeToBuffer(XMPMeta xmp,
SerializeOptions options) |
Serializes an XMPMeta-object as RDF into a byte buffer.
|
static String |
XMPMetaFactory.serializeToString(XMPMeta xmp,
SerializeOptions options) |
Serializes an XMPMeta-object as RDF into a string.
|
void |
XMPMeta.setArrayItem(String schemaNS,
String arrayName,
int itemIndex,
String itemValue) |
|
void |
XMPMeta.setArrayItem(String schemaNS,
String arrayName,
int itemIndex,
String itemValue,
PropertyOptions options) |
Replaces an item within an array.
|
void |
XMPMeta.setLocalizedText(String schemaNS,
String altTextName,
String genericLang,
String specificLang,
String itemValue) |
|
void |
XMPMeta.setLocalizedText(String schemaNS,
String altTextName,
String genericLang,
String specificLang,
String itemValue,
PropertyOptions options) |
Modifies the value of a selected item in an alt-text array.
|
void |
XMPMeta.setProperty(String schemaNS,
String propName,
Object propValue) |
|
void |
XMPMeta.setProperty(String schemaNS,
String propName,
Object propValue,
PropertyOptions options) |
The property value setters all take a property specification, their
differences are in the form of this.
|
void |
XMPMeta.setPropertyBase64(String schemaNS,
String propName,
byte[] propValue) |
|
void |
XMPMeta.setPropertyBase64(String schemaNS,
String propName,
byte[] propValue,
PropertyOptions options) |
Convenience method to set a property from a binary byte[]-array,
which is serialized as base64-string.
|
void |
XMPMeta.setPropertyBoolean(String schemaNS,
String propName,
boolean propValue) |
|
void |
XMPMeta.setPropertyBoolean(String schemaNS,
String propName,
boolean propValue,
PropertyOptions options) |
Convenience method to set a property to a literal boolean value.
|
void |
XMPMeta.setPropertyCalendar(String schemaNS,
String propName,
Calendar propValue) |
|
void |
XMPMeta.setPropertyCalendar(String schemaNS,
String propName,
Calendar propValue,
PropertyOptions options) |
Convenience method to set a property with a Java Calendar-object,
which is serialized to an ISO8601 date.
|
void |
XMPMeta.setPropertyDate(String schemaNS,
String propName,
XMPDateTime propValue) |
|
void |
XMPMeta.setPropertyDate(String schemaNS,
String propName,
XMPDateTime propValue,
PropertyOptions options) |
Convenience method to set a property with an XMPDateTime-object,
which is serialized to an ISO8601 date.
|
void |
XMPMeta.setPropertyDouble(String schemaNS,
String propName,
double propValue) |
|
void |
XMPMeta.setPropertyDouble(String schemaNS,
String propName,
double propValue,
PropertyOptions options) |
Convenience method to set a property to a literal double value.
|
void |
XMPMeta.setPropertyInteger(String schemaNS,
String propName,
int propValue) |
|
void |
XMPMeta.setPropertyInteger(String schemaNS,
String propName,
int propValue,
PropertyOptions options) |
Convenience method to set a property to a literal int value.
|
void |
XMPMeta.setPropertyLong(String schemaNS,
String propName,
long propValue) |
|
void |
XMPMeta.setPropertyLong(String schemaNS,
String propName,
long propValue,
PropertyOptions options) |
Convenience method to set a property to a literal long value.
|
void |
XMPMeta.setQualifier(String schemaNS,
String propName,
String qualNS,
String qualName,
String qualValue) |
|
void |
XMPMeta.setQualifier(String schemaNS,
String propName,
String qualNS,
String qualName,
String qualValue,
PropertyOptions options) |
Provides access to a qualifier attached to a property.
|
void |
XMPMeta.setStructField(String schemaNS,
String structName,
String fieldNS,
String fieldName,
String fieldValue) |
|
void |
XMPMeta.setStructField(String schemaNS,
String structName,
String fieldNS,
String fieldName,
String fieldValue,
PropertyOptions options) |
Provides access to fields within a nested structure.
|