Class BuiltinContainerExtractors
- java.lang.Object
-
- org.hibernate.search.mapper.pojo.extractor.builtin.BuiltinContainerExtractors
-
public class BuiltinContainerExtractors extends Object
The names ofcontainer extractors
available in Hibernate Search out of the box.
-
-
Field Summary
Fields Modifier and Type Field Description static String
ARRAY_BOOLEAN
The name of an extractor that extracts elements from an array of primitive booleans (boolean[]
).static String
ARRAY_BYTE
The name of an extractor that extracts elements from an array of primitive bytes (byte[]
).static String
ARRAY_CHAR
The name of an extractor that extracts elements from an array of primitive chars (char[]
).static String
ARRAY_DOUBLE
The name of an extractor that extracts elements from an array of primitive double (double[]
).static String
ARRAY_FLOAT
The name of an extractor that extracts elements from an array of primitive floats (float[]
).static String
ARRAY_INT
The name of an extractor that extracts elements from an array of primitive integers (int[]
).static String
ARRAY_LONG
The name of an extractor that extracts elements from an array of primitive longs (long[]
).static String
ARRAY_OBJECT
The name of an extractor that extracts elements from an array of objects (Object[]
,Integer[]
, ...).static String
ARRAY_SHORT
The name of an extractor that extracts elements from an array of primitive shorts (short[]
).static String
COLLECTION
The name of an extractor that extracts elements from aCollection
.static String
ITERABLE
The name of an extractor that extracts elements from anIterable
.static String
MAP_KEY
The name of an extractor that extracts keys from aMap
.static String
MAP_VALUE
The name of an extractor that extracts values from aMap
.static String
OPTIONAL
The name of an extractor that extracts the value from anOptional
.static String
OPTIONAL_DOUBLE
The name of an extractor that extracts the value from anOptionalDouble
.static String
OPTIONAL_INT
The name of an extractor that extracts the value from anOptionalInt
.static String
OPTIONAL_LONG
The name of an extractor that extracts the value from anOptionalLong
.
-
-
-
Field Detail
-
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:
- Constant Field Values
-
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:
- Constant Field Values
-
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:
- Constant Field Values
-
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:
- Constant Field Values
-
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:
- Constant Field Values
-
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:
- Constant Field Values
-
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:
- Constant Field Values
-
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:
- Constant Field Values
-
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:
- 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
-
-