
com.itranswarp.search.Phrase 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 Phrase extends Span {
public Phrase(String text) {
super(text);
}
@Override
public boolean equals(Object o) {
if (o instanceof Phrase) {
Phrase p = (Phrase) o;
return this.text.equals(p.text);
}
return false;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy