org.apache.openjpa.kernel
Class QueryStatistics.None<T>

java.lang.Object
  extended by org.apache.openjpa.kernel.QueryStatistics.None<T>
Type Parameters:
T -
All Implemented Interfaces:
Serializable, QueryStatistics<T>
Enclosing interface:
QueryStatistics<T>

public static class QueryStatistics.None<T>
extends Object
implements QueryStatistics<T>

A do-nothing implementation.

Author:
Pinaki Poddar
See Also:
Serialized Form

Nested Class Summary
 
Nested classes/interfaces inherited from interface org.apache.openjpa.kernel.QueryStatistics
QueryStatistics.Default<T>, QueryStatistics.None<T>
 
Constructor Summary
QueryStatistics.None()
           
 
Method Summary
 void clear()
          Clears all statistics accumulated since start.
 void dump(PrintStream out)
          Dumps on the given output stream.
 long getExecutionCount()
          Gets number of total query execution since last reset.
 long getExecutionCount(T query)
          Gets number of executions for the given query since last reset.
 long getHitCount()
          Gets number of total query execution that are cached since last reset.
 long getHitCount(T query)
          Gets number of executions for the given query that are cached since last reset.
 long getTotalExecutionCount()
          Gets number of total query execution since start.
 long getTotalExecutionCount(T query)
          Gets number of executions for the given query since start.
 long getTotalHitCount()
          Gets number of total query execution that are cached since start.
 long getTotalHitCount(T query)
          Gets number of executions for the given query that are cached since start.
 Set<T> keys()
          Gets all the identifier keys for the cached queries.
 void recordExecution(T query)
          Record that the given query has been executed.
 void reset()
          Clears all statistics accumulated since last reset.
 Date since()
          Gets the time of last reset.
 Date start()
          Gets the time of start.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

QueryStatistics.None

public QueryStatistics.None()
Method Detail

clear

public void clear()
Description copied from interface: QueryStatistics
Clears all statistics accumulated since start.

Specified by:
clear in interface QueryStatistics<T>

dump

public void dump(PrintStream out)
Description copied from interface: QueryStatistics
Dumps on the given output stream.

Specified by:
dump in interface QueryStatistics<T>

getExecutionCount

public long getExecutionCount()
Description copied from interface: QueryStatistics
Gets number of total query execution since last reset.

Specified by:
getExecutionCount in interface QueryStatistics<T>

getExecutionCount

public long getExecutionCount(T query)
Description copied from interface: QueryStatistics
Gets number of executions for the given query since last reset.

Specified by:
getExecutionCount in interface QueryStatistics<T>

getHitCount

public long getHitCount()
Description copied from interface: QueryStatistics
Gets number of total query execution that are cached since last reset.

Specified by:
getHitCount in interface QueryStatistics<T>

getHitCount

public long getHitCount(T query)
Description copied from interface: QueryStatistics
Gets number of executions for the given query that are cached since last reset.

Specified by:
getHitCount in interface QueryStatistics<T>

getTotalExecutionCount

public long getTotalExecutionCount()
Description copied from interface: QueryStatistics
Gets number of total query execution since start.

Specified by:
getTotalExecutionCount in interface QueryStatistics<T>

getTotalExecutionCount

public long getTotalExecutionCount(T query)
Description copied from interface: QueryStatistics
Gets number of executions for the given query since start.

Specified by:
getTotalExecutionCount in interface QueryStatistics<T>

getTotalHitCount

public long getTotalHitCount()
Description copied from interface: QueryStatistics
Gets number of total query execution that are cached since start.

Specified by:
getTotalHitCount in interface QueryStatistics<T>

getTotalHitCount

public long getTotalHitCount(T query)
Description copied from interface: QueryStatistics
Gets number of executions for the given query that are cached since start.

Specified by:
getTotalHitCount in interface QueryStatistics<T>

keys

public Set<T> keys()
Description copied from interface: QueryStatistics
Gets all the identifier keys for the cached queries.

Specified by:
keys in interface QueryStatistics<T>

recordExecution

public void recordExecution(T query)
Description copied from interface: QueryStatistics
Record that the given query has been executed.

Specified by:
recordExecution in interface QueryStatistics<T>

reset

public void reset()
Description copied from interface: QueryStatistics
Clears all statistics accumulated since last reset.

Specified by:
reset in interface QueryStatistics<T>

since

public Date since()
Description copied from interface: QueryStatistics
Gets the time of last reset.

Specified by:
since in interface QueryStatistics<T>

start

public Date start()
Description copied from interface: QueryStatistics
Gets the time of start.

Specified by:
start in interface QueryStatistics<T>


Copyright © 2006-2010 Apache Software Foundation. All Rights Reserved.