analysis/heap-dump/api/src/main/java/org/eclipse/jifa/hda/api/Model.java [124:141]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                return ascendingOrder ? sortTable.get(field) : sortTable.get(field).reversed();
            }

            @Override
            public Object getBySearchType(SearchType type) {
                switch (type) {
                    case BY_NAME:
                        return getLabel();
                    case BY_PERCENT:
                        return getPercent();
                    case BY_OBJ_NUM:
                        return getObjects();
                    case BY_RETAINED_SIZE:
                        return getRetainedSize();
                    case BY_SHALLOW_SIZE:
                        return getShallowSize();
                    default:
                        throw new ShouldNotReachHereException();
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



analysis/heap-dump/api/src/main/java/org/eclipse/jifa/hda/api/Model.java [193:210]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                return ascendingOrder ? sortTable.get(field) : sortTable.get(field).reversed();
            }

            @Override
            public Object getBySearchType(SearchType type) {
                switch (type) {
                    case BY_NAME:
                        return getLabel();
                    case BY_PERCENT:
                        return getPercent();
                    case BY_OBJ_NUM:
                        return getObjects();
                    case BY_RETAINED_SIZE:
                        return getRetainedSize();
                    case BY_SHALLOW_SIZE:
                        return getShallowSize();
                    default:
                        throw new ShouldNotReachHereException();
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



