# Class: com.pnfsoftware.jeb.util.primitives.Booleans

Utility methods for boolean objects and primitives.

## Constructor: Booleans


## Static Method: equals
- parameter: `object1`, type: `java.lang.Boolean`
- parameter: `object2`, type: `java.lang.Boolean`
- return type: `boolean`

Description: Null safe equals method.
parameter: object1: first Boolean, may be null
parameter: object2: second Boolean, may be null
return: true if both values are null or equal

## Static Method: isFalse
- parameter: `object`, type: `java.lang.Boolean`
- return type: `boolean`

Description: Test whether a boxed Boolean is non\-null and false.
parameter: object: boxed Boolean
return: true if the object is [Boolean#FALSE](Boolean#FALSE)

## Static Method: isTrue
- parameter: `object`, type: `java.lang.Boolean`
- return type: `boolean`

Description: Test whether a boxed Boolean is non\-null and true.
parameter: object: boxed Boolean
return: true if the object is [Boolean#TRUE](Boolean#TRUE)

## Static Method: toBoolean
- parameter: `object`, type: `java.lang.Boolean`
- return type: `boolean`

Description: Convert a boxed Boolean to a primitive boolean.
parameter: object: boxed Boolean
return: true if the object is non\-null and true

