org.openestate.io.immoxml.xml.Adapter5 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of OpenEstate-IO-ImmoXML Show documentation
Show all versions of OpenEstate-IO-ImmoXML Show documentation
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.
package org.openestate.io.immoxml.xml;
import java.math.BigInteger;
import javax.xml.bind.annotation.adapters.XmlAdapter;
public class Adapter5
extends XmlAdapter
{
public BigInteger unmarshal(String value) {
return (org.openestate.io.immoxml.ImmoXmlUtils.parseInteger(value));
}
public String marshal(BigInteger value) {
return (org.openestate.io.immoxml.ImmoXmlUtils.printInteger(value));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy