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.PropertyXMP.Property. LANGThe "xml:lang" qualifier property, which can be set on any non-List value.static XMP.PropertyXMP.Property. TYPEThe "rdf:type" qualifier property.Methods in org.faceless.pdf2 that return XMP.Property Modifier and Type Method Description XMP.PropertyXMP.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.PropertyXMP. getProperty(String name)Return the Property matching the specied name.XMP.PropertyXMP.Schema. getProperty(String key)Return the Property matching this name or nullXMP.PropertyXMP.Type. newField(String name, XMP.Type type, String description)Add a field to this type.XMP.PropertyXMP.Schema. newProperty(String name, XMP.Type type, String description, boolean external)Create a new property on this Schema.XMP.PropertyXMP.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 intXMP.Property. compareTo(XMP.Property p)XMP.ValueXMP. get(XMP.Property key)Return the value of the specified property as set on this XMPXMP.ValueXMP.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.ObjectXMP.Value. getData(XMP.Property key)A convenience method that returns the data from the specified Value.XMP.ValueXMP.Value. getQualifier(XMP.Property p)Return the Value associated with the specified qualifier property on this Value, if set, or null otherwise.voidXMP.Value. putQualifier(XMP.Property p, XMP.Value value)Set a Qualifier on this Value.voidXMP. 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.voidXMP.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 StringXMP. generateRelaxNGSchema(Collection<XMP.Property> properties)Generate a RelaxNG Schema which will fully describe the specified Properties.
-