Interface QueryBuildingParameters
-
public interface QueryBuildingParametersProvides values for all options that impact the built query.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetBatchSize()Gets the batch size.LockModegetLockMode()Gets the lock mode.LockOptionsgetLockOptions()Gets the lock options.LoadQueryInfluencersgetQueryInfluencers()Provides data for options which can influence the SQL query needed to load an entity.
-
-
-
Method Detail
-
getQueryInfluencers
LoadQueryInfluencers getQueryInfluencers()
Provides data for options which can influence the SQL query needed to load an entity.- Returns:
- the load query influencers
- See Also:
LoadQueryInfluencers
-
getBatchSize
int getBatchSize()
Gets the batch size.- Returns:
- The batch size.
-
getLockMode
LockMode getLockMode()
Gets the lock mode.- Returns:
- The lock mode.
-
getLockOptions
LockOptions getLockOptions()
Gets the lock options.- Returns:
- The lock options.
-
-