001package io.ebean.meta;
002
003public interface MetaQueryPlan {
004
005  Class<?> getBeanType();
006
007  /**
008   * Return a string representation of the query plan hash.
009   */
010  String getQueryPlanHash();
011
012  String getLabel();
013
014  String getSql();
015
016  String getBind();
017
018  String getPlan();
019
020  long getQueryTimeMicros();
021
022  long getCaptureCount();
023}