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

com.jparams.store.reference.ReferenceFactory Maven / Gradle / Ivy

There is a newer version: 3.1.4
Show newest version
package com.jparams.store.reference;

/**
 * Factory to create an instance of a {@link Reference}
 *
 * @param  value type
 */
public interface ReferenceFactory
{
    /**
     * Create a reference for the given object
     *
     * @param obj object to reference
     * @return reference
     */
    Reference createReference(V obj);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy