Package io.ebean.meta
Interface MetaQueryPlan
-
public interface MetaQueryPlan
Meta data for captured query plan.
-
-
Method Summary
All Methods Instance Methods Abstract Methods 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 Detail
-
getBeanType
Class<?> getBeanType()
Return the bean type for the query.
-
getProfileLocation
ProfileLocation getProfileLocation()
Return the profile location for the query.
-
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.
-
-