Uses of Class
org.faceless.pdf2.XMP.Property
-
Packages that use XMP.Property Package Description org.faceless.pdf2 Contains the classes used to create a PDF document -
-
Uses of XMP.Property in org.faceless.pdf2
Fields in org.faceless.pdf2 declared as XMP.Property Modifier and Type Field Description static XMP.Property
XMP.Property. LANG
The "xml:lang" qualifier property, which can be set on any non-List value.static XMP.Property
XMP.Property. TYPE
The "rdf:type" qualifier property.Methods in org.faceless.pdf2 that return XMP.Property Modifier and Type Method Description XMP.Property
XMP.Type. getField(String uri, String localName)
If a complex Type, return the Property that has the matching namespace and name if one is present, otherwise return null.XMP.Property
XMP. getProperty(String name)
Return the Property matching the specied name.XMP.Property
XMP.Type. newField(String name, XMP.Type type, String description)
Add a field to this type.XMP.Property
XMP.Schema. newProperty(String name, XMP.Type type, String description, boolean external)
Create a new property on this Schema.XMP.Property
XMP.Schema. newQualifierProperty(String name, XMP.Type type, String description, boolean external)
Create a new qualifier property on this Schema.Methods in org.faceless.pdf2 that return types with arguments of type XMP.Property Modifier and Type Method Description List<XMP.Property>
XMP.Type. getFields()
For a complex Type, return a read-only Collection of the Properties that make up the fields in this Type.Set<XMP.Property>
XMP.Value. getFields()
If this Value is aMap
, return a read-only collection of the Fields that are set on this Value.Map<String,XMP.Property>
XMP.Schema. getProperties()
Return a read-only collection of the Properties defined in this Schema.Set<XMP.Property>
XMP.Value. getQualifiers()
Return the set of "qualifier" Properties set on this value.Map<XMP.Property,XMP.Value>
XMP. getValues()
Return a live, read-only view of all the values set on this XMP object.Methods in org.faceless.pdf2 with parameters of type XMP.Property Modifier and Type Method Description int
XMP.Property. compareTo(XMP.Property p)
XMP.Value
XMP. get(XMP.Property key)
Return the value of the specified property as set on this XMPXMP.Value
XMP.Value. get(XMP.Property key)
If the Value is aMap
, return the Value that matches the specified Property in the underlying map, or null if it doesn't exist.Object
XMP.Value. getData(XMP.Property key)
A convenience method that returns the data from the specified Value.XMP.Value
XMP.Value. getQualifier(XMP.Property p)
Return the Value associated with the specified qualifier property on this Value, if set, or null otherwise.void
XMP.Value. putQualifier(XMP.Property p, XMP.Value value)
Set a Qualifier on this Value.void
XMP. set(XMP.Property p, XMP.Value value)
Set the specified property to have the specified value, or if the value is null, delete the specified property from this XMP.void
XMP.Value. set(XMP.Property p, XMP.Value v)
Set the value in the underlying Collection, which must be aMap
.Method parameters in org.faceless.pdf2 with type arguments of type XMP.Property Modifier and Type Method Description String
XMP. generateRelaxNGSchema(Collection<XMP.Property> properties)
Generate a RelaxNG Schema which will fully describe the specified Properties.
-