Package org.hibernate.search.bridge.builtin

Examples of org.hibernate.search.bridge.builtin.DoubleBridge


  private final Map<String, BuiltinArrayBridge> numericArrayBridges;
  private final Map<String, BuiltinIterableBridge> numericIterableBridges;

  public BridgeFactory(ServiceManager serviceManager) {
    CHARACTER = new TwoWayString2FieldBridgeAdaptor( new CharacterBridge() );
    DOUBLE = new TwoWayString2FieldBridgeAdaptor( new DoubleBridge() );
    FLOAT = new TwoWayString2FieldBridgeAdaptor( new FloatBridge() );
    SHORT = new TwoWayString2FieldBridgeAdaptor( new ShortBridge() );
    INTEGER = new TwoWayString2FieldBridgeAdaptor( new IntegerBridge() );
    LONG = new TwoWayString2FieldBridgeAdaptor( new LongBridge() );
    BIG_INTEGER = new TwoWayString2FieldBridgeAdaptor( new BigIntegerBridge() );
View Full Code Here

TOP

Related Classes of org.hibernate.search.bridge.builtin.DoubleBridge

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.