in modules/api/src/main/java/org/apache/fluo/api/data/Span.java [191:196]
public String toString() {
return ((startInclusive && !start.equals(RowColumn.EMPTY)) ? "[" : "(")
+ (start.equals(RowColumn.EMPTY) ? "-inf" : start) + ","
+ (end.equals(RowColumn.EMPTY) ? "+inf" : end)
+ ((endInclusive && !end.equals(RowColumn.EMPTY)) ? "]" : ")");
}