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

📄 marshalledtuplekeyentity.java

📁 berkeley db 4.6.21的源码。berkeley db是一个简单的数据库管理系统
💻 JAVA
字号:
/*- * See the file LICENSE for redistribution information. * * Copyright (c) 2000,2007 Oracle.  All rights reserved. * * $Id: MarshalledTupleKeyEntity.java,v 12.5 2007/05/04 00:28:25 mark Exp $ */package com.sleepycat.bind.tuple;/** * A marshalling interface implemented by entity classes that represent keys as * tuples. Since <code>MarshalledTupleKeyEntity</code> objects are instantiated * using Java deserialization, no particular constructor is required by classes * that implement this interface. * * <p>Note that a marshalled tuple key extractor is somewhat less efficient * than a non-marshalled key tuple extractor because more conversions are * needed.  A marshalled key extractor must convert the entry to an object in * order to extract the key fields, while an unmarshalled key extractor does * not.</p> * * @author Mark Hayes * @see TupleTupleMarshalledBinding * @see com.sleepycat.bind.serial.TupleSerialMarshalledBinding */public interface MarshalledTupleKeyEntity {    /**     * Extracts the entity's primary key and writes it to the key output.     *     * @param keyOutput is the output tuple.     */    void marshalPrimaryKey(TupleOutput keyOutput);    /**     * Completes construction of the entity by setting its primary key from the     * stored primary key.     *     * @param keyInput is the input tuple.     */    void unmarshalPrimaryKey(TupleInput keyInput);    /**     * Extracts the entity's secondary key and writes it to the key output.     *     * @param keyName identifies the secondary key.     *     * @param keyOutput is the output tuple.     *     * @return true if a key was created, or false to indicate that the key is     * not present.     */    boolean marshalSecondaryKey(String keyName, TupleOutput keyOutput);    /**     * Clears the entity's secondary key fields for the given key name.     *     * <p>The specified index key should be changed by this method such that     * {@link #marshalSecondaryKey} for the same key name will return false.     * Other fields in the data object should remain unchanged.</p>     *     *     * @param keyName identifies the secondary key.     *     * @return true if the key was cleared, or false to indicate that the key     * is not present and no change is necessary.     */    boolean nullifyForeignKey(String keyName);}

⌨️ 快捷键说明

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