Class RangeCondition

java.lang.Object
com.gooddata.sdk.model.executeafm.afm.filter.MeasureValueFilterCondition
com.gooddata.sdk.model.executeafm.afm.filter.RangeCondition
All Implemented Interfaces:
java.io.Serializable

public class RangeCondition
extends MeasureValueFilterCondition
implements java.io.Serializable
Condition of MeasureValueFilter that compares measure values against two values.
See Also:
Serialized Form
  • Constructor Details

    • RangeCondition

      public RangeCondition​(java.lang.String operator, java.math.BigDecimal from, java.math.BigDecimal to, java.math.BigDecimal treatNullValuesAs)
    • RangeCondition

      public RangeCondition​(RangeConditionOperator operator, java.math.BigDecimal from, java.math.BigDecimal to)
      Creates a new RangeCondition instance.
      Parameters:
      operator - The operator of the range condition.
      from - The left boundary value.
      to - The right boundary value.
    • RangeCondition

      public RangeCondition​(RangeConditionOperator operator, java.math.BigDecimal from, java.math.BigDecimal to, java.math.BigDecimal treatNullValuesAs)
      Creates a new RangeCondition instance.
      Parameters:
      operator - The operator of the range condition.
      from - The left boundary value.
      to - The right boundary value.
      treatNullValuesAs - The number that will be used instead of compared values that are null.
  • Method Details