All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.hibernate.tuple.Instantiator Maven / Gradle / Ivy

There is a newer version: 7.0.0.Alpha1
Show newest version
/*
 * Hibernate, Relational Persistence for Idiomatic Java
 *
 * License: GNU Lesser General Public License (LGPL), version 2.1 or later.
 * See the lgpl.txt file in the root directory or .
 */
package org.hibernate.tuple;
import java.io.Serializable;

/**
 * Contract for implementors responsible for instantiating entity/component instances.
 *
 * @author Steve Ebersole
 */
public interface Instantiator extends Serializable {

	/**
	 * Perform the requested entity instantiation.
	 * 

* This form is never called for component instantiation, only entity instantiation. * * @param id The id of the entity to be instantiated. * @return An appropriately instantiated entity. */ public Object instantiate(Serializable id); /** * Perform the requested instantiation. * * @return The instantiated data structure. */ public Object instantiate(); /** * Performs check to see if the given object is an instance of the entity * or component which this Instantiator instantiates. * * @param object The object to be checked. * @return True is the object does represent an instance of the underlying * entity/component. */ public boolean isInstance(Object object); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy