![JAR search and dependency download from the Maven repository](/logo.png)
net.intelie.live.plugins.messenger.search.document.SearchField Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of plugin-messenger Show documentation
Show all versions of plugin-messenger Show documentation
Intelie Live Messenger Plugin
The newest version!
package net.intelie.live.plugins.messenger.search.document;
public abstract class SearchField {
private final String name;
private final boolean store;
protected SearchField(String name, boolean store){
this.name = name;
this.store = store;
}
public String name() {
return name;
}
public boolean isStore() {
return store;
}
public abstract String stringValue();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy