marshalledtupleentry.java

来自「berkeleyDB,强大的嵌入式数据,多个数据库的内核」· Java 代码 · 共 46 行

JAVA
46
字号
/*- * See the file LICENSE for redistribution information. * * Copyright (c) 2000-2004 *      Sleepycat Software.  All rights reserved. * * $Id: MarshalledTupleEntry.java,v 1.2 2004/06/04 18:24:50 mark Exp $ */package com.sleepycat.bind.tuple;/** * A marshalling interface implemented by key, data or entity classes that * are represented as tuples. * * <p>Key classes implement this interface to marshal their key entry.  Data or * entity classes implement this interface to marshal their data entry. * Implementations of this interface must have a public no arguments * constructor so that they can be instantiated by a binding, prior to calling * the {@link #unmarshalEntry} method.</p> * * <p>Note that implementing this interface is not necessary when the object is * a Java simple type, for example: String, Integer, etc. These types can be * used with built-in bindings returned by {@link * TupleBinding#getPrimitiveBinding}.</p> * * @author Mark Hayes * @see TupleTupleMarshalledBinding */public interface MarshalledTupleEntry {    /**     * Construct the key or data tuple entry from the key or data object.     *     * @param dataOutput is the output tuple.     */    void marshalEntry(TupleOutput dataOutput);    /**     * Construct the key or data object from the key or data tuple entry.     *     * @param dataInput is the input tuple.     */    void unmarshalEntry(TupleInput dataInput);}

⌨️ 快捷键说明

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