-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathConstants.cs
More file actions
31 lines (28 loc) · 1.17 KB
/
Constants.cs
File metadata and controls
31 lines (28 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
using System;
using System.Collections.Generic;
using System.Text;
namespace FlagsmithEngine.Segment
{
public static class Constants
{
public const double StrongestPriority = float.NegativeInfinity;
public const double WeakestPriority = float.PositiveInfinity;
public const string AllRule = "ALL";
public const string AnyRule = "ANY";
public const string NoneRule = "NONE";
public const string Equal = "EQUAL";
public const string GreaterThan = "GREATER_THAN";
public const string LessThan = "LESS_THAN";
public const string LessThanInclusive = "LESS_THAN_INCLUSIVE";
public const string Contains = "CONTAINS";
public const string GreaterThanInclusive = "GREATER_THAN_INCLUSIVE";
public const string NotContains = "NOT_CONTAINS";
public const string NotEqual = "NOT_EQUAL";
public const string Regex = "REGEX";
public const string PercentageSplit = "PERCENTAGE_SPLIT";
public const string IsSet = "IS_SET";
public const string IsNotSet = "IS_NOT_SET";
public const string Modulo = "MODULO";
public const string In = "IN";
}
}