Package io.ebean.meta
Interface MetaQueryPlan
public interface MetaQueryPlan
Meta data for captured query plan.
-
Method Summary
Modifier and TypeMethodDescriptionClass<?>beanType()Return the bean type for the query.bind()Return a description of the bind values.longReturn the total count of times bind capture has occurred.hash()Return the hash of the plan.label()Return the label of the query.plan()Return the raw plan.Return the profile location for the query.longReturn the query execution time associated with the bind values capture.sql()Return the sql of the query.
-
Method Details
-
beanType
Return the bean type for the query. -
label
Return the label of the query. -
profileLocation
Return the profile location for the query. -
sql
Return the sql of the query. -
hash
Return the hash of the plan. -
bind
Return a description of the bind values. -
plan
Return the raw plan. -
queryTimeMicros
long queryTimeMicros()Return the query execution time associated with the bind values capture. -
captureCount
long captureCount()Return the total count of times bind capture has occurred.
-