Class MetadataMapperTestCase.ParameterChecker

java.lang.Object
org.elasticsearch.index.mapper.MetadataMapperTestCase.ParameterChecker
Enclosing class:
MetadataMapperTestCase

public class MetadataMapperTestCase.ParameterChecker extends Object
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    registerConflictCheck(String param, org.elasticsearch.core.CheckedConsumer<org.elasticsearch.xcontent.XContentBuilder,IOException> update)
    Register a check that a parameter update will cause a conflict, using the minimal mapping as a base
    void
    registerConflictCheck(String param, org.elasticsearch.xcontent.XContentBuilder init, org.elasticsearch.xcontent.XContentBuilder update)
    Register a check that a parameter update will cause a conflict
    void
    registerUpdateCheck(org.elasticsearch.xcontent.XContentBuilder init, org.elasticsearch.xcontent.XContentBuilder update, Consumer<org.elasticsearch.index.mapper.DocumentMapper> check)
     

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • ParameterChecker

      public ParameterChecker()
  • Method Details

    • registerConflictCheck

      public void registerConflictCheck(String param, org.elasticsearch.core.CheckedConsumer<org.elasticsearch.xcontent.XContentBuilder,IOException> update) throws IOException
      Register a check that a parameter update will cause a conflict, using the minimal mapping as a base
      Parameters:
      param - the parameter name, expected to appear in the error message
      update - a field builder applied on top of the minimal mapping
      Throws:
      IOException
    • registerConflictCheck

      public void registerConflictCheck(String param, org.elasticsearch.xcontent.XContentBuilder init, org.elasticsearch.xcontent.XContentBuilder update)
      Register a check that a parameter update will cause a conflict
      Parameters:
      param - the parameter name, expected to appear in the error message
      init - the initial mapping
      update - the updated mapping
    • registerUpdateCheck

      public void registerUpdateCheck(org.elasticsearch.xcontent.XContentBuilder init, org.elasticsearch.xcontent.XContentBuilder update, Consumer<org.elasticsearch.index.mapper.DocumentMapper> check)