![JAR search and dependency download from the Maven repository](/logo.png)
org.snapscript.core.Path Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of snap-all Show documentation
Show all versions of snap-all Show documentation
Dynamic scripting for the JVM
package org.snapscript.core;
public class Path {
private final String path;
public Path(String path){
this.path = path;
}
public String getPath(){
return path;
}
@Override
public boolean equals(Object other) {
if(other instanceof Path) {
return equals((Path)other);
}
return false;
}
public boolean equals(Path other) {
if(other != null) {
return other.path.equals(path);
}
return false;
}
@Override
public int hashCode() {
return path.hashCode();
}
@Override
public String toString(){
return path;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy