Autopsy 4.22.1
Graphical digital forensics platform for The Sleuth Kit and other tools.
TreeComparator.java
Go to the documentation of this file.
1/*
2 * Autopsy Forensic Browser
3 *
4 * Copyright 2014-2018 Basis Technology Corp.
5 * Contact: carrier <at> sleuthkit <dot> org
6 *
7 * Licensed under the Apache License, Version 2.0 (the "License");
8 * you may not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
10 *
11 * http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS,
15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
18 */
19package org.sleuthkit.autopsy.timeline.ui.detailview.tree;
20
21import java.util.Comparator;
22import javafx.scene.control.TreeItem;
23import org.openide.util.NbBundle;
24import org.sleuthkit.autopsy.timeline.ui.detailview.datamodel.DetailViewEvent;
25
29@NbBundle.Messages({"TreeComparator.Description.displayName=Description",
30 "TreeComparator.Count.displayName=Count",
31 "TreeComparator.Type.displayName=Type"})
32enum TreeComparator implements Comparator<TreeItem<DetailViewEvent>> {
33
34 Description(Bundle.TreeComparator_Description_displayName()) {
35 @Override
36 public int compare(TreeItem<DetailViewEvent> item1, TreeItem<DetailViewEvent> item2) {
37 return item1.getValue().getDescription().compareTo(item2.getValue().getDescription());
38 }
39 },
40 Count(Bundle.TreeComparator_Count_displayName()) {
41 @Override
42 public int compare(TreeItem<DetailViewEvent> item1, TreeItem<DetailViewEvent> item2) {
43 return Long.compare(item2.getValue().getSize(), item1.getValue().getSize());
44 }
45 },
46 Type(Bundle.TreeComparator_Type_displayName()) {
47 @Override
48 public int compare(TreeItem<DetailViewEvent> item1, TreeItem<DetailViewEvent> item2) {
49 return item1.getValue().getEventType().compareTo(item2.getValue().getEventType());
50 }
51 };
52
53 private final String displayName;
54
55 private TreeComparator(String displayName) {
56 this.displayName = displayName;
57 }
58
59 public String getDisplayName() {
60 return displayName;
61 }
62}

Copyright © 2012-2024 Sleuth Kit Labs. Generated on:
This work is licensed under a Creative Commons Attribution-Share Alike 3.0 United States License.