Interface IndexMappingVariableExtractor
- All Known Implementing Classes:
BaseIndexMappingVariableExtractor
public interface IndexMappingVariableExtractor
- Author:
- Filip Hrisafov
-
Method Summary
Modifier and TypeMethodDescriptiontools.jackson.databind.node.ObjectNodegetPath()getTo()The expression that transforms the resolved path value whenisTransform()istrue.getType()booleanWhether the value resolved fromgetPath()is transformed before it is indexed.
-
Method Details
-
getPath
String getPath() -
getTo
String getTo() -
getType
String getType() -
getFilter
tools.jackson.databind.node.ObjectNode getFilter() -
getModelKey
String getModelKey() -
isTransform
boolean isTransform()Whether the value resolved fromgetPath()is transformed before it is indexed. Whentrue,getTransformExpression()is evaluated with the resolved value bound asvalueand the result is indexed undergetTo(). Whenfalse, the resolved value is indexed as-is. -
getTransformExpression
String getTransformExpression()The expression that transforms the resolved path value whenisTransform()istrue.
-