blob: 5553bb932185abaf1ea056994a502a376622dea6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/*-
* See the file LICENSE for redistribution information.
*
* Copyright (c) 1997, 2015 Oracle and/or its affiliates. All rights reserved.
*
* $Id$
*/
package com.sleepycat.db;
/**
Statistics for a single database.
*/
public abstract class DatabaseStats {
// no public constructor
/* package */ DatabaseStats() {}
}
|