Go to the documentation of this file.
19package org.sleuthkit.autopsy.timeline.ui.listvew.datamodel;
21import java.util.Collections;
22import java.util.HashMap;
23import java.util.HashSet;
25import java.util.Objects;
27import org.sleuthkit.datamodel.TimelineEventType;
41 private final Map<TimelineEventType, Long>
eventTypeMap =
new HashMap<>();
80 return Collections.unmodifiableSet(
new HashSet<>(
eventTypeMap.values()));
97 hash = 53 * hash + (int) (this.epochMillis ^ (this.epochMillis >>> 32));
98 hash = 53 * hash + Objects.hashCode(this.eventTypeMap);
110 if (getClass() != obj.getClass()) {
119 return Objects.equals(this.eventTypeMap, other.
eventTypeMap);
Set< Long > getEventIDs()
Set< TimelineEventType > getEventTypes()
final Map< TimelineEventType, Long > eventTypeMap
Long getRepresentativeEventID()
boolean equals(Object obj)
CombinedEvent(long epochMillis, Map< TimelineEventType, Long > eventMap)
Copyright © 2012-2024 Sleuth Kit Labs. Generated on:
This work is licensed under a
Creative Commons Attribution-Share Alike 3.0 United States License.