com.princexml.wrapper.enums.PdfEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of prince-java-wrapper Show documentation
Show all versions of prince-java-wrapper Show documentation
This library contains class files that provide a Java interface to Prince.
The newest version!
/*
* Copyright (C) 2022 YesLogic Pty. Ltd.
* All rights reserved.
*/
package com.princexml.wrapper.enums;
/**
* PDF events.
*/
public enum PdfEvent {
/** Equates to the string {@code "will-close"}. */
WILL_CLOSE("will-close"),
/** Equates to the string {@code "will-save"}. */
WILL_SAVE("will-save"),
/** Equates to the string {@code "did-save"}. */
DID_SAVE("did-save"),
/** Equates to the string {@code "will-print"}. */
WILL_PRINT("will-print"),
/** Equates to the string {@code "did-print"}. */
DID_PRINT("did-print");
private final String pdfEvent;
PdfEvent(String pdfEvent) {
this.pdfEvent = pdfEvent;
}
@Override
public String toString() {
return this.pdfEvent;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy