Package io.scanbot.sdk.tiffgeneration
Class UserField
- java.lang.Object
-
- io.scanbot.sdk.tiffgeneration.UserField
-
public class UserField extends java.lang.ObjectUser-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.StringgetName()Getter for name field.intgetTag()Getter for tag field.UserFieldValuegetValue()Getter for value field.voidsetName(java.lang.String name)Setter for name field.voidsetTag(int tag)Setter for tag field.voidsetValue(UserFieldValue value)Setter for value field.
-
-
-
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.
-
-