📄 lazytooneoption.java
字号:
//$Id: $
package org.hibernate.annotations;
/**
* Lazy options available for a ToOne association
*
* @author Emmanuel Bernard
*/
public enum LazyToOneOption {
/** eagerly load the association */
FALSE,
/**
* Lazy, give back a proxy which will be loaded when the state is requested
* This should be the prefered option
*/
PROXY,
/** Lazy, give back the real object loaded when a reference is requested
* (Bytecode enhancement is mandatory for this option, fall back to PROXY
* if the class is not enhanced)
* This option should be avoided unless you can't afford the use of proxies
*/
NO_PROXY
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -