Class StringListValue

java.lang.Object
de.elo.ix.client.esearch.query.data.FilterValue
de.elo.ix.client.esearch.query.data.StringListValue
All Implemented Interfaces:
Serializable

public class StringListValue extends FilterValue
A list of strings which is joined by AND or OR depending on andOperator.
Defaults to an OR-disjunction.
Since:
10.99.999.024
See Also:
  • Field Details

    • valueList

      protected List<StringValue> valueList
      A list of strings which is joined by AND or OR depending on andOperator.
    • andOperator

      protected boolean andOperator
      Connective of list elements (default is OR (=false) ).
  • Constructor Details

    • StringListValue

      public StringListValue()
    • StringListValue

      public StringListValue(List<StringValue> valueList)
    • StringListValue

      public StringListValue(List<StringValue> valueList, boolean andOperator)
  • Method Details

    • getValueList

      public List<StringValue> getValueList()
    • isAndOperator

      public boolean isAndOperator()
    • setValueList

      public void setValueList(List<StringValue> valueList)
    • setAndOperator

      public void setAndOperator(boolean andOperator)
    • toString

      public String toString()
      Overrides:
      toString in class FilterValue