protected ScoreBoardCondition getFormatSpecifierScoreBoardCondition(String formatSpecifier)
     throws IllegalArgumentException {
   ScoreBoardValue value = scoreBoardValues.get(formatSpecifier);
   if (null == value)
     throw new IllegalArgumentException("Not a valid format specifier : " + formatSpecifier);
   return value.getScoreBoardCondition();
 }
 protected String getFormatSpecifierValue(String formatSpecifier) {
   ScoreBoardValue value = scoreBoardValues.get(formatSpecifier);
   if (null == value) return formatSpecifier;
   return value.getValue();
 }