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

com.dynamicpdf.api.elements.Compaction 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;

/**
 * The type of Compaction to encode.
 */
public enum Compaction {

	/**
	 * Byte Compaction.
	 */
	@JsonProperty("byte")
	BYTE,

	/**
	 * Text Compaction.
	 */
	@JsonProperty("text")
	TEXT,

	/**
	 * Numeric Compaction.
	 */
	@JsonProperty("numeric")
	NUMERIC,

	/**
	 * All Compactions.
	 */
	@JsonProperty("auto")
	AUTO
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy