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

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

/**
 * Represents the placement of a page element.
 */
public enum ElementPlacement {

	/**
	 * Represents top left placement.
	 */
	@JsonProperty("topLeft")
	TOPLEFT,

	/**
	 * Represents top center placement.
	 */
	@JsonProperty("topCenter")
	TOPCENTER,

	/**
	 * Represents top right placement.
	 */
	@JsonProperty("topRight")
	TOPRIGHT,

	/**
	 * Represents bottom left placement.
	 */
	@JsonProperty("bottomLeft")
	BOTTOMLEFT,

	/**
	 * Represents bottom center placement.
	 */
	@JsonProperty("bottomCenter")
	BOTTOMCENTER,

	/**
	 * Represents bottom right placement.
	 */
	@JsonProperty("bottomRight")
	BOTTOMRIGHT
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy