Annotation Type ValueBridgeRef


@Documented @Target({}) @Retention(RUNTIME) public @interface ValueBridgeRef
A reference to the value bridge to use in a @*Field annotation, for example in GenericField.valueBridge(), KeywordField.valueBridge(), or FullTextField.valueBridge().

Either a bridge or a binder can be referenced, but never both. References can use either a name, a type, or both.

  • Nested Class Summary

    Nested Classes
    Modifier and Type
    Class
    Description
    static class 
    Class used as a marker for the default value of the type() attribute.
  • Optional Element Summary

    Optional Elements
    Modifier and Type
    Optional Element
    Description
    Reference a value bridge by its bean name.
    org.hibernate.search.engine.environment.bean.BeanRetrieval
     
    Class<? extends ValueBridge>
    Reference a value bridge by its type.
  • Element Details

    • name

      String name
      Reference a value bridge by its bean name.
      Returns:
      The bean name of the value bridge.
      Default:
      ""
    • type

      Class<? extends ValueBridge> type
      Reference a value bridge by its type.
      Returns:
      The type of the value bridge.
      Default:
      org.hibernate.search.mapper.pojo.bridge.mapping.annotation.ValueBridgeRef.UndefinedBridgeImplementationType.class
    • retrieval

      org.hibernate.search.engine.environment.bean.BeanRetrieval retrieval
      Returns:
      How to retrieve the value bridge. See BeanRetrieval.
      Default:
      ANY