All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.intelie.live.plugins.messenger.search.document.LongPointSearchField Maven / Gradle / Ivy

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