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

nl.vpro.xml.bind.FalseToNullAdapter Maven / Gradle / Ivy

package nl.vpro.xml.bind;

import jakarta.xml.bind.annotation.adapters.XmlAdapter;

/**
 * @author Michiel Meeuwissen
 * @since 1.7
 */
public class FalseToNullAdapter extends XmlAdapter {

    @Override
    public Boolean unmarshal(Boolean bool) {
        return bool == null ? false : bool;
    }

    @Override
    public Boolean marshal(Boolean  bool) {
        return bool == null || !bool ? null : true;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy