public interface ErrorOnUnknown
Extension point to customize the error message for unknown fields. We expect
 Elasticsearch to plug a fancy implementation that uses Lucene's spelling
 correction infrastructure to suggest corrections.
- 
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final ErrorOnUnknownThe implementation of this interface that was loaded from SPI. - 
Method Summary
Modifier and TypeMethodDescriptionerrorMessage(String parserName, String unknownField, Iterable<String> candidates) Build the error message to use whenObjectParserencounters an unknown field.intpriority()Priority that this error message handler should be used. 
- 
Field Details
- 
IMPLEMENTATION
The implementation of this interface that was loaded from SPI. 
 - 
 - 
Method Details
- 
errorMessage
Build the error message to use whenObjectParserencounters an unknown field.- Parameters:
 parserName- the name of the thing we're parsingunknownField- the field that we couldn't recognizecandidates- the possible fields
 - 
priority
int priority()Priority that this error message handler should be used. 
 -