Class DoubleListValue

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

public class DoubleListValue extends FilterValue
A list of double values which is joined by AND or OR depending on andOpeDoubleListrator.
Defaults to an OR-disjunction.
Since:
10.99.999.027
See Also:
  • Field Details

    • valueList

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

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

    • DoubleListValue

      public DoubleListValue()
    • DoubleListValue

      public DoubleListValue(List<DoubleValue> valueList)
    • DoubleListValue

      public DoubleListValue(List<DoubleValue> valueList, boolean andOperator)
  • Method Details

    • getValueList

      public List<DoubleValue> getValueList()
    • isAndOperator

      public boolean isAndOperator()
    • setValueList

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

      public void setAndOperator(boolean andOperator)
    • toString

      public String toString()
      Overrides:
      toString in class FilterValue