All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.ebeaninternal.server.profile.DQueryPlanMeta Maven / Gradle / Ivy

There is a newer version: 15.8.1
Show newest version
package io.ebeaninternal.server.profile;

class DQueryPlanMeta {

  private final Class type;
  private final String label;
  private final String sql;

  DQueryPlanMeta(Class type, String label, String sql) {
    this.type = type;
    this.label = label;
    this.sql = sql;
  }

  public Class getType() {
    return type;
  }

  public String getLabel() {
    return label;
  }

  public String getSql() {
    return sql;
  }

  @Override
  public String toString() {
    return "type:" + type + " label:" + label;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy