Class UserField


  • public class UserField
    extends java.lang.Object
    User-defined TIFF field.
    • Constructor Summary

      Constructors 
      Constructor Description
      UserField​(int tag, java.lang.String name, UserFieldValue value)
      Constructs UserField with the given params.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getName()
      Getter for name field.
      int getTag()
      Getter for tag field.
      UserFieldValue getValue()
      Getter for value field.
      void setName​(java.lang.String name)
      Setter for name field.
      void setTag​(int tag)
      Setter for tag field.
      void setValue​(UserFieldValue value)
      Setter for value field.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • UserField

        public UserField​(int tag,
                         java.lang.String name,
                         UserFieldValue value)
        Constructs UserField with the given params.
        Parameters:
        tag - Numeric tag.
        name - Field name.
        value - Value.
    • Method Detail

      • getTag

        public int getTag()
        Getter for tag field. See constructor documentation for more information about the field.
        Returns:
        tag
      • setTag

        public void setTag​(int tag)
        Setter for tag field. See constructor documentation for more information about the field.
        Parameters:
        tag - Value to set.
      • getName

        public java.lang.String getName()
        Getter for name field. See constructor documentation for more information about the field.
        Returns:
        name
      • setName

        public void setName​(java.lang.String name)
        Setter for name field. See constructor documentation for more information about the field.
        Parameters:
        name - Value to set.
      • getValue

        public UserFieldValue getValue()
        Getter for value field. See constructor documentation for more information about the field.
        Returns:
        value
      • setValue

        public void setValue​(UserFieldValue value)
        Setter for value field. See constructor documentation for more information about the field.
        Parameters:
        value - Value to set.