* Receives the value of the ODFDOM attribute representation <code>DbBooleanComparisonModeAttribute</code> , See {@odf.attribute db:boolean-comparison-mode}
*
* @return - the <code>String</code> , the value or <code>null</code>, if the attribute is not set and no default value defined.
*/
public String getDbBooleanComparisonModeAttribute() {
DbBooleanComparisonModeAttribute attr = (DbBooleanComparisonModeAttribute) getOdfAttribute(OdfDocumentNamespace.DB, "boolean-comparison-mode");
if (attr != null) {
return String.valueOf(attr.getValue());
}
return DbBooleanComparisonModeAttribute.DEFAULT_VALUE;
}