Class BuiltinContainerExtractors
- java.lang.Object
-
- org.hibernate.search.mapper.pojo.extractor.builtin.BuiltinContainerExtractors
-
public class BuiltinContainerExtractors extends Object
The names ofcontainer extractorsavailable in Hibernate Search out of the box.
-
-
Field Summary
Fields Modifier and Type Field Description static StringARRAYThe name of an extractor that extracts elements from an object array.static StringCOLLECTIONThe name of an extractor that extracts elements from aCollection.static StringITERABLEThe name of an extractor that extracts elements from anIterable.static StringMAP_KEYThe name of an extractor that extracts keys from aMap.static StringMAP_VALUEThe name of an extractor that extracts values from aMap.static StringOPTIONALThe name of an extractor that extracts the value from anOptional.static StringOPTIONAL_DOUBLEThe name of an extractor that extracts the value from anOptionalDouble.static StringOPTIONAL_INTThe name of an extractor that extracts the value from anOptionalInt.static StringOPTIONAL_LONGThe name of an extractor that extracts the value from anOptionalLong.
-
-
-
Field Detail
-
ARRAY
public static final String ARRAY
The name of an extractor that extracts elements from an object array.- See Also:
- Constant Field Values
-
COLLECTION
public static final String COLLECTION
The name of an extractor that extracts elements from aCollection.- See Also:
- Constant Field Values
-
ITERABLE
public static final String ITERABLE
The name of an extractor that extracts elements from anIterable.- See Also:
- Constant Field Values
-
MAP_KEY
public static final String MAP_KEY
The name of an extractor that extracts keys from aMap.- See Also:
- Constant Field Values
-
MAP_VALUE
public static final String MAP_VALUE
The name of an extractor that extracts values from aMap.- See Also:
- Constant Field Values
-
OPTIONAL_DOUBLE
public static final String OPTIONAL_DOUBLE
The name of an extractor that extracts the value from anOptionalDouble.- See Also:
- Constant Field Values
-
OPTIONAL_INT
public static final String OPTIONAL_INT
The name of an extractor that extracts the value from anOptionalInt.- See Also:
- Constant Field Values
-
OPTIONAL_LONG
public static final String OPTIONAL_LONG
The name of an extractor that extracts the value from anOptionalLong.- See Also:
- Constant Field Values
-
OPTIONAL
public static final String OPTIONAL
The name of an extractor that extracts the value from anOptional.- See Also:
- Constant Field Values
-
-