org.apache.bval.jsr.xml.Adapter1 Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-2
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2016.10.28 at 05:30:33 PM CDT
//
package org.apache.bval.jsr.xml;
import javax.validation.executable.ExecutableType;
import javax.xml.bind.annotation.adapters.XmlAdapter;
public class Adapter1
extends XmlAdapter
{
public ExecutableType unmarshal(String value) {
return (javax.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