Package io.scanbot.sdk.barcode
Class StructuredAppendInfo
- java.lang.Object
-
- io.scanbot.sdk.barcode.StructuredAppendInfo
-
public class StructuredAppendInfo extends java.lang.ObjectThe structured append mode can be used to split a message across multiple barcodes.
-
-
Constructor Summary
Constructors Constructor Description StructuredAppendInfo(int count, int index, java.lang.String id)Constructs StructuredAppendInfo with the given params.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetCount()Getter for count field.java.lang.StringgetId()Getter for id field.intgetIndex()Getter for index field.
-
-
-
Constructor Detail
-
StructuredAppendInfo
public StructuredAppendInfo(int count, int index, java.lang.String id)Constructs StructuredAppendInfo with the given params.- Parameters:
count- The number of barcodes in the structured append set.index- The index of the barcode in the structured append set.id- The ID of the structured append set.
-
-
Method Detail
-
getCount
public int getCount()
Getter for count field. See constructor documentation for more information about the field.- Returns:
- count
-
getIndex
public int getIndex()
Getter for index field. See constructor documentation for more information about the field.- Returns:
- index
-
getId
public java.lang.String getId()
Getter for id field. See constructor documentation for more information about the field.- Returns:
- id
-
-