com.dynamicpdf.api.elements.Code25BarcodeElement 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 Code 2 of 5 barcode element.
*
* This class can be used to place a Code 2 of 5 barcode on a page.
*/
@JsonInclude(Include.NON_DEFAULT)
@JsonAutoDetect(fieldVisibility = Visibility.NON_PRIVATE)
public class Code25BarcodeElement extends TextBarcodeElement {
private float height;
/**
* Initializes a new instance of the Code25BarcodeElement
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 xOffset The X coordinate of the barcode.
* @param yOffset The Y coordinate of the barcode.
*/
public Code25BarcodeElement(String value, ElementPlacement placement, float height, float xOffset, float yOffset) {
super(value, placement, xOffset, yOffset);
this.height = height;
}
/**
* Initializes a new instance of the Code25BarcodeElement
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.
*/
public Code25BarcodeElement(String value, ElementPlacement placement, float height) {
this(value, placement, height, 0, 0);
}
@JsonProperty("type")
ElementType getType() {
return ElementType.CODE25BARCODE;
}
/**
* 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;
}
}