ホーム › System.Search › DBCOMPAREOPSENUM
DBCOMPAREOPSENUM
列挙型メンバー 11
| 名前 | 10進 | 16進 |
|---|---|---|
| DBCOMPAREOPS_LT | 0 | 0x0 |
| DBCOMPAREOPS_LE | 1 | 0x1 |
| DBCOMPAREOPS_EQ | 2 | 0x2 |
| DBCOMPAREOPS_GE | 3 | 0x3 |
| DBCOMPAREOPS_GT | 4 | 0x4 |
| DBCOMPAREOPS_BEGINSWITH | 5 | 0x5 |
| DBCOMPAREOPS_CONTAINS | 6 | 0x6 |
| DBCOMPAREOPS_NE | 7 | 0x7 |
| DBCOMPAREOPS_IGNORE | 8 | 0x8 |
| DBCOMPAREOPS_CASESENSITIVE | 4096 | 0x1000 |
| DBCOMPAREOPS_CASEINSENSITIVE | 8192 | 0x2000 |
各言語での定義
列挙メンバーの定義。HSP タブは #define global(値は16進)。
typedef enum DBCOMPAREOPSENUM : int {
DBCOMPAREOPS_LT = 0,
DBCOMPAREOPS_LE = 1,
DBCOMPAREOPS_EQ = 2,
DBCOMPAREOPS_GE = 3,
DBCOMPAREOPS_GT = 4,
DBCOMPAREOPS_BEGINSWITH = 5,
DBCOMPAREOPS_CONTAINS = 6,
DBCOMPAREOPS_NE = 7,
DBCOMPAREOPS_IGNORE = 8,
DBCOMPAREOPS_CASESENSITIVE = 4096,
DBCOMPAREOPS_CASEINSENSITIVE = 8192
} DBCOMPAREOPSENUM;public enum DBCOMPAREOPSENUM : int
{
DBCOMPAREOPS_LT = 0,
DBCOMPAREOPS_LE = 1,
DBCOMPAREOPS_EQ = 2,
DBCOMPAREOPS_GE = 3,
DBCOMPAREOPS_GT = 4,
DBCOMPAREOPS_BEGINSWITH = 5,
DBCOMPAREOPS_CONTAINS = 6,
DBCOMPAREOPS_NE = 7,
DBCOMPAREOPS_IGNORE = 8,
DBCOMPAREOPS_CASESENSITIVE = 4096,
DBCOMPAREOPS_CASEINSENSITIVE = 8192,
}Public Enum DBCOMPAREOPSENUM As Integer
DBCOMPAREOPS_LT = 0
DBCOMPAREOPS_LE = 1
DBCOMPAREOPS_EQ = 2
DBCOMPAREOPS_GE = 3
DBCOMPAREOPS_GT = 4
DBCOMPAREOPS_BEGINSWITH = 5
DBCOMPAREOPS_CONTAINS = 6
DBCOMPAREOPS_NE = 7
DBCOMPAREOPS_IGNORE = 8
DBCOMPAREOPS_CASESENSITIVE = 4096
DBCOMPAREOPS_CASEINSENSITIVE = 8192
End Enumimport enum
class DBCOMPAREOPSENUM(enum.IntEnum):
DBCOMPAREOPS_LT = 0
DBCOMPAREOPS_LE = 1
DBCOMPAREOPS_EQ = 2
DBCOMPAREOPS_GE = 3
DBCOMPAREOPS_GT = 4
DBCOMPAREOPS_BEGINSWITH = 5
DBCOMPAREOPS_CONTAINS = 6
DBCOMPAREOPS_NE = 7
DBCOMPAREOPS_IGNORE = 8
DBCOMPAREOPS_CASESENSITIVE = 4096
DBCOMPAREOPS_CASEINSENSITIVE = 8192// DBCOMPAREOPSENUM
pub const DBCOMPAREOPS_LT: i32 = 0;
pub const DBCOMPAREOPS_LE: i32 = 1;
pub const DBCOMPAREOPS_EQ: i32 = 2;
pub const DBCOMPAREOPS_GE: i32 = 3;
pub const DBCOMPAREOPS_GT: i32 = 4;
pub const DBCOMPAREOPS_BEGINSWITH: i32 = 5;
pub const DBCOMPAREOPS_CONTAINS: i32 = 6;
pub const DBCOMPAREOPS_NE: i32 = 7;
pub const DBCOMPAREOPS_IGNORE: i32 = 8;
pub const DBCOMPAREOPS_CASESENSITIVE: i32 = 4096;
pub const DBCOMPAREOPS_CASEINSENSITIVE: i32 = 8192;// DBCOMPAREOPSENUM
const (
DBCOMPAREOPS_LT int32 = 0
DBCOMPAREOPS_LE int32 = 1
DBCOMPAREOPS_EQ int32 = 2
DBCOMPAREOPS_GE int32 = 3
DBCOMPAREOPS_GT int32 = 4
DBCOMPAREOPS_BEGINSWITH int32 = 5
DBCOMPAREOPS_CONTAINS int32 = 6
DBCOMPAREOPS_NE int32 = 7
DBCOMPAREOPS_IGNORE int32 = 8
DBCOMPAREOPS_CASESENSITIVE int32 = 4096
DBCOMPAREOPS_CASEINSENSITIVE int32 = 8192
)const
DBCOMPAREOPS_LT = 0;
DBCOMPAREOPS_LE = 1;
DBCOMPAREOPS_EQ = 2;
DBCOMPAREOPS_GE = 3;
DBCOMPAREOPS_GT = 4;
DBCOMPAREOPS_BEGINSWITH = 5;
DBCOMPAREOPS_CONTAINS = 6;
DBCOMPAREOPS_NE = 7;
DBCOMPAREOPS_IGNORE = 8;
DBCOMPAREOPS_CASESENSITIVE = 4096;
DBCOMPAREOPS_CASEINSENSITIVE = 8192;// DBCOMPAREOPSENUM
pub const DBCOMPAREOPS_LT: i32 = 0;
pub const DBCOMPAREOPS_LE: i32 = 1;
pub const DBCOMPAREOPS_EQ: i32 = 2;
pub const DBCOMPAREOPS_GE: i32 = 3;
pub const DBCOMPAREOPS_GT: i32 = 4;
pub const DBCOMPAREOPS_BEGINSWITH: i32 = 5;
pub const DBCOMPAREOPS_CONTAINS: i32 = 6;
pub const DBCOMPAREOPS_NE: i32 = 7;
pub const DBCOMPAREOPS_IGNORE: i32 = 8;
pub const DBCOMPAREOPS_CASESENSITIVE: i32 = 4096;
pub const DBCOMPAREOPS_CASEINSENSITIVE: i32 = 8192;const
DBCOMPAREOPS_LT* = 0
DBCOMPAREOPS_LE* = 1
DBCOMPAREOPS_EQ* = 2
DBCOMPAREOPS_GE* = 3
DBCOMPAREOPS_GT* = 4
DBCOMPAREOPS_BEGINSWITH* = 5
DBCOMPAREOPS_CONTAINS* = 6
DBCOMPAREOPS_NE* = 7
DBCOMPAREOPS_IGNORE* = 8
DBCOMPAREOPS_CASESENSITIVE* = 4096
DBCOMPAREOPS_CASEINSENSITIVE* = 8192enum DBCOMPAREOPSENUM : int {
DBCOMPAREOPS_LT = 0,
DBCOMPAREOPS_LE = 1,
DBCOMPAREOPS_EQ = 2,
DBCOMPAREOPS_GE = 3,
DBCOMPAREOPS_GT = 4,
DBCOMPAREOPS_BEGINSWITH = 5,
DBCOMPAREOPS_CONTAINS = 6,
DBCOMPAREOPS_NE = 7,
DBCOMPAREOPS_IGNORE = 8,
DBCOMPAREOPS_CASESENSITIVE = 4096,
DBCOMPAREOPS_CASEINSENSITIVE = 8192,
}#define global DBCOMPAREOPS_LT 0x0
#define global DBCOMPAREOPS_LE 0x1
#define global DBCOMPAREOPS_EQ 0x2
#define global DBCOMPAREOPS_GE 0x3
#define global DBCOMPAREOPS_GT 0x4
#define global DBCOMPAREOPS_BEGINSWITH 0x5
#define global DBCOMPAREOPS_CONTAINS 0x6
#define global DBCOMPAREOPS_NE 0x7
#define global DBCOMPAREOPS_IGNORE 0x8
#define global DBCOMPAREOPS_CASESENSITIVE 0x1000
#define global DBCOMPAREOPS_CASEINSENSITIVE 0x2000