⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 cachefilestats.java

📁 关于Berkelay数据库的共享源码
💻 JAVA
字号:
/*- * DO NOT EDIT: automatically built by dist/s_java_stat. * * See the file LICENSE for redistribution information. * * Copyright (c) 2002-2006 *	Oracle Corporation.  All rights reserved. */package com.sleepycat.db;public class CacheFileStats {    // no public constructor    /* package */ CacheFileStats() {}    private String file_name;    public String getFileName() {        return file_name;    }    private int st_pagesize;    public int getPageSize() {        return st_pagesize;    }    private int st_map;    public int getMap() {        return st_map;    }    private int st_cache_hit;    public int getCacheHit() {        return st_cache_hit;    }    private int st_cache_miss;    public int getCacheMiss() {        return st_cache_miss;    }    private int st_page_create;    public int getPageCreate() {        return st_page_create;    }    private int st_page_in;    public int getPageIn() {        return st_page_in;    }    private int st_page_out;    public int getPageOut() {        return st_page_out;    }    public String toString() {        return "CacheFileStats:"            + "\n  file_name=" + file_name            + "\n  st_pagesize=" + st_pagesize            + "\n  st_map=" + st_map            + "\n  st_cache_hit=" + st_cache_hit            + "\n  st_cache_miss=" + st_cache_miss            + "\n  st_page_create=" + st_page_create            + "\n  st_page_in=" + st_page_in            + "\n  st_page_out=" + st_page_out            ;    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -