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

mapping.org.hibernate.boot.jaxb.mapping.spi.Adapter4 Maven / Gradle / Ivy

There is a newer version: 7.0.0.Alpha2
Show newest version

package org.hibernate.boot.jaxb.mapping.spi;

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

public class Adapter4
    extends XmlAdapter
{


    public EnumType unmarshal(String value) {
        return (org.hibernate.boot.jaxb.mapping.internal.EnumTypeMarshalling.fromXml(value));
    }

    public String marshal(EnumType value) {
        return (org.hibernate.boot.jaxb.mapping.internal.EnumTypeMarshalling.toXml(value));
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy