public class Booleans extends java.lang.Object
Modifier and Type | Method and Description |
---|---|
static boolean |
toBoolean(java.lang.Boolean value)
Converts a Boolean to a boolean handling
null by returning false |
public static boolean toBoolean(java.lang.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 false
Copyright © 2014-2018 Konik.io. All Rights Reserved.