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

cdc.enums.Nullable Maven / Gradle / Ivy

package cdc.enums;

/**
 * Enumeration for nullable.
 * 

* Used to avid confusion with boolean parameters. * * @author Damien Carbonne * */ public enum Nullable { TRUE, FALSE; public boolean isTrue() { return this == TRUE; } public boolean isFalse() { return this == FALSE; } public static Nullable fromBoolean(boolean value) { return value ? TRUE : FALSE; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy