Class BuiltinContainerExtractors

java.lang.Object
org.hibernate.search.mapper.pojo.extractor.builtin.BuiltinContainerExtractors

public class BuiltinContainerExtractors extends Object
The names of container extractors available in Hibernate Search out of the box.
  • Field Details

    • ARRAY_OBJECT

      public static final String ARRAY_OBJECT
      The name of an extractor that extracts elements from an array of objects (Object[], Integer[], ...).
      See Also:
    • ARRAY_CHAR

      public static final String ARRAY_CHAR
      The name of an extractor that extracts elements from an array of primitive chars (char[]).
      See Also:
    • ARRAY_BOOLEAN

      public static final String ARRAY_BOOLEAN
      The name of an extractor that extracts elements from an array of primitive booleans (boolean[]).
      See Also:
    • ARRAY_BYTE

      public static final String ARRAY_BYTE
      The name of an extractor that extracts elements from an array of primitive bytes (byte[]).
      See Also:
    • ARRAY_SHORT

      public static final String ARRAY_SHORT
      The name of an extractor that extracts elements from an array of primitive shorts (short[]).
      See Also:
    • ARRAY_INT

      public static final String ARRAY_INT
      The name of an extractor that extracts elements from an array of primitive integers (int[]).
      See Also:
    • ARRAY_LONG

      public static final String ARRAY_LONG
      The name of an extractor that extracts elements from an array of primitive longs (long[]).
      See Also:
    • ARRAY_FLOAT

      public static final String ARRAY_FLOAT
      The name of an extractor that extracts elements from an array of primitive floats (float[]).
      See Also:
    • ARRAY_DOUBLE

      public static final String ARRAY_DOUBLE
      The name of an extractor that extracts elements from an array of primitive double (double[]).
      See Also:
    • COLLECTION

      public static final String COLLECTION
      The name of an extractor that extracts elements from a Collection.
      See Also:
    • ITERABLE

      public static final String ITERABLE
      The name of an extractor that extracts elements from an Iterable.
      See Also:
    • MAP_KEY

      public static final String MAP_KEY
      The name of an extractor that extracts keys from a Map.
      See Also:
    • MAP_VALUE

      public static final String MAP_VALUE
      The name of an extractor that extracts values from a Map.
      See Also:
    • OPTIONAL_DOUBLE

      public static final String OPTIONAL_DOUBLE
      The name of an extractor that extracts the value from an OptionalDouble.
      See Also:
    • OPTIONAL_INT

      public static final String OPTIONAL_INT
      The name of an extractor that extracts the value from an OptionalInt.
      See Also:
    • OPTIONAL_LONG

      public static final String OPTIONAL_LONG
      The name of an extractor that extracts the value from an OptionalLong.
      See Also:
    • OPTIONAL

      public static final String OPTIONAL
      The name of an extractor that extracts the value from an Optional.
      See Also: