Searched refs:TupleInput (Results 26 - 50 of 56) sorted by relevance

123

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/bind/tuple/
H A DLongBinding.java33 public Object entryToObject(TupleInput input) {
H A DShortBinding.java33 public Object entryToObject(TupleInput input) {
H A DSortedDoubleBinding.java44 public Object entryToObject(TupleInput input) {
H A DSortedFloatBinding.java44 public Object entryToObject(TupleInput input) {
H A DTupleMarshalledBinding.java49 public Object entryToObject(TupleInput input) {
H A DTupleTupleMarshalledBinding.java58 public Object entryToObject(TupleInput keyInput, TupleInput dataInput) {
H A DBigIntegerBinding.java21 public Object entryToObject(TupleInput input) {
H A DStringBinding.java31 public Object entryToObject(TupleInput input) {
H A DTupleBinding.java22 * TupleInput} and {@link TupleOutput} objects. Its two abstract methods must
26 * <li> {@link #entryToObject(TupleInput)} </li>
85 * Constructs a key or data object from a {@link TupleInput} entry.
91 public abstract Object entryToObject(TupleInput input);
H A DTupleInput.java6 * $Id: TupleInput.java,v 12.7 2008/01/08 20:58:36 bostic Exp $
61 * <li>{@link TupleInput#readSortedFloat}</li>
63 * <li>{@link TupleInput#readSortedDouble}</li>
69 * <li>{@link TupleInput#readFloat}</li>
71 * <li>{@link TupleInput#readDouble}</li>
76 public class TupleInput extends FastInputStream { class in inherits:FastInputStream
87 public TupleInput(byte[] buffer) { method in class:TupleInput
105 public TupleInput(byte[] buffer, int offset, int length) { method in class:TupleInput
118 public TupleInput(TupleOutput output) { method in class:TupleInput
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/examples_java/src/collections/ship/factory/
H A DPart.java14 import com.sleepycat.bind.tuple.TupleInput;
92 public void unmarshalPrimaryKey(TupleInput keyInput) {
H A DShipment.java14 import com.sleepycat.bind.tuple.TupleInput;
79 public void unmarshalPrimaryKey(TupleInput keyInput) {
H A DSupplier.java14 import com.sleepycat.bind.tuple.TupleInput;
85 public void unmarshalPrimaryKey(TupleInput keyInput) {
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/examples_java/src/collections/ship/marshal/
H A DPart.java13 import com.sleepycat.bind.tuple.TupleInput;
102 public void unmarshalPrimaryKey(TupleInput keyInput) {
H A DShipment.java13 import com.sleepycat.bind.tuple.TupleInput;
89 public void unmarshalPrimaryKey(TupleInput keyInput) {
H A DSupplier.java13 import com.sleepycat.bind.tuple.TupleInput;
95 public void unmarshalPrimaryKey(TupleInput keyInput) {
H A DSampleViews.java16 import com.sleepycat.bind.tuple.TupleInput;
194 public Object entryToObject(TupleInput input) {
251 public Object entryToObject(TupleInput tupleInput, Object javaInput) {
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/examples_java/src/db/GettingStarted/
H A DInventoryBinding.java6 import com.sleepycat.bind.tuple.TupleInput;
13 public Object entryToObject(TupleInput ti) {
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/bind/serial/
H A DTupleSerialBinding.java13 import com.sleepycat.bind.tuple.TupleInput;
22 * and converting the key entry to/from {@link TupleInput} and {@link
26 * <li> {@link #entryToObject(TupleInput,Object)} </li>
85 * Constructs an entity object from {@link TupleInput} key entry and
88 * @param keyInput is the {@link TupleInput} key entry object.
94 public abstract Object entryToObject(TupleInput keyInput,
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/examples_java/src/collections/ship/sentity/
H A DSampleViews.java16 import com.sleepycat.bind.tuple.TupleInput;
182 public Object entryToObject(TupleInput input) {
223 public Object entryToObject(TupleInput keyInput, Object dataInput) {
265 public Object entryToObject(TupleInput input) {
306 public Object entryToObject(TupleInput keyInput, Object dataInput) {
348 public Object entryToObject(TupleInput input) {
391 public Object entryToObject(TupleInput keyInput, Object dataInput) {
H A DSampleDatabase.java17 import com.sleepycat.bind.tuple.TupleInput;
240 public boolean createSecondaryKey(TupleInput primaryKeyInput,
278 public boolean createSecondaryKey(TupleInput primaryKeyInput,
313 public boolean createSecondaryKey(TupleInput primaryKeyInput,
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/examples_java/src/collections/ship/tuple/
H A DSampleViews.java16 import com.sleepycat.bind.tuple.TupleInput;
181 public Object entryToObject(TupleInput input) {
214 public Object entryToObject(TupleInput keyInput, Object dataInput) {
257 public Object entryToObject(TupleInput input) {
290 public Object entryToObject(TupleInput keyInput, Object dataInput) {
333 public Object entryToObject(TupleInput input) {
368 public Object entryToObject(TupleInput keyInput, Object dataInput) {
H A DSampleDatabase.java17 import com.sleepycat.bind.tuple.TupleInput;
240 public boolean createSecondaryKey(TupleInput primaryKeyInput,
278 public boolean createSecondaryKey(TupleInput primaryKeyInput,
313 public boolean createSecondaryKey(TupleInput primaryKeyInput,
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/test/scr024/src/com/sleepycat/bind/serial/test/
H A DMarshalledObject.java14 import com.sleepycat.bind.tuple.TupleInput;
80 public void unmarshalPrimaryKey(TupleInput keyInput) {
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/test/scr024/src/com/sleepycat/bind/tuple/test/
H A DTupleBindingTest.java31 import com.sleepycat.bind.tuple.TupleInput;
130 TupleInput input = new TupleInput(output);
287 binding.objectToEntry(new TupleInput(out), buffer);
291 assertTrue(result instanceof TupleInput);
292 TupleInput in = (TupleInput) result;
364 public Object entryToObject(TupleInput input) {
411 public Object entryToObject(TupleInput input) {

Completed in 112 milliseconds

123