01: //
02: // This library is free software; you can redistribute it and/or
03: // modify it under the terms of the GNU Lesser General Public
04: // License as published by the Free Software Foundation; either
05: // version 2.1 of the License, or (at your option) any later version.
06: //
07: // This library is distributed in the hope that it will be useful,
08: // but WITHOUT ANY WARRANTY; without even the implied warranty of
09: // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
10: // Lesser General Public License for more details.
11: //
12: // You should have received a copy of the GNU Lesser General Public
13: // License along with this library; if not, write to the Free Software
14: // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
15: //
16: // Contact information:
17: // Mailing address:
18: // Marios Hadjieleftheriou
19: // University of California, Riverside
20: // Department of Computer Science
21: // Surge Building, Room 310
22: // Riverside, CA 92521
23: //
24: // Email:
25: // marioh@cs.ucr.edu
26: package org.geotools.caching.spatialindex.spatialindex;
27:
28: public interface IStatistics {
29: public long getReads();
30:
31: public long getWrites();
32:
33: public long getNumberOfNodes();
34:
35: public long getNumberOfData();
36: } // IStatistics
|