com.dynamicpdf.api.elements.QrCodeFnc1 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.JsonProperty;
/**
* The type of FNC1 mode to use.
*/
public enum QrCodeFnc1 {
/**
* FNC1 None.
*/
@JsonProperty("none")
NONE,
/**
* FNC1 Gs1.
*/
@JsonProperty("gs1")
GS1,
/**
* FNC1 Industry.
*/
@JsonProperty("industry")
INDUSTRY
}