List of utility methods to do Boolean to Int
int | convertBooleanToInt(boolean aValue) Convert boolean to TRUE constant. return aValue ? TRUE : FALSE;
|
int | convertBooleanToInt(boolean bool) convert Boolean To Int return bool ? 1 : 0;
|
Integer | convertBooleanToInteger(Boolean booleanToConvert) Converts a boolean value to the corresponding integer value, 0 for false and 1 for true. return booleanToConvert ? 1 : 0;
|