org.openestate.io.is24_xml.xml.Adapter34 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of OpenEstate-IO-IS24-XML Show documentation
Show all versions of OpenEstate-IO-IS24-XML Show documentation
OpenEstate-IO-IS24-XML is a Java library to read and write real estate data in the IS24-XML format, that was used by immobilienscout24.de until 2014.
package org.openestate.io.is24_xml.xml;
import java.math.BigDecimal;
import javax.xml.bind.annotation.adapters.XmlAdapter;
public class Adapter34
extends XmlAdapter
{
public BigDecimal unmarshal(String value) {
return (org.openestate.io.is24_xml.Is24XmlUtils.parseZahl102(value));
}
public String marshal(BigDecimal value) {
return (org.openestate.io.is24_xml.Is24XmlUtils.printZahl102(value));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy