1 23 24 29 30 package com.sun.jdo.spi.persistence.support.sqlstore; 31 32 33 37 public interface ActionDesc { 38 40 42 public static final int LOG_CREATE = 1; 43 44 public static final int LOG_DESTROY = 2; 45 46 public static final int LOG_UPDATE = 3; 47 48 public static final int LOG_NOOP = 4; 49 50 52 55 public static final int OP_ABS = 1; 56 57 60 public static final int OP_ADD = 2; 61 62 65 public static final int OP_AND = 3; 66 67 70 public static final int OP_APPROX = 4; 71 72 74 public static final int OP_FIELD = 5; 75 76 78 public static final int OP_BETWEEN = 6; 79 80 83 public static final int OP_DISTINCT = 7; 84 85 88 public static final int OP_DIV = 8; 89 90 93 public static final int OP_EQ = 9; 94 95 97 public static final int OP_EQ_CLASS = 41; 98 99 101 public static final int OP_EQUIJOIN = 10; 102 103 105 public static final int OP_FOR_UPDATE = 11; 106 107 109 public static final int OP_GE = 12; 110 111 113 public static final int OP_GT = 13; 114 115 117 public static final int OP_IN = 14; 118 119 122 public static final int OP_LE = 15; 123 124 126 public static final int OP_LEFTJOIN = 16; 127 128 130 public static final int OP_LENGTH = 17; 131 132 134 public static final int OP_LENGTHB = 18; 135 136 139 public static final int OP_LIKE = 19; 140 141 143 public static final int OP_LOWER = 20; 144 145 148 public static final int OP_LT = 21; 149 150 152 public static final int OP_LTRIM = 22; 153 154 156 public static final int OP_MAX_ROWS = 23; 157 158 161 public static final int OP_MUL = 24; 162 163 166 public static final int OP_NE = 25; 167 168 171 public static final int OP_NOT = 26; 172 173 176 public static final int OP_NOTNULL = 27; 177 178 181 public static final int OP_NULL = 28; 182 183 186 public static final int OP_OR = 29; 187 188 191 public static final int OP_ORDERBY = 30; 192 193 196 public static final int OP_ORDERBY_DESC = 31; 197 198 200 public static final int OP_PARAMETER_COUNT = 32; 201 202 204 public static final int OP_RIGHTJOIN = 33; 205 206 209 public static final int OP_RTRIM = 34; 210 211 213 public static final int OP_RTRIMFIXED = 43; 214 215 217 public static final int OP_SOUNDEX = 35; 218 219 222 public static final int OP_SQRT = 47; 223 224 227 public static final int OP_SUB = 36; 228 229 232 public static final int OP_SUBSTR = 37; 233 234 236 public static final int OP_SUBSTRB = 38; 237 238 240 public static final int OP_UPPER = 39; 241 242 244 public static final int OP_VALUE = 40; 245 246 248 public static final int OP_NONKEY = 42; 249 250 253 public static final int OP_CONCAT = 44; 254 255 258 public static final int OP_NOTEXISTS = 45; 259 260 263 public static final int OP_EXISTS = 46; 264 265 268 public static final int OP_LIKE_ESCAPE = 48; 269 270 273 public static final int OP_SUBSTRING = 49; 274 275 278 public static final int OP_POSITION = 50; 279 280 283 public static final int OP_POSITION_START = 51; 284 285 288 public static final int OP_NONREL_JOIN = 52; 289 290 293 public static final int OP_PARAMETER = 53; 294 295 298 public static final int OP_MAYBE_NULL = 54; 299 300 303 public static final int OP_NOTIN = 55; 304 305 308 public static final int OP_NULL_COMPARISION_FUNCTION = 56; 309 310 313 public static final int OP_MOD = 57; 314 315 318 public static final int OP_AVG = 58; 319 320 323 public static final int OP_MIN = 59; 324 325 328 public static final int OP_SUM = 60; 329 330 333 public static final int OP_MAX = 61; 334 335 338 public static final int OP_COUNT = 62; 339 340 343 public static final int OP_COUNT_PC = 63; 344 345 347 public Class getPersistenceCapableClass(); 348 349 } 350 | Popular Tags |