Examples of AbstractField


Examples of org.apache.xmpbox.type.AbstractField

     *
     * @return The property value
     */
    public String getPDFVersion()
    {
        AbstractField tmp = getProperty(PDF_VERSION);
        if (tmp instanceof TextType)
        {
            return ((TextType) tmp).getStringValue();
        }
        return null;
View Full Code Here

Examples of org.apache.xmpbox.type.AbstractField

     *
     * @return The property object
     */
    public TextType getProducerProperty()
    {
        AbstractField tmp = getProperty(PRODUCER);
        if (tmp instanceof TextType)
        {
            return (TextType) tmp;
        }
        return null;
View Full Code Here

Examples of org.apache.xmpbox.type.AbstractField

     *
     * @return The property value
     */
    public String getProducer()
    {
        AbstractField tmp = getProperty(PRODUCER);
        if (tmp instanceof TextType)
        {
            return ((TextType) tmp).getStringValue();
        }
        return null;
View Full Code Here

Examples of org.apache.xmpbox.type.AbstractField

     * @return The generic simple type property according to its qualified Name
     */
    public AbstractField getAbstractProperty(String qualifiedName)
    {
        Iterator<AbstractField> it = getContainer().getAllProperties().iterator();
        AbstractField tmp;
        while (it.hasNext())
        {
            tmp = it.next();
            if (tmp.getPropertyName().equals(qualifiedName))
            {
                return tmp;
            }
        }
        return null;
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.