![JAR search and dependency download from the Maven repository](/logo.png)
net.intelie.live.plugins.messenger.search.document.LongPointSearchField 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 class LongPointSearchField extends SearchField {
private final Long value;
public LongPointSearchField(String name, Long value) {
super(name, false);
this.value = value;
}
public Long getValue() {
return value;
}
@Override
public String stringValue() {
return value != null ? value.toString(): null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy