com.dynamicpdf.api.Align 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;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* Specifies horizontal alignment. Center alignment is the default value for alignments.
*/
public enum Align {
/**
* Align left.
*/
@JsonProperty("left")
LEFT,
/**
* Align center.
*/
@JsonProperty("center")
CENTER,
/**
* Align right.
*/
@JsonProperty("right")
RIGHT
}