org.hibernate.search.bridge.StringBridge Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hibernate-annotations
Show all versions of hibernate-annotations
Annotations metadata for Hibernate
//$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);
}