当前位置: 首页>>代码示例>>Java>>正文


Java IntKeyIntValueHashMap.get方法代码示例

本文整理汇总了Java中org.hsqldb.lib.IntKeyIntValueHashMap.get方法的典型用法代码示例。如果您正苦于以下问题:Java IntKeyIntValueHashMap.get方法的具体用法?Java IntKeyIntValueHashMap.get怎么用?Java IntKeyIntValueHashMap.get使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.hsqldb.lib.IntKeyIntValueHashMap的用法示例。


在下文中一共展示了IntKeyIntValueHashMap.get方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: translateWithMap

import org.hsqldb.lib.IntKeyIntValueHashMap; //导入方法依赖的package包/类
String translateWithMap(String source, IntKeyIntValueHashMap map) {

        StringBuffer sb = new StringBuffer(source.length());

        for (int i = 0; i < source.length(); i++) {
            int character = source.charAt(i);
            int value     = map.get(character, -2);

            if (value == -2) {
                sb.append((char) character);
            } else if (value == -1) {

                //
            } else {
                sb.append((char) value);
            }
        }

        return sb.toString();
    }
 
开发者ID:tiweGH,项目名称:OpenDiabetes,代码行数:21,代码来源:FunctionCustom.java

示例2: freeStatement

import org.hsqldb.lib.IntKeyIntValueHashMap; //导入方法依赖的package包/类
/**
 * Removes the link between a session and a compiled statement.
 *
 * If the statement is not linked with any other session, it is removed
 * from management.
 *
 * @param csid the compiled statment identifier
 * @param sid the session identifier
 */
synchronized void freeStatement(int csid, int sid) {

    IntKeyIntValueHashMap scsMap =
        (IntKeyIntValueHashMap) sessionMap.get(sid);
    int count = scsMap.get(csid) - 1;

    if (count != 0) {
        scsMap.put(csid, count);
    } else {
        scsMap.remove(csid);

        int usecount = useMap.get(csid, 1) - 1;

        if (usecount == 0) {
            String sql = (String) sqlLookup.remove(csid);

            sqlMap.remove(sql);
            csidMap.remove(csid);
            useMap.remove(csid);
        } else {
            useMap.put(csid, usecount);
        }
    }
}
 
开发者ID:parabuild-ci,项目名称:parabuild-ci,代码行数:34,代码来源:CompiledStatementManager.java

示例3: freeStatement

import org.hsqldb.lib.IntKeyIntValueHashMap; //导入方法依赖的package包/类
/**
 * Removes one (or all) of the links between a session and a compiled statement.
 *
 * If the statement is not linked with any other session, it is removed
 * from management.
 *
 * @param csid the compiled statment identifier
 * @param sid the session identifier
 * @param freeAll if true, remove all links to the session
 */
void freeStatement(int csid, int sid, boolean freeAll) {

    if (csid == -1) {

        // statement was never added
        return;
    }

    IntKeyIntValueHashMap scsMap =
        (IntKeyIntValueHashMap) sessionUseMap.get(sid);

    if (scsMap == null) {

        // statement already removed due to invalidation
        return;
    }

    int sessionUseCount = scsMap.get(csid, 0);

    if (sessionUseCount == 0) {

        // statement already removed due to invalidation
    } else if (sessionUseCount == 1 || freeAll) {
        scsMap.remove(csid);

        int usecount = useMap.get(csid, 0);

        if (usecount == 0) {

            // statement already removed due to invalidation
        } else if (usecount == 1) {
            CompiledStatement cs =
                (CompiledStatement) csidMap.remove(csid);

            if (cs != null) {
                int schemaid = cs.schemaHsqlName.hashCode();
                IntValueHashMap sqlMap =
                    (IntValueHashMap) schemaMap.get(schemaid);
                String sql = (String) sqlLookup.remove(csid);

                sqlMap.remove(sql);
            }

            useMap.remove(csid);
        } else {
            useMap.put(csid, usecount - 1);
        }
    } else {
        scsMap.put(csid, sessionUseCount - 1);
    }
}
 
开发者ID:parabuild-ci,项目名称:parabuild-ci,代码行数:62,代码来源:CompiledStatementManager.java


注:本文中的org.hsqldb.lib.IntKeyIntValueHashMap.get方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。