Package io.ebean.meta
Interface MetaQueryPlan
public interface MetaQueryPlan
Meta data for captured query plan.
-
Method Summary
Modifier and Type Method Description Class<?>getBeanType()Return the bean type for the query.StringgetBind()Return a description of the bind values.longgetCaptureCount()Return the total count of times bind capture has occurred.StringgetHash()Return the hash of the plan.StringgetLabel()Return the label of the query.StringgetPlan()Return the raw plan.ProfileLocationgetProfileLocation()Return the profile location for the query.longgetQueryTimeMicros()Return the query execution time associated with the bind values capture.StringgetSql()Return the sql of the query.
-
Method Details
-
getBeanType
Class<?> getBeanType()Return the bean type for the query. -
getLabel
Return the label of the query. -
getProfileLocation
Return the profile location for the query. -
getSql
Return the sql of the query. -
getHash
Return the hash of the plan. -
getBind
Return a description of the bind values. -
getPlan
Return the raw plan. -
getQueryTimeMicros
long getQueryTimeMicros()Return the query execution time associated with the bind values capture. -
getCaptureCount
long getCaptureCount()Return the total count of times bind capture has occurred.
-