All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.openestate.io.is24_xml.xml.Adapter32 Maven / Gradle / Ivy

Go to download

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.

There is a newer version: 1.4
Show newest version

package org.openestate.io.is24_xml.xml;

import java.math.BigDecimal;
import javax.xml.bind.annotation.adapters.XmlAdapter;

public class Adapter32
    extends XmlAdapter
{


    public BigDecimal unmarshal(String value) {
        return (org.openestate.io.is24_xml.Is24XmlUtils.parseZimmeranzahl(value));
    }

    public String marshal(BigDecimal value) {
        return (org.openestate.io.is24_xml.Is24XmlUtils.printZimmeranzahl(value));
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy