
sd_example.Ch Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of stringdistance_2.12 Show documentation
Show all versions of stringdistance_2.12 Show documentation
A fuzzy matching string distance library for Scala and Java.
The newest version!
package sd_example;
public class Ch {
private char ch;
private Ch(char ch) {
this.ch = ch;
}
static Ch of(char ch) {
return new Ch(ch);
}
@Override
public boolean equals(Object o) {
if (o == this) {
return true;
}
if (!(o instanceof Ch)) {
return false;
}
Ch c = (Ch) o;
return ch == c.ch;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy