PageRenderTime 43ms CodeModel.GetById 16ms RepoModel.GetById 0ms app.codeStats 0ms

/Atlassian.Jira/Linq/JiraOperators.cs

https://bitbucket.org/yyo/atlassian.net-sdk-v2.0
C# | 33 lines | 22 code | 8 blank | 3 comment | 0 complexity | 52c5071e74e4f5bca2e2bf2d6be29d87 MD5 | raw file
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Atlassian.Jira.Linq
  6. {
  7. /// <summary>
  8. /// Container for the supported JIRA operator strings.
  9. /// </summary>
  10. public class JiraOperators
  11. {
  12. public const string EQUALS = "=";
  13. public const string NOTEQUALS = "!=";
  14. public const string CONTAINS = "~";
  15. public const string NOTCONTAINS = "!~";
  16. public const string IS = "is";
  17. public const string ISNOT = "is not";
  18. public const string GREATERTHAN = ">";
  19. public const string LESSTHAN = "<";
  20. public const string GREATERTHANOREQUALS = ">=";
  21. public const string LESSTHANOREQUALS = "<=";
  22. public const string OR = "or";
  23. public const string AND = "and";
  24. }
  25. }