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

org.openestate.io.kyero.xml.Adapter3 Maven / Gradle / Ivy


package org.openestate.io.kyero.xml;

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

public class Adapter3
    extends XmlAdapter
{


    public BigInteger unmarshal(String value) {
        return (org.openestate.io.kyero.KyeroUtils.parseNonNegativeInteger(value));
    }

    public String marshal(BigInteger value) {
        return (org.openestate.io.kyero.KyeroUtils.printNonNegativeInteger(value));
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy