analysis/heap-dump/api/src/main/java/org/eclipse/jifa/hda/api/Model.java [88:111]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                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();
                }
            }
        }

        @Data
        @EqualsAndHashCode(callSuper = true)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



analysis/heap-dump/api/src/main/java/org/eclipse/jifa/hda/api/Model.java [124:147]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                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();
                }
            }
        }

        @Data
        @EqualsAndHashCode(callSuper = true)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



