Description
private method TableView.parseSort(String json) has this line:
Dictionary.Pair<String, SortDirection> pair =
new Dictionary.Pair<String, SortDirection>((String)map.get(COLUMN_NAME_KEY),
SortDirection.valueOf(((String)map.get(SORT_DIRECTION_KEY)).toLowerCase()));
The enum value for SortDirection cannot be found. Must be changed to toUpperCase().