
com.itranswarp.search.Word Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of es-wrapper Show documentation
Show all versions of es-wrapper Show documentation
A simple ES wrapper for Java
The newest version!
package com.itranswarp.search;
class Word extends Span {
public Word(String text) {
super(text);
}
@Override
public boolean equals(Object o){
if (o instanceof Word) {
Word w = (Word) o;
return this.text.equals(w.text);
}
return false;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy