Class FieldLocation
- java.lang.Object
-
- com.adobe.pdfservices.operation.pdfjobs.params.electronicseal.FieldLocation
-
public class FieldLocation extends Object
Parameters specifying options related to seal field location coordinates required forFieldOptions
.
-
-
Constructor Summary
Constructors Constructor Description FieldLocation(int left, int top, int right, int bottom)
Constructs aFieldLocation
instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Integer
getBottom()
Returns the bottom coordinate in default user space units for seal field.Integer
getLeft()
Returns the left coordinate in default user space units for seal field.Integer
getRight()
Returns the right coordinate in default user space units for seal field.Integer
getTop()
Returns the top coordinate in default user space units for seal field.
-
-
-
Constructor Detail
-
FieldLocation
public FieldLocation(int left, int top, int right, int bottom)
Constructs aFieldLocation
instance.- Parameters:
left
- the left coordinate of field locationtop
- the top coordinate of field locationright
- the right coordinate of field locationbottom
- the bottom coordinate of field location
-
-
Method Detail
-
getLeft
public Integer getLeft()
Returns the left coordinate in default user space units for seal field.- Returns:
- left coordinate value
-
getTop
public Integer getTop()
Returns the top coordinate in default user space units for seal field.- Returns:
- top coordinate value
-
getRight
public Integer getRight()
Returns the right coordinate in default user space units for seal field.- Returns:
- right coordinate value
-
getBottom
public Integer getBottom()
Returns the bottom coordinate in default user space units for seal field.- Returns:
- bottom coordinate value
-
-