⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 converter.java

📁 Persistence Layer s ebook and source code.
💻 JAVA
字号:
package pl.converter;

/**
 * This interface represents converter. Object type is the type of a
 * PersistentObject's attribute.
 *
 * @author  Artem Rudoy
 */
public interface Converter
{
    /**
     * Init converter.
     */
    public void init(java.util.Properties properties) throws pl.PlException;
    
    /**
     * Convert to object attribute type.
     */
    public Object convertTo(Object object) throws pl.PlException;

    /**
     * Convert from object attribute type.
     */
    public Object convertFrom(Object object) throws pl.PlException;
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -