From 780b92ada9afcf1d58085a83a0b9e6bc982203d1 Mon Sep 17 00:00:00 2001 From: Lorry Tar Creator Date: Tue, 17 Feb 2015 17:25:57 +0000 Subject: Imported from /home/lorry/working-area/delta_berkeleydb/db-6.1.23.tar.gz. --- .../com/sleepycat/bind/class-use/EntryBinding.html | 1248 +++++++++----------- 1 file changed, 574 insertions(+), 674 deletions(-) (limited to 'docs/java/com/sleepycat/bind/class-use/EntryBinding.html') diff --git a/docs/java/com/sleepycat/bind/class-use/EntryBinding.html b/docs/java/com/sleepycat/bind/class-use/EntryBinding.html index 8e5c570a..d3e55a6a 100644 --- a/docs/java/com/sleepycat/bind/class-use/EntryBinding.html +++ b/docs/java/com/sleepycat/bind/class-use/EntryBinding.html @@ -1,692 +1,592 @@ - - - - - -Uses of Interface com.sleepycat.bind.EntryBinding (Oracle - Berkeley DB Java API) - - - - - - - - - - - - -
- - +//--> + + - - - - - - - - - - - - -
-Berkeley DB
version 5.3.21
-
- + + + + + - -
-
-

-Uses of Interface
com.sleepycat.bind.EntryBinding

-
- - - - - - - - - - - - - - - - - - - - - - - - - -
-Packages that use EntryBinding
com.sleepycat.bindBindings between database entries and Java objects. 
com.sleepycat.bind.serialBindings that use Java serialization. 
com.sleepycat.bind.tupleBindings that use sequences of primitive fields, or tuples. 
com.sleepycat.collectionsData access based on the standard Java collections API. 
com.sleepycat.persistThe Direct Persistence Layer (DPL) adds a persistent object model to the -Berkeley DB transactional engine. 
-  -

- - - - - -
-Uses of EntryBinding in com.sleepycat.bind
-  -

- - - - - - - - - - - - - -
Classes in com.sleepycat.bind that implement EntryBinding
- classByteArrayBinding - -
-          A pass-through EntryBinding that uses the entry's byte array as - the key or data object.
- classRecordNumberBinding - -
-          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
- classSerialBinding<E> - -
-          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
- classBigDecimalBinding - -
-          A concrete TupleBinding for an unsorted BigDecimal - value.
- classBigIntegerBinding - -
-          A concrete TupleBinding for a BigInteger value.
- classBooleanBinding - -
-          A concrete TupleBinding for a Boolean primitive - wrapper or a boolean primitive.
- classByteBinding - -
-          A concrete TupleBinding for a Byte primitive - wrapper or a byte primitive.
- classCharacterBinding - -
-          A concrete TupleBinding for a Character primitive - wrapper or a char primitive.
- classDoubleBinding - -
-          A concrete TupleBinding for an unsorted Double - primitive wrapper or an unsorted double primitive.
- classFloatBinding - -
-          A concrete TupleBinding for an unsorted Float - primitive wrapper or an unsorted float primitive.
- classIntegerBinding - -
-          A concrete TupleBinding for a Integer primitive - wrapper or an int primitive.
- classLongBinding - -
-          A concrete TupleBinding for a Long primitive - wrapper or a long primitive.
- classPackedIntegerBinding - -
-          A concrete TupleBinding for an unsorted Integer +
+

Uses of Interface
com.sleepycat.bind.EntryBinding

+
+
+
+
class StringBinding +
A concrete TupleBinding for a simple String value.
+
class TupleBinding<E> +
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<E extends MarshalledTupleEntry> +
A concrete TupleBinding that delegates to the + MarshalledTupleEntry interface of the data or key object.
+
+ +

  • + + +

    Uses of EntryBinding in com.sleepycat.collections

    + + + + + + + + + + + + +
    Methods in com.sleepycat.collections with parameters of type EntryBinding 
    Modifier and TypeMethod and Description
    <PK> java.util.Map<PK,V>StoredMap.duplicatesMap(K secondaryKey, + EntryBinding primaryKeyBinding) +
    Returns a new map from primary key to value for the subset of records + having a given secondary key (duplicates).
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Constructors in com.sleepycat.collections with parameters of type EntryBinding 
    Constructor and Description
    StoredKeySet(Database database, + EntryBinding<K> keyBinding, + boolean writeAllowed) +
    Creates a key set view of a Database.
    +
    StoredList(Database database, + EntryBinding<E> valueBinding, + boolean writeAllowed) +
    Creates a list view of a Database.
    +
    StoredList(Database database, + EntryBinding<E> valueBinding, + PrimaryKeyAssigner keyAssigner) +
    Creates a list view of a Database with a PrimaryKeyAssigner.
    +
    StoredMap(Database database, + EntryBinding<K> keyBinding, + EntityBinding<V> valueEntityBinding, + boolean writeAllowed) +
    Creates a map entity view of a Database.
    +
    StoredMap(Database database, + EntryBinding<K> keyBinding, + EntityBinding<V> valueEntityBinding, + PrimaryKeyAssigner keyAssigner) +
    Creates a map entity view of a Database with a PrimaryKeyAssigner.
    +
    StoredMap(Database database, + EntryBinding<K> keyBinding, + EntryBinding<V> valueBinding, + boolean writeAllowed) +
    Creates a map view of a Database.
    +
    StoredMap(Database database, + EntryBinding<K> keyBinding, + EntryBinding<V> valueBinding, + boolean writeAllowed) +
    Creates a map view of a Database.
    +
    StoredMap(Database database, + EntryBinding<K> keyBinding, + EntryBinding<V> valueBinding, + PrimaryKeyAssigner keyAssigner) +
    Creates a map view of a Database with a PrimaryKeyAssigner.
    +
    StoredMap(Database database, + EntryBinding<K> keyBinding, + EntryBinding<V> valueBinding, + PrimaryKeyAssigner keyAssigner) +
    Creates a map view of a Database with a PrimaryKeyAssigner.
    +
    StoredSortedKeySet(Database database, + EntryBinding<K> keyBinding, + boolean writeAllowed) +
    Creates a sorted key set view of a Database.
    +
    StoredSortedMap(Database database, + EntryBinding<K> keyBinding, + EntityBinding<V> valueEntityBinding, + boolean writeAllowed) +
    Creates a sorted map entity view of a Database.
    +
    StoredSortedMap(Database database, + EntryBinding<K> keyBinding, + EntityBinding<V> valueEntityBinding, + PrimaryKeyAssigner keyAssigner) +
    Creates a sorted map entity view of a Database with a PrimaryKeyAssigner.
    +
    StoredSortedMap(Database database, + EntryBinding<K> keyBinding, + EntryBinding<V> valueBinding, + boolean writeAllowed) +
    Creates a sorted map view of a Database.
    +
    StoredSortedMap(Database database, + EntryBinding<K> keyBinding, + EntryBinding<V> valueBinding, + boolean writeAllowed) +
    Creates a sorted map view of a Database.
    +
    StoredSortedMap(Database database, + EntryBinding<K> keyBinding, + EntryBinding<V> valueBinding, + PrimaryKeyAssigner keyAssigner) +
    Creates a sorted map view of a Database with a PrimaryKeyAssigner.
    +
    StoredSortedMap(Database database, + EntryBinding<K> keyBinding, + EntryBinding<V> valueBinding, + PrimaryKeyAssigner keyAssigner) +
    Creates a sorted map view of a Database with a PrimaryKeyAssigner.
    +
    StoredValueSet(Database database, + EntryBinding<E> valueBinding, + boolean writeAllowed) +
    Creates a value set view of a Database.
    +
    +
  • +
  • + + +

    Uses of EntryBinding in com.sleepycat.persist

    + + + + + + + + + + + + + + + + +
    Methods in com.sleepycat.persist that return EntryBinding 
    Modifier and TypeMethod and Description
    EntryBinding<PK>PrimaryIndex.getKeyBinding() +
    Returns the primary key binding for this index.
    +
    EntryBinding<SK>SecondaryIndex.getKeyBinding() +
    Returns the secondary key binding for the index.
    +
    + + + + + + + + + + + + + +
    Constructors in com.sleepycat.persist with parameters of type EntryBinding 
    Constructor and Description
    PrimaryIndex(Database database, + java.lang.Class<PK> keyClass, + EntryBinding<PK> keyBinding, + java.lang.Class<E> entityClass, + EntityBinding<E> entityBinding) +
    Creates a primary index without using an EntityStore.
    +
    SecondaryIndex(SecondaryDatabase database, + Database keysDatabase, + PrimaryIndex<PK,E> primaryIndex, + java.lang.Class<SK> secondaryKeyClass, + EntryBinding<SK> secondaryKeyBinding) +
    Creates a secondary index without using an EntityStore.
    +
    +
  • + + + + - - - - - - - - - - - - -
    -Berkeley DB
    version 5.3.21
    -
    - + + + + + - -
    -Copyright (c) 1996, 2012 Oracle and/or its affiliates. All rights reserved. - - +

    Copyright (c) 1996, 2015 Oracle and/or its affiliates. All rights reserved.

    + + -- cgit v1.2.1