in src/main/java/com/uber/h3core/H3Core.java [951:956]
public double edgeLength(long edge, LengthUnit unit) {
if (unit == LengthUnit.rads) return h3Api.edgeLengthRads(edge);
else if (unit == LengthUnit.km) return h3Api.edgeLengthKm(edge);
else if (unit == LengthUnit.m) return h3Api.edgeLengthM(edge);
else throw new IllegalArgumentException(String.format("Invalid unit: %s", unit));
}