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

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

import com.fasterxml.jackson.annotation.JsonProperty;

/**
 * Specifies type of page zoom.
 */

public enum PageZoom {

	/**
	 * RETAIN.
	 */

	@JsonProperty("retain")
	RETAIN,

	/**
	 * FITPAGE.
	 */

	@JsonProperty("fitPage")
	FITPAGE,

	/**
	 * FITWIDTH.
	 */

	@JsonProperty("fitWidth")
	FITWIDTH,

	/**
	 * FITHEIGHT.
	 */

	@JsonProperty("fitHeight")
	FITHEIGHT,

	/**
	 * FITBOX.
	 */

	@JsonProperty("fitBox")
	FITBOX
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy