com.aeontronix.commons.Required Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aeon-commons-core Show documentation
Show all versions of aeon-commons-core Show documentation
Various utility classes. Except for very rare exceptions (annotation-based validation) this will not
require any dependencies beyond the JRE
The newest version!
package com.aeontronix.commons;
/**
* This enum indicates how to handle missing data. REQUIRED means the data is required to exist and processing should fail,
* CREATE means the data should be created if missing, OPTIONAL means the data isn't required and process can proceed
*/
public enum Required {
REQUIRED, CREATE, OPTIONAL
}