* @throws ReportException
*/
public static AggregateFunction fromName(String value) throws ReportException {
AggregateFunction func = mnemonics.get(value);
if (func == null) {
throw new ReportException("Неизвестный тип агрегатной функции: " + value);
}
return func;
}