ojb.broker.accesslayer
Class PkEnumeration

java.lang.Object
  |
  +--ojb.broker.accesslayer.PkEnumeration
All Implemented Interfaces:
java.util.Enumeration, java.io.Serializable

public class PkEnumeration
extends java.lang.Object
implements java.util.Enumeration, java.io.Serializable

this class can be used to create enumerations of PrimaryKey objects. This is interesting for EJB finder methods in BMP entity beans which must return such enumerations.

See Also:
Serialized Form

Field Summary
protected  ClassDescriptor classDescriptor
          descriptor for the class of which items are to be found
protected  java.lang.reflect.Constructor constructor
          the Constructor that is needed to build the PrimaryKey Objects
protected  boolean hasCalledCheck
           
protected  boolean hasNext
           
protected  java.sql.ResultSet resultSet
          The underlying jdbc resultset produced by select statement
 
Constructor Summary
PkEnumeration(Query query, ClassDescriptor mif, java.lang.Class primaryKeyClass, PersistenceBrokerImpl broker)
          PkEnumeration constructor.
 
Method Summary
 boolean hasMoreElements()
          Tests if this enumeration contains more elements.
 java.lang.Object nextElement()
          Returns the next element of this enumeration if this enumeration object has at least one more element to provide.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

hasCalledCheck

protected boolean hasCalledCheck

hasNext

protected boolean hasNext

resultSet

protected java.sql.ResultSet resultSet
The underlying jdbc resultset produced by select statement


classDescriptor

protected ClassDescriptor classDescriptor
descriptor for the class of which items are to be found


constructor

protected java.lang.reflect.Constructor constructor
the Constructor that is needed to build the PrimaryKey Objects

Constructor Detail

PkEnumeration

public PkEnumeration(Query query,
                     ClassDescriptor mif,
                     java.lang.Class primaryKeyClass,
                     PersistenceBrokerImpl broker)
PkEnumeration constructor.

Parameters:
mif - classDescriptor of the target entity class (say Article)
primaryKeyClass - the entity classes PrimaryKey class (say ArticleKey). this key-class MUST have a constructor with one argument of type ojb.broker.Identity !
Method Detail

hasMoreElements

public boolean hasMoreElements()
Tests if this enumeration contains more elements.

Specified by:
hasMoreElements in interface java.util.Enumeration
Returns:
true if and only if this enumeration object contains at least one more element to provide; false otherwise.

nextElement

public java.lang.Object nextElement()
Returns the next element of this enumeration if this enumeration object has at least one more element to provide.

Specified by:
nextElement in interface java.util.Enumeration
Returns:
the next element of this enumeration.
Throws:
java.util.NoSuchElementException - if no more elements exist.


Authors: Thomas Mahler and others. (C) 2000, 2001.
All rights reserved. Published under the Gnu Public License.
http://objectbridge.sourceforge.net
Version: 0.8.375, 2002-04-04