Go to the documentation of this file.
19package org.sleuthkit.autopsy.centralrepository.datamodel;
21import java.util.Objects;
28 private final long id;
51 return this.loginName;
57 hash = 37 * hash + (int) (this.
id ^ (this.
id >>> 32));
58 hash = 37 * hash + Objects.hashCode(this.loginName);
70 if (getClass() != obj.getClass()) {
74 if (this.
id != other.
getId()) {
77 return this.loginName.equalsIgnoreCase(other.
getLoginName());
CentralRepoExaminer(long id, String loginName)
boolean equals(Object obj)
Copyright © 2012-2024 Sleuth Kit Labs. Generated on:
This work is licensed under a
Creative Commons Attribution-Share Alike 3.0 United States License.