Class BarcodeType
- java.lang.Object
-
- net.webpdf.wsclient.schema.operation.BarcodeType
-
- All Implemented Interfaces:
ParameterInterface
public class BarcodeType extends Object implements ParameterInterface
<?xml version="1.0" encoding="UTF-8"?><p xmlns:p115207_="http://jaxb2-commons.dev.java.net/basic/inheritance" xmlns:p454012_="http://jaxb2-commons.dev.java.net/basic/simplify" xmlns:p642845_="https://jakarta.ee/xml/ns/jaxb" xmlns:tns="http://schema.webpdf.de/1.0/operation" xmlns:xs="http://www.w3.org/2001/XMLSchema">The "Barcode" web service can be used to generate and recognize barcodes in PDF documents. The <code><add></code> element is used to add barcodes, while the <code><detect></code> element is used to read existing barcodes. </p>Java class for BarcodeType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="BarcodeType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <choice> <element name="add"> <complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <choice maxOccurs="unbounded"> <element name="aztec" type="{http://schema.webpdf.de/1.0/operation}AztecBarcodeType"/> <element name="codabar" type="{http://schema.webpdf.de/1.0/operation}CodabarBarcodeType"/> <element name="code128" type="{http://schema.webpdf.de/1.0/operation}Code128BarcodeType"/> <element name="code39" type="{http://schema.webpdf.de/1.0/operation}Code39BarcodeType"/> <element name="datamatrix" type="{http://schema.webpdf.de/1.0/operation}DataMatrixBarcodeType"/> <element name="ean13" type="{http://schema.webpdf.de/1.0/operation}Ean13BarcodeType"/> <element name="ean8" type="{http://schema.webpdf.de/1.0/operation}Ean8BarcodeType"/> <element name="itf" type="{http://schema.webpdf.de/1.0/operation}ItfBarcodeType"/> <element name="pdf417" type="{http://schema.webpdf.de/1.0/operation}Pdf417BarcodeType"/> <element name="qrcode" type="{http://schema.webpdf.de/1.0/operation}QrBarcodeType"/> <element name="upca" type="{http://schema.webpdf.de/1.0/operation}UpcaBarcodeType"/> <element name="qrswiss" type="{http://schema.webpdf.de/1.0/operation}QrSwissPaymentBarcodeType"/> </choice> <attribute name="outputFormat" type="{http://schema.webpdf.de/1.0/operation}BarcodeCreateOutputFormatType" default="pdf" /> </restriction> </complexContent> </complexType> </element> <element name="detect"> <complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <choice maxOccurs="unbounded"> <element name="selection" type="{http://schema.webpdf.de/1.0/operation}BarcodeSelectionType"/> </choice> <attribute name="outputFormat" type="{http://schema.webpdf.de/1.0/operation}BarcodeDetectOutputFormatType" default="json" /> <attribute name="inputFormat" type="{http://schema.webpdf.de/1.0/operation}BarcodeDetectInputFormatType" default="pdf" /> </restriction> </complexContent> </complexType> </element> </choice> </restriction> </complexContent> </complexType>
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classBarcodeType.AddJava class for anonymous complex type.static classBarcodeType.DetectJava class for anonymous complex type.
-
Field Summary
Fields Modifier and Type Field Description protected BarcodeType.Addaddprotected BarcodeType.Detectdetect
-
Constructor Summary
Constructors Constructor Description BarcodeType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description BarcodeType.AddgetAdd()Gets the value of the add property.BarcodeType.DetectgetDetect()Gets the value of the detect property.booleanisSetAdd()booleanisSetDetect()voidsetAdd(BarcodeType.Add value)Sets the value of the add property.voidsetDetect(BarcodeType.Detect value)Sets the value of the detect property.
-
-
-
Field Detail
-
add
protected BarcodeType.Add add
-
detect
protected BarcodeType.Detect detect
-
-
Method Detail
-
getAdd
public BarcodeType.Add getAdd()
Gets the value of the add property.- Returns:
- possible object is
BarcodeType.Add
-
setAdd
public void setAdd(BarcodeType.Add value)
Sets the value of the add property.- Parameters:
value- allowed object isBarcodeType.Add
-
isSetAdd
public boolean isSetAdd()
-
getDetect
public BarcodeType.Detect getDetect()
Gets the value of the detect property.- Returns:
- possible object is
BarcodeType.Detect
-
setDetect
public void setDetect(BarcodeType.Detect value)
Sets the value of the detect property.- Parameters:
value- allowed object isBarcodeType.Detect
-
isSetDetect
public boolean isSetDetect()
-
-