java.lang.Object | ||
↳ | java.lang.Enum<E extends java.lang.Enum<E>> | |
↳ | org.hibernate.annotations.LazyToOneOption |
Lazy options available for a ToOne association
Enum Values | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
LazyToOneOption | FALSE | eagerly load the association | |||||||||
LazyToOneOption | NO_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 | |||||||||
LazyToOneOption | PROXY | Lazy, give back a proxy which will be loaded when the state is requested This should be the prefered option |
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() | |||||||||||
![]() | |||||||||||
![]() |
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
Lazy, give back a proxy which will be loaded when the state is requested This should be the prefered option