in src/main/java/com/uber/h3core/H3Core.java [906:911]
public double cellArea(long h3, AreaUnit unit) {
if (unit == AreaUnit.rads2) return h3Api.cellAreaRads2(h3);
else if (unit == AreaUnit.km2) return h3Api.cellAreaKm2(h3);
else if (unit == AreaUnit.m2) return h3Api.cellAreaM2(h3);
else throw new IllegalArgumentException(String.format("Invalid unit: %s", unit));
}