Example usage for Java org.hibernate FetchMode fields, constructors, methods, implement or subclass
The text is from its open source code.
FetchMode | DEFAULT Default to the setting configured in the mapping file. |
FetchMode | JOIN Fetch using an outer join. |
FetchMode | SELECT Fetch eagerly, using a separate select. |
FetchMode | LAZY Fetch lazily. |
FetchMode | EAGER Fetch eagerly, using an outer join. |