com.sleepycat.bind.tuple.TupleTupleBinding Maven / Gradle / Ivy
The newest version!
/*-
* Copyright (C) 2002, 2018, Oracle and/or its affiliates. All rights reserved.
*
* This file was distributed by Oracle as part of a version of Oracle Berkeley
* DB Java Edition made available at:
*
* http://www.oracle.com/technetwork/database/database-technologies/berkeleydb/downloads/index.html
*
* Please see the LICENSE file included in the top-level directory of the
* appropriate version of Oracle Berkeley DB Java Edition for a copy of the
* license and additional information.
*/
package com.sleepycat.bind.tuple;
import com.sleepycat.bind.EntityBinding;
import com.sleepycat.je.DatabaseEntry;
/**
* An abstract EntityBinding
that treats an entity's key entry and
* data entry as tuples.
*
* This class takes care of converting the entries to/from {@link
* TupleInput} and {@link TupleOutput} objects. Its three abstract methods
* must be implemented by a concrete subclass to convert between tuples and
* entity objects.
*
* - {@link #entryToObject(TupleInput,TupleInput)}
* - {@link #objectToKey(Object,TupleOutput)}
* - {@link #objectToData(Object,TupleOutput)}
*
*
* @author Mark Hayes
*/
public abstract class TupleTupleBinding extends TupleBase
implements EntityBinding {
/**
* Creates a tuple-tuple entity binding.
*/
public TupleTupleBinding() {
}
// javadoc is inherited
public E entryToObject(DatabaseEntry key, DatabaseEntry data) {
return entryToObject(TupleBinding.entryToInput(key),
TupleBinding.entryToInput(data));
}
// javadoc is inherited
public void objectToKey(E object, DatabaseEntry key) {
TupleOutput output = getTupleOutput(object);
objectToKey(object, output);
outputToEntry(output, key);
}
// javadoc is inherited
public void objectToData(E object, DatabaseEntry data) {
TupleOutput output = getTupleOutput(object);
objectToData(object, output);
outputToEntry(output, data);
}
// abstract methods
/**
* Constructs an entity object from {@link TupleInput} key and data
* entries.
*
* @param keyInput is the {@link TupleInput} key entry object.
*
* @param dataInput is the {@link TupleInput} data entry object.
*
* @return the entity object constructed from the key and data.
*/
public abstract E entryToObject(TupleInput keyInput, TupleInput dataInput);
/**
* Extracts a key tuple from an entity object.
*
* @param object is the entity object.
*
* @param output is the {@link TupleOutput} to which the key should be
* written.
*/
public abstract void objectToKey(E object, TupleOutput output);
/**
* Extracts a key tuple from an entity object.
*
* @param object is the entity object.
*
* @param output is the {@link TupleOutput} to which the data should be
* written.
*/
public abstract void objectToData(E object, TupleOutput output);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy