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

org.apache.bval.jsr.xml.Adapter1 Maven / Gradle / Ivy

//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.5 
// See https://eclipse-ee4j.github.io/jaxb-ri 
// Any modifications to this file will be lost upon recompilation of the source schema. 
//


package org.apache.bval.jsr.xml;

import jakarta.validation.executable.ExecutableType;
import jakarta.xml.bind.annotation.adapters.XmlAdapter;

public class Adapter1
    extends XmlAdapter
{


    public ExecutableType unmarshal(String value) {
        return (jakarta.validation.executable.ExecutableType.valueOf(value));
    }

    public String marshal(ExecutableType value) {
        if (value == null) {
            return null;
        }
        return value.toString();
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy