Interface SearchInputField

  • All Known Implementing Classes:
    BaseSearchInputField

    public interface SearchInputField
    A named field with a name and one or more values. This can be added to a SearchInputDocument and inserted into the search index.
    • Method Detail

      • addValues

        void addValues​(Object... values)
        Add values to this field.
      • addValues

        void addValues​(Collection<? extends Object> values)
        Add values to this field.
      • setBoost

        void setBoost​(float boost)
        Set the boost level for this field.
      • getBoost

        float getBoost()
      • getValues

        Collection<Object> getValues()
        May return an empty collection, but never null.
      • getFirstValue

        Object getFirstValue()
        May return null.