converterlookup.java
来自「xstream是一个把java object序列化成xml文件的开源库,轻便好用」· Java 代码 · 共 25 行
JAVA
25 行
package com.thoughtworks.xstream.converters;/** * Responsible for looking up the correct Converter implementation for a specific type. * * @author Joe Walnes * @see Converter */public interface ConverterLookup { /** * Lookup a converter for a specific type. * <p/> * This type may be any Class, including primitive and array types. It may also be null, signifying * the value to be converted is a null type. */ Converter lookupConverterForType(Class type); /** * @deprecated As of 1.1.1 you can register Converters with priorities, making the need for a default converter redundant. */ Converter defaultConverter();}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?