| Operator | Description | Result Type | 
| = | Equal comparison | boolean | 
| != | Not equal comparison | boolean | 
| or | Boolean (logical) or | boolean | 
| and | Boolean (logical) and | boolean | 
| xor | Boolean (logical) exclusive or | boolean | 
| not | Boolean (logical) inverse | boolean | 
 canParse() — returns true if the string argument can be successfully parsed.
canParse() — returns true if the string argument can be successfully parsed. parse() — method that returns the boolean instance represented by the string argument. You can call this method on the boolean type or on an instance of a boolean type. The more typical use is to call parse() directly on the boolean type.
parse() — method that returns the boolean instance represented by the string argument. You can call this method on the boolean type or on an instance of a boolean type. The more typical use is to call parse() directly on the boolean type. toString() – returns a string representation of the boolean. The return value is "true" if the referenced Boolean’s value is true. The return value is "false" if the referenced Boolean’s value is false.
toString() – returns a string representation of the boolean. The return value is "true" if the referenced Boolean’s value is true. The return value is "false" if the referenced Boolean’s value is false.