org.geotoolkit.internal.jaxb.gco.GO_Boolean Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of geotk-xml-base Show documentation
Show all versions of geotk-xml-base Show documentation
Basic utilities for XML marshalling and unmarshalling. Those utilities are built on
top of the JAXB framework.
The newest version!
/*
* Geotoolkit.org - An Open Source Java GIS Toolkit
* http://www.geotoolkit.org
*
* (C) 2008-2012, Open Source Geospatial Foundation (OSGeo)
* (C) 2009-2012, Geomatys
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation;
* version 2.1 of the License.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*/
package org.geotoolkit.internal.jaxb.gco;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.adapters.XmlAdapter;
/**
* Surrounds boolean value by {@code }.
* The ISO-19139 standard specifies that primitive types have to be surrounded by an element
* which represents the type of the value, using the namespace {@code gco} linked to the
* {@code http://www.isotc211.org/2005/gco} URL. The JAXB default behavior is to marshall
* primitive Java types directly "as is", without wrapping the value in the required element.
* The role of this class is to add such wrapping.
*
* @author Cédric Briançon (Geomatys)
* @author Martin Desruisseaux (Geomatys)
* @version 3.17
*
* @since 2.5
* @module
*/
public final class GO_Boolean extends XmlAdapter {
/**
* Wraps the {@link Boolean#TRUE} value.
*/
private static final GO_Boolean TRUE = new GO_Boolean(Boolean.TRUE);
/**
* Wraps the {@link Boolean#FALSE} value.
*/
private static final GO_Boolean FALSE = new GO_Boolean(Boolean.FALSE);
/**
* The boolean value to handle.
*/
@XmlElement(name = "Boolean")
public Boolean value;
/**
* Empty constructor used only by JAXB.
*/
public GO_Boolean() {
}
/**
* Constructs an adapter for the given value.
*
* @param value The value.
*/
private GO_Boolean(final Boolean value) {
this.value = value;
}
/**
* Allows JAXB to generate a Boolean object using the value found in the adapter.
*
* @param value The value wrapped in an adapter.
* @return The boolean value extracted from the adapter.
*/
@Override
public Boolean unmarshal(final GO_Boolean value) {
return (value != null) ? value.value : null;
}
/**
* Allows JAXB to change the result of the marshalling process, according to the
* ISO-19139 standard and its requirements about primitive types.
*
* @param value The boolean value we want to surround by an element representing its type.
* @return An adaptation of the boolean value, that is to say a boolean value surrounded
* by {@code } element.
*/
@Override
public GO_Boolean marshal(final Boolean value) {
if (value == null) {
return null;
}
final GO_Boolean c = value ? TRUE : FALSE;
assert value.equals(c.value) : value;
return c;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy