Berkeley DB
version 4.7.25

Uses of Interface
com.sleepycat.bind.EntityBinding

Packages that use EntityBinding
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. 
com.sleepycat.persist The Direct Persistence Layer (DPL) adds a persistent object model to the Berkeley DB transactional engine. 
 

Uses of EntityBinding in com.sleepycat.bind.serial
 

Classes in com.sleepycat.bind.serial that implement EntityBinding
 class SerialSerialBinding
          An abstract EntityBinding that treats an entity's key entry and data entry as serialized objects.
 class TupleSerialBinding
          An abstract EntityBinding that treats an entity's key entry as a tuple and its data entry as a serialized object.
 class TupleSerialMarshalledBinding
          A concrete TupleSerialBinding that delegates to the MarshalledTupleKeyEntity interface of the entity class.
 

Uses of EntityBinding in com.sleepycat.bind.tuple
 

Classes in com.sleepycat.bind.tuple that implement EntityBinding
 class TupleTupleBinding
          An abstract EntityBinding that treats an entity's key entry and data entry as tuples.
 class TupleTupleMarshalledBinding
          A concrete TupleTupleBinding that delegates to the MarshalledTupleEntry and MarshalledTupleKeyEntity interfaces of the entity class.
 

Uses of EntityBinding in com.sleepycat.collections
 

Constructors in com.sleepycat.collections with parameters of type EntityBinding
StoredList(Database database, EntityBinding valueEntityBinding, boolean writeAllowed)
          Creates a list entity view of a Database.
StoredList(Database database, EntityBinding valueEntityBinding, PrimaryKeyAssigner keyAssigner)
          Creates a list entity 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.
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.
StoredSortedValueSet(Database database, EntityBinding valueEntityBinding, boolean writeAllowed)
          Creates a sorted value set entity view of a Database.
StoredValueSet(Database database, EntityBinding valueEntityBinding, boolean writeAllowed)
          Creates a value set entity view of a Database.
 

Uses of EntityBinding in com.sleepycat.persist
 

Methods in com.sleepycat.persist that return EntityBinding
 EntityBinding PrimaryIndex.getEntityBinding()
          Returns the entity binding for this index.
 

Constructors in com.sleepycat.persist with parameters of type EntityBinding
PrimaryIndex(Database database, Class<PK> keyClass, EntryBinding keyBinding, Class<E> entityClass, EntityBinding entityBinding)
          Creates a primary index without using an EntityStore.
 


Berkeley DB
version 4.7.25

Copyright (c) 1996,2008 Oracle. All rights reserved.