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

org.convertertopdf.util.ESkipValidation Maven / Gradle / Ivy

There is a newer version: 2.3.2
Show newest version
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