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

com.jamonapi.MonKeyItem Maven / Gradle / Ivy

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

/** Used for MonKey to allow jamon to have the generalized form of the key for aggregation, and the
 * more specific form for writing out details say to a buffer.
 * 
 * 

For example the generalized form of a query would be something like: select * from table where * name=?. The detail form would be something like: select * from table where name='steve'

* *

MonKeyItems can be placed as objects in MonKeyImp, and MonKeyBase

* *

Note toString() should always return the more generalized form.

* * @author steve souza * */ public interface MonKeyItem { public Object getDetails(); public void setDetails(Object details); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy