com.dynamicpdf.api.elements.Gs1DataBarBarcodeElement Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dynamicpdf-api Show documentation
Show all versions of dynamicpdf-api Show documentation
A Java Client API that uses the DynamicPDF API to create, merge, split, form fill, stamp, secure/encrypt PDF documents.
package com.dynamicpdf.api.elements;
import com.fasterxml.jackson.annotation.JsonAutoDetect;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonAutoDetect.Visibility;
import com.fasterxml.jackson.annotation.JsonInclude.Include;
/**
* Represents a GS1DataBar barcode element.
*
* This class can be used to place a GS1DataBar barcode on a page.
*/
@JsonInclude(Include.NON_DEFAULT)
@JsonAutoDetect(fieldVisibility = Visibility.NON_PRIVATE)
public class Gs1DataBarBarcodeElement extends TextBarcodeElement {
private Gs1DataBarType type;
private float height;
/**
* Initializes a new instance of the Gs1DataBarBarcodeElement
class
*
* @param value The value of the barcode.
* @param placement The placement of the barcode on the page.
* @param height The height of the barcode.
* @param type The GS1DataBarType of the barcode.
* @param xOffset The X coordinate of the barcode.
* @param yOffset The Y coordinate of the barcode.
*/
public Gs1DataBarBarcodeElement(String value, ElementPlacement placement, float height, Gs1DataBarType type, float xOffset, float yOffset) {
super(value, placement, xOffset, yOffset);
this.type = type;
this.height = height;
}
/**
* Initializes a new instance of the Gs1DataBarBarcodeElement
class
*
* @param value The value of the barcode.
* @param placement The placement of the barcode on the page.
* @param height The height of the barcode.
* @param type The GS1DataBarType of the barcode.
*/
public Gs1DataBarBarcodeElement(String value, ElementPlacement placement, float height, Gs1DataBarType type) {
this(value, placement, height, type, 0, 0);
}
@JsonProperty("type")
ElementType getType() {
return ElementType.GS1DATABARBARCODE;
}
@JsonProperty("gs1DataBarType")
Gs1DataBarType getGs1DataBarType() {
return type;
}
/**
* Gets the height of the barcode.
* @return The height of the barcode.
*/
public float getHeight() {
return height;
}
/**
* Sets the height of the barcode.
* @param value The height of the barcode.
*/
public void setHeight(float value) {
height = value;
}
}