-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathComparisonOperator.cs
81 lines (81 loc) · 1.83 KB
/
ComparisonOperator.cs
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
/*
* Copyright © 2010 Intuit Inc. All rights reserved.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.opensource.org/licenses/eclipse-1.0.php
*/
namespace Intuit.QuickBase.Client
{
public enum ComparisonOperator
{
///<summary>
/// Contains
///</summary>
CT,
///<summary>
/// Does not contain
///</summary>
XCT,
///<summary>
/// Is
///</summary>
EX,
///<summary>
/// True Value
///</summary>
TV,
///<summary>
/// Is not
///</summary>
XEX,
///<summary>
/// Starts with
///</summary>
SW,
///<summary>
/// Does not start with
///</summary>
XSW,
///<summary>
/// Is before
///</summary>
BF,
///<summary>
/// Is on or before
///</summary>
OBF,
///<summary>
/// Is after
///</summary>
AF,
///<summary>
/// Is on or after
///</summary>
OAF,
///<summary>
/// Is less than
///</summary>
LT,
///<summary>
/// Is less than or equal to
///</summary>
LTE,
///<summary>
/// Is greater than
///</summary>
GT,
///<summary>
/// Is greater than or equal to
///</summary>
GTE,
/// <summary>
/// Is in range
/// </summary>
IR,
/// <summary>
/// Is not in range
/// </summary>
XIR
}
}