Interface QueryBuildingParameters
-
public interface QueryBuildingParameters
Provides values for all options that impact the built query.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
getBatchSize()
Gets the batch size.LockMode
getLockMode()
Gets the lock mode.LockOptions
getLockOptions()
Gets the lock options.LoadQueryInfluencers
getQueryInfluencers()
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.
-
-