Interface PricingTierCondition.OperatorStage

All Known Implementing Classes:
PricingTierCondition.Builder
Enclosing class:
PricingTierCondition

public static interface PricingTierCondition.OperatorStage
  • Method Details

    • operator

      Comparison operator to apply between the summed value and the threshold.

      • gt: greater than (sum > threshold)
      • gte: greater than or equal (sum >= threshold)
      • lt: less than (sum < threshold)
      • lte: less than or equal (sum <= threshold)
      • eq: equal (sum == threshold)
      • neq: not equal (sum != threshold)