Используйте
Map
в связке с
Pair :
import javafx.util.Pair;
import java.io.IOException;
import java.util.HashMap;
import java.util.Map;
public class Main {
public static void main(String[] args) throws IOException {
Pair<Integer, Integer> position = new Pair<Integer, Integer>(-1, 3);
Map<Pair<Integer, Integer>, Integer> myMatrix = buildMatrix();
myMatrix.put(position, 9);
outputValue(myMatrix, position);
}
private static Map<Pair<Integer, Integer>, Integer> buildMatrix() {
return new HashMap<>();
}
private static void outputValue(Map<Pair<Integer, Integer>, Integer> map, Pair<Integer, Integer> key) {
System.out.println(map.get(key));
}
}