org.hibernate.search.bridge.builtin
Class NumberBridge

java.lang.Object
  extended by org.hibernate.search.bridge.builtin.NumberBridge
All Implemented Interfaces:
StringBridge, TwoWayStringBridge
Direct Known Subclasses:
BigDecimalBridge, BigIntegerBridge, DoubleBridge, FloatBridge, IntegerBridge, LongBridge, ShortBridge

public abstract class NumberBridge
extends Object
implements TwoWayStringBridge

Author:
Emmanuel Bernard

Constructor Summary
NumberBridge()
           
 
Method Summary
 String objectToString(Object object)
          convert the object representation to a String The return String must not be null, it can be empty though
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface org.hibernate.search.bridge.TwoWayStringBridge
stringToObject
 

Constructor Detail

NumberBridge

public NumberBridge()
Method Detail

objectToString

public String objectToString(Object object)
Description copied from interface: StringBridge
convert the object representation to a String The return String must not be null, it can be empty though

Specified by:
objectToString in interface StringBridge