summaryrefslogtreecommitdiff
path: root/lang/java/src/com/sleepycat/db/CompactStats.java
diff options
context:
space:
mode:
Diffstat (limited to 'lang/java/src/com/sleepycat/db/CompactStats.java')
-rw-r--r--lang/java/src/com/sleepycat/db/CompactStats.java13
1 files changed, 6 insertions, 7 deletions
diff --git a/lang/java/src/com/sleepycat/db/CompactStats.java b/lang/java/src/com/sleepycat/db/CompactStats.java
index f084340c..84dee7da 100644
--- a/lang/java/src/com/sleepycat/db/CompactStats.java
+++ b/lang/java/src/com/sleepycat/db/CompactStats.java
@@ -4,7 +4,7 @@
*
* See the file LICENSE for redistribution information.
*
- * Copyright (c) 2002, 2012 Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2002, 2015 Oracle and/or its affiliates. All rights reserved.
*/
package com.sleepycat.db;
@@ -41,7 +41,9 @@ public class CompactStats {
}
private int compact_empty_buckets;
- /** The number of empty hash buckets that were found the compaction phase. */
+ /**
+ The number of empty hash buckets that were found the compaction phase.
+ */
public int getEmptyBuckets() {
return compact_empty_buckets;
}
@@ -64,7 +66,8 @@ public class CompactStats {
private int compact_levels;
/**
- The number of levels removed from the Btree or Recno database during the compaction phase.
+ The number of levels removed from the Btree or Recno database during the
+ compaction phase.
*/
public int getLevels() {
return compact_levels;
@@ -99,16 +102,12 @@ public class CompactStats {
*/
public String toString() {
return "CompactStats:"
- + "\n compact_fillpercent=" + compact_fillpercent
- + "\n compact_timeout=" + compact_timeout
- + "\n compact_pages=" + compact_pages
+ "\n compact_empty_buckets=" + compact_empty_buckets
+ "\n compact_pages_free=" + compact_pages_free
+ "\n compact_pages_examine=" + compact_pages_examine
+ "\n compact_levels=" + compact_levels
+ "\n compact_deadlock=" + compact_deadlock
+ "\n compact_pages_truncated=" + compact_pages_truncated
- + "\n compact_truncate=" + compact_truncate
;
}
}