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