Class AttributeObject

java.lang.Object
com.itextpdf.forms.xfdf.AttributeObject

public class AttributeObject extends Object
Represents the attribute of any XFDF element.
  • Constructor Details

    • AttributeObject

      public AttributeObject (String name, String value)
      Creates an instance with given attribute name and value.
      Parameters:
      name - the name of the attribute, constrained by XML attributes specification.
      value - the value of the attribute, constrained by XML attributes specification.
  • Method Details

    • getName

      public String getName()
      Returns attribute name.
      Returns:
      a string representation of attribute name, case-sensitive as per XML specification.
    • getValue

      public String getValue()
      Returns attribute value.
      Returns:
      a string representation of attribute value.