1 package org.opencrx.kernel.address1.cci; 14 15 17 public interface PostalAddressableFilter 18 extends 19 org.opencrx.kernel.generic.cci.PicturedFilter { 20 21 28 public void forAllPostalAddressLine ( 29 short operator, 30 String [] filterValues 31 ); 32 33 37 public void thereExistsPostalAddressLine ( 38 short operator, 39 String [] filterValues 40 ); 41 42 46 public void forAllPostalAddressLine ( 47 short operator, 48 java.util.Collection filterValues 49 ); 50 51 55 public void thereExistsPostalAddressLine ( 56 short operator, 57 java.util.Collection filterValues 58 ); 59 60 65 public void orderByPostalAddressLine ( 66 short order 67 ); 68 69 76 public void forAllPostalCity ( 77 short operator, 78 String [] filterValues 79 ); 80 81 85 public void thereExistsPostalCity ( 86 short operator, 87 String [] filterValues 88 ); 89 90 94 public void forAllPostalCity ( 95 short operator, 96 java.util.Collection filterValues 97 ); 98 99 103 public void thereExistsPostalCity ( 104 short operator, 105 java.util.Collection filterValues 106 ); 107 108 113 public void orderByPostalCity ( 114 short order 115 ); 116 117 124 public void forAllPostalCode ( 125 short operator, 126 String [] filterValues 127 ); 128 129 133 public void thereExistsPostalCode ( 134 short operator, 135 String [] filterValues 136 ); 137 138 142 public void forAllPostalCode ( 143 short operator, 144 java.util.Collection filterValues 145 ); 146 147 151 public void thereExistsPostalCode ( 152 short operator, 153 java.util.Collection filterValues 154 ); 155 156 161 public void orderByPostalCode ( 162 short order 163 ); 164 165 172 public void forAllPostalCountry ( 173 short operator, 174 short[] filterValues 175 ); 176 177 181 public void thereExistsPostalCountry ( 182 short operator, 183 short[] filterValues 184 ); 185 186 190 public void forAllPostalCountry ( 191 short operator, 192 java.util.Collection filterValues 193 ); 194 195 199 public void thereExistsPostalCountry ( 200 short operator, 201 java.util.Collection filterValues 202 ); 203 204 209 public void orderByPostalCountry ( 210 short order 211 ); 212 213 220 public void forAllPostalCounty ( 221 short operator, 222 String [] filterValues 223 ); 224 225 229 public void thereExistsPostalCounty ( 230 short operator, 231 String [] filterValues 232 ); 233 234 238 public void forAllPostalCounty ( 239 short operator, 240 java.util.Collection filterValues 241 ); 242 243 247 public void thereExistsPostalCounty ( 248 short operator, 249 java.util.Collection filterValues 250 ); 251 252 257 public void orderByPostalCounty ( 258 short order 259 ); 260 261 268 public void forAllPostalFreightTerms ( 269 short operator, 270 short[] filterValues 271 ); 272 273 277 public void thereExistsPostalFreightTerms ( 278 short operator, 279 short[] filterValues 280 ); 281 282 286 public void forAllPostalFreightTerms ( 287 short operator, 288 java.util.Collection filterValues 289 ); 290 291 295 public void thereExistsPostalFreightTerms ( 296 short operator, 297 java.util.Collection filterValues 298 ); 299 300 305 public void orderByPostalFreightTerms ( 306 short order 307 ); 308 309 316 public void forAllPostalLatitude ( 317 short operator, 318 java.math.BigDecimal [] filterValues 319 ); 320 321 325 public void thereExistsPostalLatitude ( 326 short operator, 327 java.math.BigDecimal [] filterValues 328 ); 329 330 334 public void forAllPostalLatitude ( 335 short operator, 336 java.util.Collection filterValues 337 ); 338 339 343 public void thereExistsPostalLatitude ( 344 short operator, 345 java.util.Collection filterValues 346 ); 347 348 353 public void orderByPostalLatitude ( 354 short order 355 ); 356 357 364 public void forAllPostalLongitude ( 365 short operator, 366 java.math.BigDecimal [] filterValues 367 ); 368 369 373 public void thereExistsPostalLongitude ( 374 short operator, 375 java.math.BigDecimal [] filterValues 376 ); 377 378 382 public void forAllPostalLongitude ( 383 short operator, 384 java.util.Collection filterValues 385 ); 386 387 391 public void thereExistsPostalLongitude ( 392 short operator, 393 java.util.Collection filterValues 394 ); 395 396 401 public void orderByPostalLongitude ( 402 short order 403 ); 404 405 412 public void forAllPostalState ( 413 short operator, 414 String [] filterValues 415 ); 416 417 421 public void thereExistsPostalState ( 422 short operator, 423 String [] filterValues 424 ); 425 426 430 public void forAllPostalState ( 431 short operator, 432 java.util.Collection filterValues 433 ); 434 435 439 public void thereExistsPostalState ( 440 short operator, 441 java.util.Collection filterValues 442 ); 443 444 449 public void orderByPostalState ( 450 short order 451 ); 452 453 460 public void forAllPostalStreet ( 461 short operator, 462 String [] filterValues 463 ); 464 465 469 public void thereExistsPostalStreet ( 470 short operator, 471 String [] filterValues 472 ); 473 474 478 public void forAllPostalStreet ( 479 short operator, 480 java.util.Collection filterValues 481 ); 482 483 487 public void thereExistsPostalStreet ( 488 short operator, 489 java.util.Collection filterValues 490 ); 491 492 497 public void orderByPostalStreet ( 498 short order 499 ); 500 501 508 public void forAllPostalUtcOffset ( 509 short operator, 510 short[] filterValues 511 ); 512 513 517 public void thereExistsPostalUtcOffset ( 518 short operator, 519 short[] filterValues 520 ); 521 522 526 public void forAllPostalUtcOffset ( 527 short operator, 528 java.util.Collection filterValues 529 ); 530 531 535 public void thereExistsPostalUtcOffset ( 536 short operator, 537 java.util.Collection filterValues 538 ); 539 540 545 public void orderByPostalUtcOffset ( 546 short order 547 ); 548 549 } 553 | Popular Tags |