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

com.github.thorbenkuck.netcom2.auto.ObjectRepository Maven / Gradle / Ivy

The newest version!
package com.github.thorbenkuck.netcom2.auto;

public interface ObjectRepository {

	static ObjectRepository hashingDefault() {
		return new HashingDefaultConstructorObjectRepository();
	}

	static ObjectRepository hashingRecursive() {
		return new RecursiveHashingObjectRepository();
	}

	void add(Object o);

	 T get(Class type);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy