Advertisement
Guest User

Untitled

a guest
May 25th, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1. operatorTypeMap: {
  2. INT: {
  3. GREATER_THAN_OR_EQUAL_TO: "greater than or equal to",
  4. GREATER_THAN: "greater than",
  5. EQUALS: "equals",
  6. DOES_NOT_EQUAL: "doesn't equal",
  7. LESS_THAN: "less than",
  8. LESS_THAN_OR_EQUAL_TO: "less than or equal to"
  9. },
  10. FLOAT: {
  11. GREATER_THAN_OR_EQUAL_TO: "greater than or equal to",
  12. GREATER_THAN: "greater than",
  13. EQUALS: "equals",
  14. LESS_THAN: "less than",
  15. LESS_THAN_OR_EQUAL_TO: "less than or equal to"
  16. },
  17. STRING: {
  18. CONTAINS: "matches",
  19. DOES_NOT_CONTAIN: "doesn't match"
  20. },
  21. MULTIPLE: {
  22. CONTAINS: "matches",
  23. DOES_NOT_CONTAIN: "doesn't match"
  24. },
  25. DATE: {
  26. IS_BEFORE: "is earlier than",
  27. IS_AFTER: "is later than",
  28. EQUALS: "equals",
  29. DOES_NOT_EQUAL: "doesn't equal"
  30. }
  31. },
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement