All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.dynamicpdf.api.elements.DataMatrixFunctionCharacter Maven / Gradle / Ivy

Go to download

A Java Client API that uses the DynamicPDF API to create, merge, split, form fill, stamp, secure/encrypt PDF documents.

There is a newer version: 1.10.1
Show newest version
package com.dynamicpdf.api.elements;

import com.fasterxml.jackson.annotation.JsonProperty;

/**
 * Specifies the Function Character for a Datamatrix barcode.
 */
public enum DataMatrixFunctionCharacter {

	/**
	 * Macro 05 Character.
	 */
	@JsonProperty("macro05")
	MACRO05,

	/**
	 * Macro 06 Character.
	 */
	@JsonProperty("macro06")
	MACRO06,

	/**
	 * ReaderProgramming Character.
	 */
	@JsonProperty("readerProgramming")
	READERPROGRAMMING,

	/**
	 * FNC1 Character.
	 */
	@JsonProperty("fnc1")
	FNC1,

	/**
	 * None.
	 */
	@JsonProperty("none")
	NONE

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy