public static boolean toBoolean(Boolean value)
Converts a Boolean to a boolean handling null by returning false
BooleanUtils.toBoolean(Boolean.TRUE) = true BooleanUtils.toBoolean(Boolean.FALSE) = false BooleanUtils.toBoolean(null) = false
value - the boolean to converttrue or false, null returns falseCopyright © 2014 Konik.io. All Rights Reserved.