org.hibernate.search.bridge.builtin.NumberBridge 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.builtin;
import org.hibernate.search.bridge.StringBridge;
import org.hibernate.search.bridge.TwoWayStringBridge;
/**
* @author Emmanuel Bernard
*/
public abstract class NumberBridge implements TwoWayStringBridge {
public String objectToString(Object object) {
return object != null ?
object.toString() :
null;
}
}