io.github.albertus82.util.Resource Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jface-utils Show documentation
Show all versions of jface-utils Show documentation
Java SWT/JFace Utility Library including a Preferences Framework, Lightweight HTTP Server and macOS support.
package io.github.albertus82.util;
public class Resource {
private final String name;
private final long size;
private final long time;
public Resource(final String name, final long size, final long time) {
this.name = name;
this.size = size;
this.time = time;
}
public String getName() {
return name;
}
public long getSize() {
return size;
}
public long getTime() {
return time;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((name == null) ? 0 : name.hashCode());
result = prime * result + (int) (size ^ (size >>> 32));
result = prime * result + (int) (time ^ (time >>> 32));
return result;
}
@Override
public boolean equals(final Object obj) {
if (this == obj) {
return true;
}
if (obj == null) {
return false;
}
if (!(obj instanceof Resource)) {
return false;
}
Resource other = (Resource) obj;
if (name == null) {
if (other.name != null) {
return false;
}
}
else if (!name.equals(other.name)) {
return false;
}
if (size != other.size) {
return false;
}
if (time != other.time) {
return false;
}
return true;
}
@Override
public String toString() {
return name;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy