📄 reflectionoptimizer.java
字号:
package org.hibernate.bytecode;/** * Represents reflection optimization for a particular class. * * @author Steve Ebersole */public interface ReflectionOptimizer { public InstantiationOptimizer getInstantiationOptimizer(); public AccessOptimizer getAccessOptimizer(); /** * Represents optimized entity instantiation. */ public static interface InstantiationOptimizer { /** * Perform instantiation of an instance of the underlying class. * * @return The new instance. */ public Object newInstance(); } /** * Represents optimized entity property access. * * @author Steve Ebersole */ public interface AccessOptimizer { public String[] getPropertyNames(); public Object[] getPropertyValues(Object object); public void setPropertyValues(Object object, Object[] values); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -