org.convertertopdf.util.ESkipValidation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of convertertopdf Show documentation
Show all versions of convertertopdf Show documentation
A component 100% free, which convert several file formats to PDF
package org.convertertopdf.util;
/**
* Enum responsible for indicating that validations should not be performed.
*
* @author Thiago Leite e-mail: [email protected]
*/
public enum ESkipValidation {
TRUE(true);
/**
* Informs that validations should be ignored.
*/
private boolean skipVaidation;
/**
* Constructor.
* @param skipValidation Informs that validations should be ignored
*/
private ESkipValidation(boolean skipValidation) {
this.skipVaidation = skipValidation;
}
/**
* Gets the value of {@link ESkipValidation} attribute.
* @return {@link ESkipValidation#skipVaidation}.
*/
public boolean getValue() {
return skipVaidation;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy