Package io.scanbot.sdk.tiffgeneration
Class UserFieldIntValue
- java.lang.Object
-
- io.scanbot.sdk.tiffgeneration.UserFieldValue
-
- io.scanbot.sdk.tiffgeneration.UserFieldIntValue
-
public class UserFieldIntValue extends UserFieldValue
32-bit int value (TIFF_LONG).
-
-
Constructor Summary
Constructors Constructor Description UserFieldIntValue(int value)Constructs UserFieldIntValue with the given params.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetValue()Getter for value field.voidsetValue(int value)Setter for value field.
-
-
-
Method Detail
-
getValue
public int getValue()
Getter for value field. See constructor documentation for more information about the field.- Returns:
- value
-
setValue
public void setValue(int value)
Setter for value field. See constructor documentation for more information about the field.- Parameters:
value- Value to set.
-
-