All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.arextest.diff.compare.feature.IndexSelector Maven / Gradle / Ivy

There is a newer version: 0.2.15
Show newest version
package com.arextest.diff.compare.feature;

import com.arextest.diff.model.exception.FindErrorException;
import com.fasterxml.jackson.databind.node.ArrayNode;
import java.util.List;

public interface IndexSelector {

  int findCorrespondLeftIndex(int curRightIndex, List leftComparedIndex,
      ArrayNode obj1Array, ArrayNode obj2Array) throws FindErrorException, Exception;

  int findCorrespondRightIndex(int curLeftIndex, List rightComparedIndex,
      ArrayNode obj1Array, ArrayNode obj2Array) throws Exception;

  String judgeLeftIndexStandard(int leftIndex);

  String judgeRightIndexStandard(int rightIndex);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy