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

javax0.jamal.tools.param.DoneAction Maven / Gradle / Ivy

package javax0.jamal.tools.param;

public enum DoneAction {
    REQUIRED{
        String toString(String name){
            return " to make it required";
        }
    }, OPTIONAL{
        String toString(String name){
            return " to make it optional";
        }
    }, DEFAULT{
        String toString(String name){
            return " to set the default value";
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy