Package ai.extend.types
Class ParseConfigBlockOptionsBarcodes.Builder
- java.lang.Object
-
- ai.extend.types.ParseConfigBlockOptionsBarcodes.Builder
-
- Enclosing class:
- ParseConfigBlockOptionsBarcodes
public static final class ParseConfigBlockOptionsBarcodes.Builder extends java.lang.Object
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ParseConfigBlockOptionsBarcodesbuild()ParseConfigBlockOptionsBarcodes.Builderfrom(ParseConfigBlockOptionsBarcodes other)ParseConfigBlockOptionsBarcodes.BuilderimageClippingEnabled(java.lang.Boolean imageClippingEnabled)ParseConfigBlockOptionsBarcodes.BuilderimageClippingEnabled(java.util.Optional<java.lang.Boolean> imageClippingEnabled)Whether to clip and extract images of barcodes.ParseConfigBlockOptionsBarcodes.BuilderreadingEnabled(java.lang.Boolean readingEnabled)ParseConfigBlockOptionsBarcodes.BuilderreadingEnabled(java.util.Optional<java.lang.Boolean> readingEnabled)Whether to decode and read barcode values.
-
-
-
Method Detail
-
from
public ParseConfigBlockOptionsBarcodes.Builder from(ParseConfigBlockOptionsBarcodes other)
-
imageClippingEnabled
public ParseConfigBlockOptionsBarcodes.Builder imageClippingEnabled(java.util.Optional<java.lang.Boolean> imageClippingEnabled)
Whether to clip and extract images of barcodes. When enabled, barcode images will be available in the
imageUrlfield of BarcodeDetails.
-
imageClippingEnabled
public ParseConfigBlockOptionsBarcodes.Builder imageClippingEnabled(java.lang.Boolean imageClippingEnabled)
-
readingEnabled
public ParseConfigBlockOptionsBarcodes.Builder readingEnabled(java.util.Optional<java.lang.Boolean> readingEnabled)
Whether to decode and read barcode values. When enabled, decoded values will be available in the
decodedValuefield of BarcodeDetails.
-
readingEnabled
public ParseConfigBlockOptionsBarcodes.Builder readingEnabled(java.lang.Boolean readingEnabled)
-
build
public ParseConfigBlockOptionsBarcodes build()
-
-