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.String
getBind()
Return a description of the bind values.long
getCaptureCount()
Return the total count of times bind capture has occurred.String
getHash()
Return the hash of the plan.String
getLabel()
Return the label of the query.String
getPlan()
Return the raw plan.ProfileLocation
getProfileLocation()
Return the profile location for the query.long
getQueryTimeMicros()
Return the query execution time associated with the bind values capture.String
getSql()
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.
-
-