in src/main/java/com/uber/h3core/H3Core.java [976:981]
public double getHexagonEdgeLengthAvg(int res, LengthUnit unit) {
checkResolution(res);
if (unit == LengthUnit.km) return h3Api.getHexagonEdgeLengthAvgKm(res);
else if (unit == LengthUnit.m) return h3Api.getHexagonEdgeLengthAvgM(res);
else throw new IllegalArgumentException(String.format("Invalid unit: %s", unit));
}