00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 package com.sleepycat.db;
00011
00012 public class SequenceStats {
00013
00014 protected SequenceStats() {}
00015
00016 private int st_wait;
00017 public int getWait() {
00018 return st_wait;
00019 }
00020
00021 private int st_nowait;
00022 public int getNowait() {
00023 return st_nowait;
00024 }
00025
00026 private long st_current;
00027 public long getCurrent() {
00028 return st_current;
00029 }
00030
00031 private long st_value;
00032 public long getValue() {
00033 return st_value;
00034 }
00035
00036 private long st_last_value;
00037 public long getLastValue() {
00038 return st_last_value;
00039 }
00040
00041 private long st_min;
00042 public long getMin() {
00043 return st_min;
00044 }
00045
00046 private long st_max;
00047 public long getMax() {
00048 return st_max;
00049 }
00050
00051 private int st_cache_size;
00052 public int getCacheSize() {
00053 return st_cache_size;
00054 }
00055
00056 private int st_flags;
00057 public int getFlags() {
00058 return st_flags;
00059 }
00060
00061 public String toString() {
00062 return "SequenceStats:"
00063 + "\n st_wait=" + st_wait
00064 + "\n st_nowait=" + st_nowait
00065 + "\n st_current=" + st_current
00066 + "\n st_value=" + st_value
00067 + "\n st_last_value=" + st_last_value
00068 + "\n st_min=" + st_min
00069 + "\n st_max=" + st_max
00070 + "\n st_cache_size=" + st_cache_size
00071 + "\n st_flags=" + st_flags
00072 ;
00073 }
00074 }