in src/main/java/org/apache/sling/reqanalyzer/impl/gui/RequestTrackerFileEntry.java [41:58]
static String getColumnName(final int idx) {
switch (idx) {
case 0:
return "Start";
case 1:
return "Duration";
case 2:
return "Method";
case 3:
return "URL";
case 4:
return "Content Type";
case 5:
return "Status";
default:
throw new IllegalArgumentException("Unknown field index " + idx);
}
}