
com.jparams.store.reference.ReferenceFactory Maven / Gradle / Ivy
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 - 2025 Weber Informatics LLC | Privacy Policy