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 StringARRAY_BOOLEANThe name of an extractor that extracts elements from an array of primitive booleans (boolean[]).static StringARRAY_BYTEThe name of an extractor that extracts elements from an array of primitive bytes (byte[]).static StringARRAY_CHARThe name of an extractor that extracts elements from an array of primitive chars (char[]).static StringARRAY_DOUBLEThe name of an extractor that extracts elements from an array of primitive double (double[]).static StringARRAY_FLOATThe name of an extractor that extracts elements from an array of primitive floats (float[]).static StringARRAY_INTThe name of an extractor that extracts elements from an array of primitive integers (int[]).static StringARRAY_LONGThe name of an extractor that extracts elements from an array of primitive longs (long[]).static StringARRAY_OBJECTThe name of an extractor that extracts elements from an array of objects (Object[],Integer[], ...).static StringARRAY_SHORTThe name of an extractor that extracts elements from an array of primitive shorts (short[]).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_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
-
-