Class BuiltinContainerExtractors
java.lang.Object
org.hibernate.search.mapper.pojo.extractor.builtin.BuiltinContainerExtractors
The names of
container extractors available in Hibernate Search out of the box.-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final StringThe name of an extractor that extracts elements from an array of primitive booleans (boolean[]).static final StringThe name of an extractor that extracts elements from an array of primitive bytes (byte[]).static final StringThe name of an extractor that extracts elements from an array of primitive chars (char[]).static final StringThe name of an extractor that extracts elements from an array of primitive double (double[]).static final StringThe name of an extractor that extracts elements from an array of primitive floats (float[]).static final StringThe name of an extractor that extracts elements from an array of primitive integers (int[]).static final StringThe name of an extractor that extracts elements from an array of primitive longs (long[]).static final StringThe name of an extractor that extracts elements from an array of objects (Object[],Integer[], ...).static final StringThe name of an extractor that extracts elements from an array of primitive shorts (short[]).static final StringThe name of an extractor that extracts elements from aCollection.static final StringThe name of an extractor that extracts elements from anIterable.static final StringThe name of an extractor that extracts keys from aMap.static final StringThe name of an extractor that extracts values from aMap.static final StringThe name of an extractor that extracts the value from anOptional.static final StringThe name of an extractor that extracts the value from anOptionalDouble.static final StringThe name of an extractor that extracts the value from anOptionalInt.static final StringThe name of an extractor that extracts the value from anOptionalLong. -
Method Summary
-
Field Details
-
ARRAY_OBJECT
The name of an extractor that extracts elements from an array of objects (Object[],Integer[], ...).- See Also:
-
ARRAY_CHAR
The name of an extractor that extracts elements from an array of primitive chars (char[]).- See Also:
-
ARRAY_BOOLEAN
The name of an extractor that extracts elements from an array of primitive booleans (boolean[]).- See Also:
-
ARRAY_BYTE
The name of an extractor that extracts elements from an array of primitive bytes (byte[]).- See Also:
-
ARRAY_SHORT
The name of an extractor that extracts elements from an array of primitive shorts (short[]).- See Also:
-
ARRAY_INT
The name of an extractor that extracts elements from an array of primitive integers (int[]).- See Also:
-
ARRAY_LONG
The name of an extractor that extracts elements from an array of primitive longs (long[]).- See Also:
-
ARRAY_FLOAT
The name of an extractor that extracts elements from an array of primitive floats (float[]).- See Also:
-
ARRAY_DOUBLE
The name of an extractor that extracts elements from an array of primitive double (double[]).- See Also:
-
COLLECTION
The name of an extractor that extracts elements from aCollection.- See Also:
-
ITERABLE
-
MAP_KEY
-
MAP_VALUE
-
OPTIONAL_DOUBLE
The name of an extractor that extracts the value from anOptionalDouble.- See Also:
-
OPTIONAL_INT
The name of an extractor that extracts the value from anOptionalInt.- See Also:
-
OPTIONAL_LONG
The name of an extractor that extracts the value from anOptionalLong.- See Also:
-
OPTIONAL
-