output method

String output()

format output

Implementation

String output() {
  List<String> words = [];
  if (showOk) words.add(okString);
  if (showAction) words.add(actionString);
  if (showType) words.add(typeString);
  if (showModes) words.add(modeString);
  if (showSize) words.add(sizeString);
  if (showTime) words.add(timeString);

  words.add(pathString);
  if (showMime) words.add(mimeString);
  if (showExtra) words.add(extra);

  return words.join(delimiter);
}