![JAR search and dependency download from the Maven repository](/logo.png)
org.hibernate.search.bridge.builtin.LongBridge 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.util.StringHelper;
/**
* Map a long element
*
* @author Emmanuel Bernard
*/
public class LongBridge extends NumberBridge {
public Object stringToObject(String stringValue) {
if ( StringHelper.isEmpty( stringValue ) ) return null;
return new Long( stringValue );
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy