FileDocCategorySizeDatePackage
LoadingCollectionEntry.javaAPI DocHibernate 3.2.51316Mon Mar 19 14:43:46 GMT 2007org.hibernate.engine.loading

LoadingCollectionEntry

public class LoadingCollectionEntry extends Object
Represents a collection currently being loaded.
author
Steve Ebersole

Fields Summary
private final ResultSet
resultSet
private final org.hibernate.persister.collection.CollectionPersister
persister
private final Serializable
key
private final org.hibernate.collection.PersistentCollection
collection
Constructors Summary
public LoadingCollectionEntry(ResultSet resultSet, org.hibernate.persister.collection.CollectionPersister persister, Serializable key, org.hibernate.collection.PersistentCollection collection)

		this.resultSet = resultSet;
		this.persister = persister;
		this.key = key;
		this.collection = collection;
	
Methods Summary
public org.hibernate.collection.PersistentCollectiongetCollection()

		return collection;
	
public java.io.SerializablegetKey()

		return key;
	
public org.hibernate.persister.collection.CollectionPersistergetPersister()

		return persister;
	
public java.sql.ResultSetgetResultSet()

		return resultSet;
	
public java.lang.StringtoString()

		return getClass().getName() + "<rs=" + resultSet + ", coll=" + MessageHelper.collectionInfoString( persister.getRole(), key ) + ">@" + Integer.toHexString( hashCode() );