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

com.jamonapi.utils.Generalizer Maven / Gradle / Ivy

There is a newer version: 2.82
Show newest version
package com.jamonapi.utils;

/** This class interface will return a detail form in the getDetailLabel method which
 * is appropriate for logging.  getSummaryLabel returns a label that is appropriate for jamon
 * (i.e. not too unique).  toString() should always return the more general/summary label.
 * 
 * 

Example: *

    *
  1. getDetailLabel()=select * from table where key=100 and name='mindy' *
  2. getLabel()=select * from table where key=? and name=? *
  3. toString()=getLabel() *
*/ public interface Generalizer { public String generalize(String detail); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy