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 String
The name of an extractor that extracts elements from an array of primitive booleans (boolean[]
).static final String
The name of an extractor that extracts elements from an array of primitive bytes (byte[]
).static final String
The name of an extractor that extracts elements from an array of primitive chars (char[]
).static final String
The name of an extractor that extracts elements from an array of primitive double (double[]
).static final String
The name of an extractor that extracts elements from an array of primitive floats (float[]
).static final String
The name of an extractor that extracts elements from an array of primitive integers (int[]
).static final String
The name of an extractor that extracts elements from an array of primitive longs (long[]
).static final String
The name of an extractor that extracts elements from an array of objects (Object[]
,Integer[]
, ...).static final String
The name of an extractor that extracts elements from an array of primitive shorts (short[]
).static final String
The name of an extractor that extracts elements from aCollection
.static final String
The name of an extractor that extracts elements from anIterable
.static final String
The name of an extractor that extracts keys from aMap
.static final String
The name of an extractor that extracts values from aMap
.static final String
The name of an extractor that extracts the value from anOptional
.static final String
The name of an extractor that extracts the value from anOptionalDouble
.static final String
The name of an extractor that extracts the value from anOptionalInt
.static final String
The 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
The name of an extractor that extracts elements from anIterable
.- See Also:
-
MAP_KEY
The name of an extractor that extracts keys from aMap
.- See Also:
-
MAP_VALUE
The name of an extractor that extracts values from aMap
.- See Also:
-
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
The name of an extractor that extracts the value from anOptional
.- See Also:
-