
com.wichell.framework.text.adapter.DataFormatterAdapter Maven / Gradle / Ivy
The newest version!
package com.wichell.framework.text.adapter;
import javax.xml.bind.annotation.adapters.XmlAdapter;
import com.wichell.framework.text.DataFormatter;
@SuppressWarnings("rawtypes")
public class DataFormatterAdapter extends XmlAdapter {
@Override
public DataFormatter unmarshal(String v) throws Exception {
return (DataFormatter) Class.forName(v).newInstance();
}
@Override
public String marshal(DataFormatter v) throws Exception {
return v.getClass().getName();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy