toMap property

Map<RolloutStrategyAttributeConditional, String> toMap
getter/setter pair

Implementation

static Map<RolloutStrategyAttributeConditional, String> toMap = {
  RolloutStrategyAttributeConditional.EQUALS: 'EQUALS',
  RolloutStrategyAttributeConditional.ENDS_WITH: 'ENDS_WITH',
  RolloutStrategyAttributeConditional.STARTS_WITH: 'STARTS_WITH',
  RolloutStrategyAttributeConditional.GREATER: 'GREATER',
  RolloutStrategyAttributeConditional.GREATER_EQUALS: 'GREATER_EQUALS',
  RolloutStrategyAttributeConditional.LESS: 'LESS',
  RolloutStrategyAttributeConditional.LESS_EQUALS: 'LESS_EQUALS',
  RolloutStrategyAttributeConditional.NOT_EQUALS: 'NOT_EQUALS',
  RolloutStrategyAttributeConditional.INCLUDES: 'INCLUDES',
  RolloutStrategyAttributeConditional.EXCLUDES: 'EXCLUDES',
  RolloutStrategyAttributeConditional.REGEX: 'REGEX'
};