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

org.openestate.io.immoxml.xml.Adapter2 Maven / Gradle / Ivy

Go to download

OpenEstate-IO-ImmoXML is a Java library to read and write real estate data in the ImmoXML format, that is mostly used by immopool.de.

There is a newer version: 1.4
Show newest version

package org.openestate.io.immoxml.xml;

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

public class Adapter2
    extends XmlAdapter
{


    public BigDecimal unmarshal(String value) {
        return (org.openestate.io.immoxml.ImmoXmlUtils.parseDecimal(value));
    }

    public String marshal(BigDecimal value) {
        return (org.openestate.io.immoxml.ImmoXmlUtils.printDecimal(value));
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy