Berkeley DB
version 4.7.25

com.sleepycat.persist
Class EntityJoin<PK,E>

java.lang.Object
  extended by com.sleepycat.persist.EntityJoin<PK,E>

public class EntityJoin<PK,E>
extends Object

Performs an equality join on two or more secondary keys.

EntityJoin objects are thread-safe. Multiple threads may safely call the methods of a shared EntityJoin object.

An equality join is a match on all entities in a given primary index that have two or more specific secondary key values. Note that key ranges may not be matched by an equality join, only exact keys are matched.

For example:

  // Index declarations -- see package summary example.
  //
  PrimaryIndex<String,Person> personBySsn;
  SecondaryIndex<String,String,Person> personByParentSsn;
  SecondaryIndex<Long,String,Person> personByEmployerIds;
  Employer employer = ...;

  // Match on all Person objects having parentSsn "111-11-1111" and also
  // containing an employerId of employer.id.  In other words, match on all
  // of Bob's children that work for a given employer.
  //
  EntityJoin<String,Person> join = new EntityJoin(personBySsn);
  join.addCondition(personByParentSsn, "111-11-1111");
  join.addCondition(personByEmployerIds, employer.id);

  // Perform the join operation by traversing the results with a cursor.
  //
  ForwardCursor<Person> results = join.entities();
  try {
      for (Person person : results) {
          System.out.println(person.ssn + ' ' + person.name);
      }
  } finally {
      results.close();
  }


Constructor Summary
EntityJoin(PrimaryIndex<PK,E> index)
          Creates a join object for a given primary index.
 
Method Summary
<SK> void
addCondition(SecondaryIndex<SK,PK,E> index, SK key)
          Adds a secondary key condition to the equality join.
 ForwardCursor<E> entities()
          Opens a cursor that returns the entities qualifying for the join.
 ForwardCursor<E> entities(Transaction txn, CursorConfig config)
          Opens a cursor that returns the entities qualifying for the join.
 ForwardCursor<PK> keys()
          Opens a cursor that returns the primary keys of entities qualifying for the join.
 ForwardCursor<PK> keys(Transaction txn, CursorConfig config)
          Opens a cursor that returns the primary keys of entities qualifying for the join.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

EntityJoin

public EntityJoin(PrimaryIndex<PK,E> index)
Creates a join object for a given primary index.

Parameters:
index - the primary index on which the join will operate.
Method Detail

addCondition

public <SK> void addCondition(SecondaryIndex<SK,PK,E> index,
                              SK key)
Adds a secondary key condition to the equality join. Only entities having the given key value in the given secondary index will be returned by the join operation.

Parameters:
index - the secondary index containing the given key value.
key - the key value to match during the join.

entities

public ForwardCursor<E> entities()
                          throws DatabaseException
Opens a cursor that returns the entities qualifying for the join. The join operation is performed as the returned cursor is accessed.

The operations performed with the cursor will not be transaction protected, and CursorConfig.DEFAULT is used implicitly.

Returns:
the cursor.
Throws:
IllegalStateException - if less than two conditions were added.
DatabaseException

entities

public ForwardCursor<E> entities(Transaction txn,
                                 CursorConfig config)
                          throws DatabaseException
Opens a cursor that returns the entities qualifying for the join. The join operation is performed as the returned cursor is accessed.

Parameters:
txn - the transaction used to protect all operations performed with the cursor, or null if the operations should not be transaction protected.
config - the cursor configuration that determines the default lock mode used for all cursor operations, or null to implicitly use CursorConfig.DEFAULT.
Returns:
the cursor.
Throws:
IllegalStateException - if less than two conditions were added.
DatabaseException

keys

public ForwardCursor<PK> keys()
                       throws DatabaseException
Opens a cursor that returns the primary keys of entities qualifying for the join. The join operation is performed as the returned cursor is accessed.

The operations performed with the cursor will not be transaction protected, and CursorConfig.DEFAULT is used implicitly.

Returns:
the cursor.
Throws:
IllegalStateException - if less than two conditions were added.
DatabaseException

keys

public ForwardCursor<PK> keys(Transaction txn,
                              CursorConfig config)
                       throws DatabaseException
Opens a cursor that returns the primary keys of entities qualifying for the join. The join operation is performed as the returned cursor is accessed.

Parameters:
txn - the transaction used to protect all operations performed with the cursor, or null if the operations should not be transaction protected.
config - the cursor configuration that determines the default lock mode used for all cursor operations, or null to implicitly use CursorConfig.DEFAULT.
Returns:
the cursor.
Throws:
IllegalStateException - if less than two conditions were added.
DatabaseException

Berkeley DB
version 4.7.25

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