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

com.aeontronix.commons.Required Maven / Gradle / Ivy

Go to download

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
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy