Berkeley DB
version 4.2.52

Uses of Interface
com.sleepycat.bdb.bind.DataBinding

Packages that use DataBinding
com.sleepycat.bdb Core database classes for defining an environment, creating data stores, and running transactions
[reference guide] 
com.sleepycat.bdb.bind Interfaces for defining data formats and data-to-object bindings [reference guide] 
com.sleepycat.bdb.bind.serial Formats and bindings that use Java serialization 
com.sleepycat.bdb.bind.tuple Formats and bindings that use sequences of primitive data items or tuples 
com.sleepycat.bdb.collection Collection classes providing Map, Set, List and Iterator views of a data store
[reference guide] 
 

Uses of DataBinding in com.sleepycat.bdb
 

Classes in com.sleepycat.bdb that implement DataBinding
 class RecordNumberBinding
          A concrete binding for record number keys.
 

Methods in com.sleepycat.bdb that return DataBinding
 DataBinding DataView.getKeyBinding()
          Returns the key binding that is used.
 DataBinding DataView.getValueBinding()
          Returns the value binding that is used.
 

Methods in com.sleepycat.bdb with parameters of type DataBinding
 DataView DataView.subView(Object beginKey, boolean beginInclusive, Object endKey, boolean endInclusive, DataBinding keyBinding)
          Return a new value-set view for key range, optionally changing the key binding.
 

Constructors in com.sleepycat.bdb with parameters of type DataBinding
DataView(DataStore store, DataIndex index, DataBinding keyBinding, DataBinding valueBinding, EntityBinding entityBinding, boolean writeAllowed)
          Creates a view for a given store/index and bindings.
DataView(DataStore store, DataIndex index, DataBinding keyBinding, DataBinding valueBinding, EntityBinding entityBinding, boolean writeAllowed)
          Creates a view for a given store/index and bindings.
 

Uses of DataBinding in com.sleepycat.bdb.bind
 

Classes in com.sleepycat.bdb.bind that implement DataBinding
 class ByteArrayBinding
          A transparent binding where the data byte array is used as the object.
 

Uses of DataBinding in com.sleepycat.bdb.bind.serial
 

Classes in com.sleepycat.bdb.bind.serial that implement DataBinding
 class SerialBinding
          A concrete serial binding for keys or values.
 

Uses of DataBinding in com.sleepycat.bdb.bind.tuple
 

Classes in com.sleepycat.bdb.bind.tuple that implement DataBinding
 class TupleBinding
          An abstract tuple binding for tuple keys or values.
 class TupleInputBinding
          A concrete tuple binding for keys or values which are TupleInput objects.
 class TupleMarshalledBinding
          A concrete key or value binding that uses the MarshalledTupleData interface.
 

Uses of DataBinding in com.sleepycat.bdb.collection
 

Constructors in com.sleepycat.bdb.collection with parameters of type DataBinding
StoredValueSet(DataStore store, DataBinding valueBinding, boolean writeAllowed)
          Creates a value set view of a DataStore.
StoredValueSet(DataIndex index, DataBinding valueBinding, boolean writeAllowed)
          Creates a value set view of a DataIndex.
StoredSortedValueSet(DataIndex index, DataBinding valueBinding, boolean writeAllowed)
          Creates a sorted value set view of a DataIndex.
StoredSortedMap(DataStore store, DataBinding keyBinding, DataBinding valueBinding, boolean writeAllowed)
          Creates a sorted map view of a DataStore.
StoredSortedMap(DataStore store, DataBinding keyBinding, DataBinding valueBinding, boolean writeAllowed)
          Creates a sorted map view of a DataStore.
StoredSortedMap(DataStore store, DataBinding keyBinding, EntityBinding valueEntityBinding, boolean writeAllowed)
          Creates a sorted map entity view of a DataStore.
StoredSortedMap(DataIndex index, DataBinding keyBinding, DataBinding valueBinding, boolean writeAllowed)
          Creates a sorted map view of a DataIndex.
StoredSortedMap(DataIndex index, DataBinding keyBinding, DataBinding valueBinding, boolean writeAllowed)
          Creates a sorted map view of a DataIndex.
StoredSortedMap(DataIndex index, DataBinding keyBinding, EntityBinding valueEntityBinding, boolean writeAllowed)
          Creates a sorted map entity view of a DataIndex.
StoredSortedKeySet(DataStore store, DataBinding keyBinding, boolean writeAllowed)
          Creates a sorted key set view of a DataStore.
StoredSortedKeySet(DataIndex index, DataBinding keyBinding, boolean writeAllowed)
          Creates a sorted key set view of a DataIndex.
StoredMap(DataStore store, DataBinding keyBinding, DataBinding valueBinding, boolean writeAllowed)
          Creates a map view of a DataStore.
StoredMap(DataStore store, DataBinding keyBinding, DataBinding valueBinding, boolean writeAllowed)
          Creates a map view of a DataStore.
StoredMap(DataStore store, DataBinding keyBinding, EntityBinding valueEntityBinding, boolean writeAllowed)
          Creates a map entity view of a DataStore.
StoredMap(DataIndex index, DataBinding keyBinding, DataBinding valueBinding, boolean writeAllowed)
          Creates a map view of a DataIndex.
StoredMap(DataIndex index, DataBinding keyBinding, DataBinding valueBinding, boolean writeAllowed)
          Creates a map view of a DataIndex.
StoredMap(DataIndex index, DataBinding keyBinding, EntityBinding valueEntityBinding, boolean writeAllowed)
          Creates a map entity view of a DataIndex.
StoredList(DataStore store, DataBinding valueBinding, boolean writeAllowed)
          Creates a list view of a DataStore.
StoredList(DataIndex index, DataBinding valueBinding, boolean writeAllowed)
          Creates a list view of a DataIndex.
StoredKeySet(DataStore store, DataBinding keyBinding, boolean writeAllowed)
          Creates a key set view of a DataStore.
StoredKeySet(DataIndex index, DataBinding keyBinding, boolean writeAllowed)
          Creates a key set view of a DataIndex.
 


Berkeley DB
version 4.2.52

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