DOC HOME SITE MAP MAN PAGES GNU INFO SEARCH PRINT BOOK
 
Berkeley DB
version 4.4.20

Uses of Interface
com.sleepycat.bind.EntryBinding

Packages that use EntryBinding
com.sleepycat.bind Bindings between database entries and Java objects. 
com.sleepycat.bind.serial Bindings that use Java serialization. 
com.sleepycat.bind.tuple Bindings that use sequences of primitive fields, or tuples. 
com.sleepycat.collections Data access based on the standard Java collections API. 
 

Uses of EntryBinding in com.sleepycat.bind
 

Classes in com.sleepycat.bind that implement EntryBinding
 class ByteArrayBinding
          A pass-through EntryBinding that uses the entry's byte array as the key or data object.
 class RecordNumberBinding
          An EntryBinding that treats a record number key entry as a Long key object.
 

Uses of EntryBinding in com.sleepycat.bind.serial
 

Classes in com.sleepycat.bind.serial that implement EntryBinding
 class SerialBinding
          A concrete EntryBinding that treats a key or data entry as a serialized object.
 

Uses of EntryBinding in com.sleepycat.bind.tuple
 

Classes in com.sleepycat.bind.tuple that implement EntryBinding
 class BooleanBinding
          A concrete TupleBinding for a Boolean primitive wrapper or a boolean primitive.
 class ByteBinding
          A concrete TupleBinding for a Byte primitive wrapper or a byte primitive.
 class CharacterBinding
          A concrete TupleBinding for a Character primitive wrapper or a char primitive.
 class DoubleBinding
          A concrete TupleBinding for a Double primitive wrapper or a double primitive.
 class FloatBinding
          A concrete TupleBinding for a Float primitive wrapper or a float primitive.
 class IntegerBinding
          A concrete TupleBinding for a Integer primitive wrapper or an int primitive.
 class LongBinding
          A concrete TupleBinding for a Long primitive wrapper or a long primitive.
 class ShortBinding
          A concrete TupleBinding for a Short primitive wrapper or a short primitive.
 class StringBinding
          A concrete TupleBinding for a simple String value.
 class TupleBinding
          An abstract EntryBinding that treats a key or data entry as a tuple; it includes predefined bindings for Java primitive types.
 class TupleInputBinding
          A concrete EntryBinding that uses the TupleInput object as the key or data object.
 class TupleMarshalledBinding
          A concrete TupleBinding that delegates to the MarshalledTupleEntry interface of the data or key object.
 

Uses of EntryBinding in com.sleepycat.collections
 

Constructors in com.sleepycat.collections with parameters of type EntryBinding
StoredValueSet(Database database, EntryBinding valueBinding, boolean writeAllowed)
          Creates a value set view of a Database.
StoredSortedMap(Database database, EntryBinding keyBinding, EntryBinding valueBinding, boolean writeAllowed)
          Creates a sorted map view of a Database.
StoredSortedMap(Database database, EntryBinding keyBinding, EntryBinding valueBinding, PrimaryKeyAssigner keyAssigner)
          Creates a sorted map view of a Database with a PrimaryKeyAssigner.
StoredSortedMap(Database database, EntryBinding keyBinding, EntityBinding valueEntityBinding, boolean writeAllowed)
          Creates a sorted map entity view of a Database.
StoredSortedMap(Database database, EntryBinding keyBinding, EntityBinding valueEntityBinding, PrimaryKeyAssigner keyAssigner)
          Creates a sorted map entity view of a Database with a PrimaryKeyAssigner.
StoredSortedKeySet(Database database, EntryBinding keyBinding, boolean writeAllowed)
          Creates a sorted key set view of a Database.
StoredMap(Database database, EntryBinding keyBinding, EntryBinding valueBinding, boolean writeAllowed)
          Creates a map view of a Database.
StoredMap(Database database, EntryBinding keyBinding, EntryBinding valueBinding, PrimaryKeyAssigner keyAssigner)
          Creates a map view of a Database with a PrimaryKeyAssigner.
StoredMap(Database database, EntryBinding keyBinding, EntityBinding valueEntityBinding, boolean writeAllowed)
          Creates a map entity view of a Database.
StoredMap(Database database, EntryBinding keyBinding, EntityBinding valueEntityBinding, PrimaryKeyAssigner keyAssigner)
          Creates a map entity view of a Database with a PrimaryKeyAssigner.
StoredList(Database database, EntryBinding valueBinding, boolean writeAllowed)
          Creates a list view of a Database.
StoredList(Database database, EntryBinding valueBinding, PrimaryKeyAssigner keyAssigner)
          Creates a list view of a Database with a PrimaryKeyAssigner.
StoredKeySet(Database database, EntryBinding keyBinding, boolean writeAllowed)
          Creates a key set view of a Database.
 


Berkeley DB
version 4.4.20

Copyright (c) 1996-2005 Sleepycat Software, Inc. - All rights reserved.