* Receives the value of the ODFDOM attribute representation <code>OfficeConversionModeAttribute</code> , See {@odf.attribute office:conversion-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 getOfficeConversionModeAttribute() {
OfficeConversionModeAttribute attr = (OfficeConversionModeAttribute) getOdfAttribute(OdfDocumentNamespace.OFFICE, "conversion-mode");
if (attr != null) {
return String.valueOf(attr.getValue());
}
return OfficeConversionModeAttribute.DEFAULT_VALUE;
}