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

org.hibernate.search.bridge.StringBridge Maven / Gradle / Ivy

There is a newer version: 3.5.6-Final
Show newest version
//$Id: $
package org.hibernate.search.bridge;

/**
 * Transform an object into a string representation
 *
 * @author Emmanuel Bernard
 */
public interface StringBridge {
	
	/**
	 * convert the object representation to a String
	 * The return String must not be null, it can be empty though
	 */
	String objectToString(Object object);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy