Complex classes like Schema often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes. You can also have a look at the cohesion graph to spot any un-connected, or weakly-connected components.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use Schema, and based on these observations, apply Extract Interface, too.
| 1 | <?php |
||
| 8 | class Schema |
||
| 9 | { |
||
| 10 | public static function aPIReference(): APIReference |
||
| 11 | { |
||
| 12 | return new APIReference(); |
||
| 13 | } |
||
| 14 | |||
| 15 | public static function aboutPage(): AboutPage |
||
| 16 | { |
||
| 17 | return new AboutPage(); |
||
| 18 | } |
||
| 19 | |||
| 20 | public static function acceptAction(): AcceptAction |
||
| 21 | { |
||
| 22 | return new AcceptAction(); |
||
| 23 | } |
||
| 24 | |||
| 25 | public static function accommodation(): Accommodation |
||
| 26 | { |
||
| 27 | return new Accommodation(); |
||
| 28 | } |
||
| 29 | |||
| 30 | public static function accountingService(): AccountingService |
||
| 31 | { |
||
| 32 | return new AccountingService(); |
||
| 33 | } |
||
| 34 | |||
| 35 | public static function achieveAction(): AchieveAction |
||
| 36 | { |
||
| 37 | return new AchieveAction(); |
||
| 38 | } |
||
| 39 | |||
| 40 | public static function action(): Action |
||
| 41 | { |
||
| 42 | return new Action(); |
||
| 43 | } |
||
| 44 | |||
| 45 | public static function actionStatusType(): ActionStatusType |
||
| 46 | { |
||
| 47 | return new ActionStatusType(); |
||
| 48 | } |
||
| 49 | |||
| 50 | public static function activateAction(): ActivateAction |
||
| 51 | { |
||
| 52 | return new ActivateAction(); |
||
| 53 | } |
||
| 54 | |||
| 55 | public static function addAction(): AddAction |
||
| 56 | { |
||
| 57 | return new AddAction(); |
||
| 58 | } |
||
| 59 | |||
| 60 | public static function administrativeArea(): AdministrativeArea |
||
| 61 | { |
||
| 62 | return new AdministrativeArea(); |
||
| 63 | } |
||
| 64 | |||
| 65 | public static function adultEntertainment(): AdultEntertainment |
||
| 66 | { |
||
| 67 | return new AdultEntertainment(); |
||
| 68 | } |
||
| 69 | |||
| 70 | public static function aggregateOffer(): AggregateOffer |
||
| 71 | { |
||
| 72 | return new AggregateOffer(); |
||
| 73 | } |
||
| 74 | |||
| 75 | public static function aggregateRating(): AggregateRating |
||
| 76 | { |
||
| 77 | return new AggregateRating(); |
||
| 78 | } |
||
| 79 | |||
| 80 | public static function agreeAction(): AgreeAction |
||
| 81 | { |
||
| 82 | return new AgreeAction(); |
||
| 83 | } |
||
| 84 | |||
| 85 | public static function airline(): Airline |
||
| 86 | { |
||
| 87 | return new Airline(); |
||
| 88 | } |
||
| 89 | |||
| 90 | public static function airport(): Airport |
||
| 91 | { |
||
| 92 | return new Airport(); |
||
| 93 | } |
||
| 94 | |||
| 95 | public static function alignmentObject(): AlignmentObject |
||
| 96 | { |
||
| 97 | return new AlignmentObject(); |
||
| 98 | } |
||
| 99 | |||
| 100 | public static function allocateAction(): AllocateAction |
||
| 101 | { |
||
| 102 | return new AllocateAction(); |
||
| 103 | } |
||
| 104 | |||
| 105 | public static function amusementPark(): AmusementPark |
||
| 106 | { |
||
| 107 | return new AmusementPark(); |
||
| 108 | } |
||
| 109 | |||
| 110 | public static function animalShelter(): AnimalShelter |
||
| 111 | { |
||
| 112 | return new AnimalShelter(); |
||
| 113 | } |
||
| 114 | |||
| 115 | public static function answer(): Answer |
||
| 116 | { |
||
| 117 | return new Answer(); |
||
| 118 | } |
||
| 119 | |||
| 120 | public static function apartment(): Apartment |
||
| 121 | { |
||
| 122 | return new Apartment(); |
||
| 123 | } |
||
| 124 | |||
| 125 | public static function apartmentComplex(): ApartmentComplex |
||
| 126 | { |
||
| 127 | return new ApartmentComplex(); |
||
| 128 | } |
||
| 129 | |||
| 130 | public static function appendAction(): AppendAction |
||
| 131 | { |
||
| 132 | return new AppendAction(); |
||
| 133 | } |
||
| 134 | |||
| 135 | public static function applyAction(): ApplyAction |
||
| 136 | { |
||
| 137 | return new ApplyAction(); |
||
| 138 | } |
||
| 139 | |||
| 140 | public static function aquarium(): Aquarium |
||
| 141 | { |
||
| 142 | return new Aquarium(); |
||
| 143 | } |
||
| 144 | |||
| 145 | public static function arriveAction(): ArriveAction |
||
| 146 | { |
||
| 147 | return new ArriveAction(); |
||
| 148 | } |
||
| 149 | |||
| 150 | public static function artGallery(): ArtGallery |
||
| 151 | { |
||
| 152 | return new ArtGallery(); |
||
| 153 | } |
||
| 154 | |||
| 155 | public static function article(): Article |
||
| 156 | { |
||
| 157 | return new Article(); |
||
| 158 | } |
||
| 159 | |||
| 160 | public static function askAction(): AskAction |
||
| 161 | { |
||
| 162 | return new AskAction(); |
||
| 163 | } |
||
| 164 | |||
| 165 | public static function assessAction(): AssessAction |
||
| 166 | { |
||
| 167 | return new AssessAction(); |
||
| 168 | } |
||
| 169 | |||
| 170 | public static function assignAction(): AssignAction |
||
| 171 | { |
||
| 172 | return new AssignAction(); |
||
| 173 | } |
||
| 174 | |||
| 175 | public static function attorney(): Attorney |
||
| 179 | |||
| 180 | public static function audience(): Audience |
||
| 184 | |||
| 185 | public static function audioObject(): AudioObject |
||
| 186 | { |
||
| 187 | return new AudioObject(); |
||
| 188 | } |
||
| 189 | |||
| 190 | public static function authorizeAction(): AuthorizeAction |
||
| 191 | { |
||
| 192 | return new AuthorizeAction(); |
||
| 193 | } |
||
| 194 | |||
| 195 | public static function autoBodyShop(): AutoBodyShop |
||
| 196 | { |
||
| 197 | return new AutoBodyShop(); |
||
| 198 | } |
||
| 199 | |||
| 200 | public static function autoDealer(): AutoDealer |
||
| 201 | { |
||
| 202 | return new AutoDealer(); |
||
| 203 | } |
||
| 204 | |||
| 205 | public static function autoPartsStore(): AutoPartsStore |
||
| 206 | { |
||
| 207 | return new AutoPartsStore(); |
||
| 208 | } |
||
| 209 | |||
| 210 | public static function autoRental(): AutoRental |
||
| 211 | { |
||
| 212 | return new AutoRental(); |
||
| 213 | } |
||
| 214 | |||
| 215 | public static function autoRepair(): AutoRepair |
||
| 216 | { |
||
| 217 | return new AutoRepair(); |
||
| 218 | } |
||
| 219 | |||
| 220 | public static function autoWash(): AutoWash |
||
| 221 | { |
||
| 222 | return new AutoWash(); |
||
| 223 | } |
||
| 224 | |||
| 225 | public static function automatedTeller(): AutomatedTeller |
||
| 226 | { |
||
| 227 | return new AutomatedTeller(); |
||
| 228 | } |
||
| 229 | |||
| 230 | public static function automotiveBusiness(): AutomotiveBusiness |
||
| 231 | { |
||
| 232 | return new AutomotiveBusiness(); |
||
| 233 | } |
||
| 234 | |||
| 235 | public static function bakery(): Bakery |
||
| 236 | { |
||
| 237 | return new Bakery(); |
||
| 238 | } |
||
| 239 | |||
| 240 | public static function bankAccount(): BankAccount |
||
| 241 | { |
||
| 242 | return new BankAccount(); |
||
| 243 | } |
||
| 244 | |||
| 245 | public static function bankOrCreditUnion(): BankOrCreditUnion |
||
| 246 | { |
||
| 247 | return new BankOrCreditUnion(); |
||
| 248 | } |
||
| 249 | |||
| 250 | public static function barOrPub(): BarOrPub |
||
| 251 | { |
||
| 252 | return new BarOrPub(); |
||
| 253 | } |
||
| 254 | |||
| 255 | public static function barcode(): Barcode |
||
| 259 | |||
| 260 | public static function beach(): Beach |
||
| 261 | { |
||
| 262 | return new Beach(); |
||
| 263 | } |
||
| 264 | |||
| 265 | public static function beautySalon(): BeautySalon |
||
| 266 | { |
||
| 267 | return new BeautySalon(); |
||
| 268 | } |
||
| 269 | |||
| 270 | public static function bedAndBreakfast(): BedAndBreakfast |
||
| 271 | { |
||
| 272 | return new BedAndBreakfast(); |
||
| 273 | } |
||
| 274 | |||
| 275 | public static function bedDetails(): BedDetails |
||
| 276 | { |
||
| 277 | return new BedDetails(); |
||
| 278 | } |
||
| 279 | |||
| 280 | public static function befriendAction(): BefriendAction |
||
| 281 | { |
||
| 282 | return new BefriendAction(); |
||
| 283 | } |
||
| 284 | |||
| 285 | public static function bikeStore(): BikeStore |
||
| 286 | { |
||
| 287 | return new BikeStore(); |
||
| 288 | } |
||
| 289 | |||
| 290 | public static function blog(): Blog |
||
| 291 | { |
||
| 292 | return new Blog(); |
||
| 293 | } |
||
| 294 | |||
| 295 | public static function blogPosting(): BlogPosting |
||
| 296 | { |
||
| 297 | return new BlogPosting(); |
||
| 298 | } |
||
| 299 | |||
| 300 | public static function boardingPolicyType(): BoardingPolicyType |
||
| 301 | { |
||
| 302 | return new BoardingPolicyType(); |
||
| 303 | } |
||
| 304 | |||
| 305 | public static function bodyOfWater(): BodyOfWater |
||
| 306 | { |
||
| 307 | return new BodyOfWater(); |
||
| 308 | } |
||
| 309 | |||
| 310 | public static function book(): Book |
||
| 311 | { |
||
| 312 | return new Book(); |
||
| 313 | } |
||
| 314 | |||
| 315 | public static function bookFormatType(): BookFormatType |
||
| 316 | { |
||
| 317 | return new BookFormatType(); |
||
| 318 | } |
||
| 319 | |||
| 320 | public static function bookSeries(): BookSeries |
||
| 321 | { |
||
| 322 | return new BookSeries(); |
||
| 323 | } |
||
| 324 | |||
| 325 | public static function bookStore(): BookStore |
||
| 329 | |||
| 330 | public static function bookmarkAction(): BookmarkAction |
||
| 331 | { |
||
| 332 | return new BookmarkAction(); |
||
| 333 | } |
||
| 334 | |||
| 335 | public static function borrowAction(): BorrowAction |
||
| 336 | { |
||
| 337 | return new BorrowAction(); |
||
| 338 | } |
||
| 339 | |||
| 340 | public static function bowlingAlley(): BowlingAlley |
||
| 341 | { |
||
| 342 | return new BowlingAlley(); |
||
| 343 | } |
||
| 344 | |||
| 345 | public static function brand(): Brand |
||
| 346 | { |
||
| 347 | return new Brand(); |
||
| 348 | } |
||
| 349 | |||
| 350 | public static function breadcrumbList(): BreadcrumbList |
||
| 351 | { |
||
| 352 | return new BreadcrumbList(); |
||
| 353 | } |
||
| 354 | |||
| 355 | public static function brewery(): Brewery |
||
| 356 | { |
||
| 357 | return new Brewery(); |
||
| 358 | } |
||
| 359 | |||
| 360 | public static function bridge(): Bridge |
||
| 361 | { |
||
| 362 | return new Bridge(); |
||
| 363 | } |
||
| 364 | |||
| 365 | public static function broadcastChannel(): BroadcastChannel |
||
| 366 | { |
||
| 367 | return new BroadcastChannel(); |
||
| 368 | } |
||
| 369 | |||
| 370 | public static function broadcastEvent(): BroadcastEvent |
||
| 371 | { |
||
| 372 | return new BroadcastEvent(); |
||
| 373 | } |
||
| 374 | |||
| 375 | public static function broadcastService(): BroadcastService |
||
| 376 | { |
||
| 377 | return new BroadcastService(); |
||
| 378 | } |
||
| 379 | |||
| 380 | public static function buddhistTemple(): BuddhistTemple |
||
| 381 | { |
||
| 382 | return new BuddhistTemple(); |
||
| 383 | } |
||
| 384 | |||
| 385 | public static function busReservation(): BusReservation |
||
| 386 | { |
||
| 387 | return new BusReservation(); |
||
| 388 | } |
||
| 389 | |||
| 390 | public static function busStation(): BusStation |
||
| 391 | { |
||
| 392 | return new BusStation(); |
||
| 393 | } |
||
| 394 | |||
| 395 | public static function busStop(): BusStop |
||
| 396 | { |
||
| 397 | return new BusStop(); |
||
| 398 | } |
||
| 399 | |||
| 400 | public static function busTrip(): BusTrip |
||
| 401 | { |
||
| 402 | return new BusTrip(); |
||
| 403 | } |
||
| 404 | |||
| 405 | public static function businessAudience(): BusinessAudience |
||
| 406 | { |
||
| 407 | return new BusinessAudience(); |
||
| 408 | } |
||
| 409 | |||
| 410 | public static function businessEntityType(): BusinessEntityType |
||
| 411 | { |
||
| 412 | return new BusinessEntityType(); |
||
| 413 | } |
||
| 414 | |||
| 415 | public static function businessEvent(): BusinessEvent |
||
| 416 | { |
||
| 417 | return new BusinessEvent(); |
||
| 418 | } |
||
| 419 | |||
| 420 | public static function businessFunction(): BusinessFunction |
||
| 421 | { |
||
| 422 | return new BusinessFunction(); |
||
| 423 | } |
||
| 424 | |||
| 425 | public static function buyAction(): BuyAction |
||
| 426 | { |
||
| 427 | return new BuyAction(); |
||
| 428 | } |
||
| 429 | |||
| 430 | public static function cableOrSatelliteService(): CableOrSatelliteService |
||
| 431 | { |
||
| 432 | return new CableOrSatelliteService(); |
||
| 433 | } |
||
| 434 | |||
| 435 | public static function cafeOrCoffeeShop(): CafeOrCoffeeShop |
||
| 436 | { |
||
| 437 | return new CafeOrCoffeeShop(); |
||
| 438 | } |
||
| 439 | |||
| 440 | public static function campground(): Campground |
||
| 441 | { |
||
| 442 | return new Campground(); |
||
| 443 | } |
||
| 444 | |||
| 445 | public static function campingPitch(): CampingPitch |
||
| 446 | { |
||
| 447 | return new CampingPitch(); |
||
| 448 | } |
||
| 449 | |||
| 450 | public static function canal(): Canal |
||
| 451 | { |
||
| 452 | return new Canal(); |
||
| 453 | } |
||
| 454 | |||
| 455 | public static function cancelAction(): CancelAction |
||
| 456 | { |
||
| 457 | return new CancelAction(); |
||
| 458 | } |
||
| 459 | |||
| 460 | public static function car(): Car |
||
| 461 | { |
||
| 462 | return new Car(); |
||
| 463 | } |
||
| 464 | |||
| 465 | public static function casino(): Casino |
||
| 466 | { |
||
| 467 | return new Casino(); |
||
| 468 | } |
||
| 469 | |||
| 470 | public static function catholicChurch(): CatholicChurch |
||
| 471 | { |
||
| 472 | return new CatholicChurch(); |
||
| 473 | } |
||
| 474 | |||
| 475 | public static function cemetery(): Cemetery |
||
| 476 | { |
||
| 477 | return new Cemetery(); |
||
| 478 | } |
||
| 479 | |||
| 480 | public static function checkAction(): CheckAction |
||
| 481 | { |
||
| 482 | return new CheckAction(); |
||
| 483 | } |
||
| 484 | |||
| 485 | public static function checkInAction(): CheckInAction |
||
| 486 | { |
||
| 487 | return new CheckInAction(); |
||
| 488 | } |
||
| 489 | |||
| 490 | public static function checkOutAction(): CheckOutAction |
||
| 491 | { |
||
| 492 | return new CheckOutAction(); |
||
| 493 | } |
||
| 494 | |||
| 495 | public static function checkoutPage(): CheckoutPage |
||
| 496 | { |
||
| 497 | return new CheckoutPage(); |
||
| 498 | } |
||
| 499 | |||
| 500 | public static function childCare(): ChildCare |
||
| 501 | { |
||
| 502 | return new ChildCare(); |
||
| 503 | } |
||
| 504 | |||
| 505 | public static function childrensEvent(): ChildrensEvent |
||
| 506 | { |
||
| 507 | return new ChildrensEvent(); |
||
| 508 | } |
||
| 509 | |||
| 510 | public static function chooseAction(): ChooseAction |
||
| 511 | { |
||
| 512 | return new ChooseAction(); |
||
| 513 | } |
||
| 514 | |||
| 515 | public static function church(): Church |
||
| 516 | { |
||
| 517 | return new Church(); |
||
| 518 | } |
||
| 519 | |||
| 520 | public static function city(): City |
||
| 521 | { |
||
| 522 | return new City(); |
||
| 523 | } |
||
| 524 | |||
| 525 | public static function cityHall(): CityHall |
||
| 526 | { |
||
| 527 | return new CityHall(); |
||
| 528 | } |
||
| 529 | |||
| 530 | public static function civicStructure(): CivicStructure |
||
| 531 | { |
||
| 532 | return new CivicStructure(); |
||
| 533 | } |
||
| 534 | |||
| 535 | public static function claimReview(): ClaimReview |
||
| 536 | { |
||
| 537 | return new ClaimReview(); |
||
| 538 | } |
||
| 539 | |||
| 540 | public static function clip(): Clip |
||
| 541 | { |
||
| 542 | return new Clip(); |
||
| 543 | } |
||
| 544 | |||
| 545 | public static function clothingStore(): ClothingStore |
||
| 546 | { |
||
| 547 | return new ClothingStore(); |
||
| 548 | } |
||
| 549 | |||
| 550 | public static function code(): Code |
||
| 551 | { |
||
| 552 | return new Code(); |
||
| 553 | } |
||
| 554 | |||
| 555 | public static function collectionPage(): CollectionPage |
||
| 556 | { |
||
| 557 | return new CollectionPage(); |
||
| 558 | } |
||
| 559 | |||
| 560 | public static function collegeOrUniversity(): CollegeOrUniversity |
||
| 561 | { |
||
| 562 | return new CollegeOrUniversity(); |
||
| 563 | } |
||
| 564 | |||
| 565 | public static function comedyClub(): ComedyClub |
||
| 566 | { |
||
| 567 | return new ComedyClub(); |
||
| 568 | } |
||
| 569 | |||
| 570 | public static function comedyEvent(): ComedyEvent |
||
| 571 | { |
||
| 572 | return new ComedyEvent(); |
||
| 573 | } |
||
| 574 | |||
| 575 | public static function comment(): Comment |
||
| 576 | { |
||
| 577 | return new Comment(); |
||
| 578 | } |
||
| 579 | |||
| 580 | public static function commentAction(): CommentAction |
||
| 581 | { |
||
| 582 | return new CommentAction(); |
||
| 583 | } |
||
| 584 | |||
| 585 | public static function communicateAction(): CommunicateAction |
||
| 586 | { |
||
| 587 | return new CommunicateAction(); |
||
| 588 | } |
||
| 589 | |||
| 590 | public static function compoundPriceSpecification(): CompoundPriceSpecification |
||
| 591 | { |
||
| 592 | return new CompoundPriceSpecification(); |
||
| 593 | } |
||
| 594 | |||
| 595 | public static function computerLanguage(): ComputerLanguage |
||
| 596 | { |
||
| 597 | return new ComputerLanguage(); |
||
| 598 | } |
||
| 599 | |||
| 600 | public static function computerStore(): ComputerStore |
||
| 601 | { |
||
| 602 | return new ComputerStore(); |
||
| 603 | } |
||
| 604 | |||
| 605 | public static function confirmAction(): ConfirmAction |
||
| 606 | { |
||
| 607 | return new ConfirmAction(); |
||
| 608 | } |
||
| 609 | |||
| 610 | public static function consumeAction(): ConsumeAction |
||
| 611 | { |
||
| 612 | return new ConsumeAction(); |
||
| 613 | } |
||
| 614 | |||
| 615 | public static function contactPage(): ContactPage |
||
| 616 | { |
||
| 617 | return new ContactPage(); |
||
| 618 | } |
||
| 619 | |||
| 620 | public static function contactPoint(): ContactPoint |
||
| 621 | { |
||
| 622 | return new ContactPoint(); |
||
| 623 | } |
||
| 624 | |||
| 625 | public static function contactPointOption(): ContactPointOption |
||
| 626 | { |
||
| 627 | return new ContactPointOption(); |
||
| 628 | } |
||
| 629 | |||
| 630 | public static function continent(): Continent |
||
| 631 | { |
||
| 632 | return new Continent(); |
||
| 633 | } |
||
| 634 | |||
| 635 | public static function controlAction(): ControlAction |
||
| 636 | { |
||
| 637 | return new ControlAction(); |
||
| 638 | } |
||
| 639 | |||
| 640 | public static function convenienceStore(): ConvenienceStore |
||
| 641 | { |
||
| 642 | return new ConvenienceStore(); |
||
| 643 | } |
||
| 644 | |||
| 645 | public static function conversation(): Conversation |
||
| 646 | { |
||
| 647 | return new Conversation(); |
||
| 648 | } |
||
| 649 | |||
| 650 | public static function cookAction(): CookAction |
||
| 651 | { |
||
| 652 | return new CookAction(); |
||
| 653 | } |
||
| 654 | |||
| 655 | public static function corporation(): Corporation |
||
| 656 | { |
||
| 657 | return new Corporation(); |
||
| 658 | } |
||
| 659 | |||
| 660 | public static function country(): Country |
||
| 661 | { |
||
| 662 | return new Country(); |
||
| 663 | } |
||
| 664 | |||
| 665 | public static function course(): Course |
||
| 666 | { |
||
| 667 | return new Course(); |
||
| 668 | } |
||
| 669 | |||
| 670 | public static function courseInstance(): CourseInstance |
||
| 671 | { |
||
| 672 | return new CourseInstance(); |
||
| 673 | } |
||
| 674 | |||
| 675 | public static function courthouse(): Courthouse |
||
| 676 | { |
||
| 677 | return new Courthouse(); |
||
| 678 | } |
||
| 679 | |||
| 680 | public static function createAction(): CreateAction |
||
| 681 | { |
||
| 682 | return new CreateAction(); |
||
| 683 | } |
||
| 684 | |||
| 685 | public static function creativeWork(): CreativeWork |
||
| 686 | { |
||
| 687 | return new CreativeWork(); |
||
| 688 | } |
||
| 689 | |||
| 690 | public static function creativeWorkSeason(): CreativeWorkSeason |
||
| 691 | { |
||
| 692 | return new CreativeWorkSeason(); |
||
| 693 | } |
||
| 694 | |||
| 695 | public static function creativeWorkSeries(): CreativeWorkSeries |
||
| 696 | { |
||
| 697 | return new CreativeWorkSeries(); |
||
| 698 | } |
||
| 699 | |||
| 700 | public static function creditCard(): CreditCard |
||
| 701 | { |
||
| 702 | return new CreditCard(); |
||
| 703 | } |
||
| 704 | |||
| 705 | public static function crematorium(): Crematorium |
||
| 706 | { |
||
| 707 | return new Crematorium(); |
||
| 708 | } |
||
| 709 | |||
| 710 | public static function currencyConversionService(): CurrencyConversionService |
||
| 711 | { |
||
| 712 | return new CurrencyConversionService(); |
||
| 713 | } |
||
| 714 | |||
| 715 | public static function danceEvent(): DanceEvent |
||
| 716 | { |
||
| 717 | return new DanceEvent(); |
||
| 718 | } |
||
| 719 | |||
| 720 | public static function danceGroup(): DanceGroup |
||
| 721 | { |
||
| 722 | return new DanceGroup(); |
||
| 723 | } |
||
| 724 | |||
| 725 | public static function dataCatalog(): DataCatalog |
||
| 726 | { |
||
| 727 | return new DataCatalog(); |
||
| 728 | } |
||
| 729 | |||
| 730 | public static function dataDownload(): DataDownload |
||
| 731 | { |
||
| 732 | return new DataDownload(); |
||
| 733 | } |
||
| 734 | |||
| 735 | public static function dataFeed(): DataFeed |
||
| 736 | { |
||
| 737 | return new DataFeed(); |
||
| 738 | } |
||
| 739 | |||
| 740 | public static function dataFeedItem(): DataFeedItem |
||
| 741 | { |
||
| 742 | return new DataFeedItem(); |
||
| 743 | } |
||
| 744 | |||
| 745 | public static function dataset(): Dataset |
||
| 746 | { |
||
| 747 | return new Dataset(); |
||
| 748 | } |
||
| 749 | |||
| 750 | public static function datedMoneySpecification(): DatedMoneySpecification |
||
| 751 | { |
||
| 752 | return new DatedMoneySpecification(); |
||
| 753 | } |
||
| 754 | |||
| 755 | public static function dayOfWeek(): DayOfWeek |
||
| 756 | { |
||
| 757 | return new DayOfWeek(); |
||
| 758 | } |
||
| 759 | |||
| 760 | public static function daySpa(): DaySpa |
||
| 761 | { |
||
| 762 | return new DaySpa(); |
||
| 763 | } |
||
| 764 | |||
| 765 | public static function deactivateAction(): DeactivateAction |
||
| 766 | { |
||
| 767 | return new DeactivateAction(); |
||
| 768 | } |
||
| 769 | |||
| 770 | public static function defenceEstablishment(): DefenceEstablishment |
||
| 771 | { |
||
| 772 | return new DefenceEstablishment(); |
||
| 773 | } |
||
| 774 | |||
| 775 | public static function deleteAction(): DeleteAction |
||
| 776 | { |
||
| 777 | return new DeleteAction(); |
||
| 778 | } |
||
| 779 | |||
| 780 | public static function deliveryChargeSpecification(): DeliveryChargeSpecification |
||
| 781 | { |
||
| 782 | return new DeliveryChargeSpecification(); |
||
| 783 | } |
||
| 784 | |||
| 785 | public static function deliveryEvent(): DeliveryEvent |
||
| 786 | { |
||
| 787 | return new DeliveryEvent(); |
||
| 788 | } |
||
| 789 | |||
| 790 | public static function deliveryMethod(): DeliveryMethod |
||
| 791 | { |
||
| 792 | return new DeliveryMethod(); |
||
| 793 | } |
||
| 794 | |||
| 795 | public static function demand(): Demand |
||
| 796 | { |
||
| 797 | return new Demand(); |
||
| 798 | } |
||
| 799 | |||
| 800 | public static function dentist(): Dentist |
||
| 801 | { |
||
| 802 | return new Dentist(); |
||
| 803 | } |
||
| 804 | |||
| 805 | public static function departAction(): DepartAction |
||
| 806 | { |
||
| 807 | return new DepartAction(); |
||
| 808 | } |
||
| 809 | |||
| 810 | public static function departmentStore(): DepartmentStore |
||
| 811 | { |
||
| 812 | return new DepartmentStore(); |
||
| 813 | } |
||
| 814 | |||
| 815 | public static function depositAccount(): DepositAccount |
||
| 816 | { |
||
| 817 | return new DepositAccount(); |
||
| 818 | } |
||
| 819 | |||
| 820 | public static function digitalDocument(): DigitalDocument |
||
| 821 | { |
||
| 822 | return new DigitalDocument(); |
||
| 823 | } |
||
| 824 | |||
| 825 | public static function digitalDocumentPermission(): DigitalDocumentPermission |
||
| 826 | { |
||
| 827 | return new DigitalDocumentPermission(); |
||
| 828 | } |
||
| 829 | |||
| 830 | public static function digitalDocumentPermissionType(): DigitalDocumentPermissionType |
||
| 831 | { |
||
| 832 | return new DigitalDocumentPermissionType(); |
||
| 833 | } |
||
| 834 | |||
| 835 | public static function disagreeAction(): DisagreeAction |
||
| 836 | { |
||
| 837 | return new DisagreeAction(); |
||
| 838 | } |
||
| 839 | |||
| 840 | public static function discoverAction(): DiscoverAction |
||
| 841 | { |
||
| 842 | return new DiscoverAction(); |
||
| 843 | } |
||
| 844 | |||
| 845 | public static function discussionForumPosting(): DiscussionForumPosting |
||
| 846 | { |
||
| 847 | return new DiscussionForumPosting(); |
||
| 848 | } |
||
| 849 | |||
| 850 | public static function dislikeAction(): DislikeAction |
||
| 851 | { |
||
| 852 | return new DislikeAction(); |
||
| 853 | } |
||
| 854 | |||
| 855 | public static function distance(): Distance |
||
| 856 | { |
||
| 857 | return new Distance(); |
||
| 858 | } |
||
| 859 | |||
| 860 | public static function donateAction(): DonateAction |
||
| 861 | { |
||
| 862 | return new DonateAction(); |
||
| 863 | } |
||
| 864 | |||
| 865 | public static function downloadAction(): DownloadAction |
||
| 866 | { |
||
| 867 | return new DownloadAction(); |
||
| 868 | } |
||
| 869 | |||
| 870 | public static function drawAction(): DrawAction |
||
| 871 | { |
||
| 872 | return new DrawAction(); |
||
| 873 | } |
||
| 874 | |||
| 875 | public static function drinkAction(): DrinkAction |
||
| 876 | { |
||
| 877 | return new DrinkAction(); |
||
| 878 | } |
||
| 879 | |||
| 880 | public static function driveWheelConfigurationValue(): DriveWheelConfigurationValue |
||
| 881 | { |
||
| 882 | return new DriveWheelConfigurationValue(); |
||
| 883 | } |
||
| 884 | |||
| 885 | public static function dryCleaningOrLaundry(): DryCleaningOrLaundry |
||
| 886 | { |
||
| 887 | return new DryCleaningOrLaundry(); |
||
| 888 | } |
||
| 889 | |||
| 890 | public static function duration(): Duration |
||
| 891 | { |
||
| 892 | return new Duration(); |
||
| 893 | } |
||
| 894 | |||
| 895 | public static function eatAction(): EatAction |
||
| 896 | { |
||
| 897 | return new EatAction(); |
||
| 898 | } |
||
| 899 | |||
| 900 | public static function educationEvent(): EducationEvent |
||
| 901 | { |
||
| 902 | return new EducationEvent(); |
||
| 903 | } |
||
| 904 | |||
| 905 | public static function educationalAudience(): EducationalAudience |
||
| 906 | { |
||
| 907 | return new EducationalAudience(); |
||
| 908 | } |
||
| 909 | |||
| 910 | public static function educationalOrganization(): EducationalOrganization |
||
| 911 | { |
||
| 912 | return new EducationalOrganization(); |
||
| 913 | } |
||
| 914 | |||
| 915 | public static function electrician(): Electrician |
||
| 916 | { |
||
| 917 | return new Electrician(); |
||
| 918 | } |
||
| 919 | |||
| 920 | public static function electronicsStore(): ElectronicsStore |
||
| 921 | { |
||
| 922 | return new ElectronicsStore(); |
||
| 923 | } |
||
| 924 | |||
| 925 | public static function elementarySchool(): ElementarySchool |
||
| 926 | { |
||
| 927 | return new ElementarySchool(); |
||
| 928 | } |
||
| 929 | |||
| 930 | public static function emailMessage(): EmailMessage |
||
| 931 | { |
||
| 932 | return new EmailMessage(); |
||
| 933 | } |
||
| 934 | |||
| 935 | public static function embassy(): Embassy |
||
| 936 | { |
||
| 937 | return new Embassy(); |
||
| 938 | } |
||
| 939 | |||
| 940 | public static function emergencyService(): EmergencyService |
||
| 941 | { |
||
| 942 | return new EmergencyService(); |
||
| 943 | } |
||
| 944 | |||
| 945 | public static function employeeRole(): EmployeeRole |
||
| 946 | { |
||
| 947 | return new EmployeeRole(); |
||
| 948 | } |
||
| 949 | |||
| 950 | public static function employmentAgency(): EmploymentAgency |
||
| 951 | { |
||
| 952 | return new EmploymentAgency(); |
||
| 953 | } |
||
| 954 | |||
| 955 | public static function endorseAction(): EndorseAction |
||
| 956 | { |
||
| 957 | return new EndorseAction(); |
||
| 958 | } |
||
| 959 | |||
| 960 | public static function energy(): Energy |
||
| 961 | { |
||
| 962 | return new Energy(); |
||
| 963 | } |
||
| 964 | |||
| 965 | public static function engineSpecification(): EngineSpecification |
||
| 966 | { |
||
| 967 | return new EngineSpecification(); |
||
| 968 | } |
||
| 969 | |||
| 970 | public static function entertainmentBusiness(): EntertainmentBusiness |
||
| 971 | { |
||
| 972 | return new EntertainmentBusiness(); |
||
| 973 | } |
||
| 974 | |||
| 975 | public static function entryPoint(): EntryPoint |
||
| 976 | { |
||
| 977 | return new EntryPoint(); |
||
| 978 | } |
||
| 979 | |||
| 980 | public static function enumeration(): Enumeration |
||
| 981 | { |
||
| 982 | return new Enumeration(); |
||
| 983 | } |
||
| 984 | |||
| 985 | public static function episode(): Episode |
||
| 986 | { |
||
| 987 | return new Episode(); |
||
| 988 | } |
||
| 989 | |||
| 990 | public static function event(): Event |
||
| 991 | { |
||
| 992 | return new Event(); |
||
| 993 | } |
||
| 994 | |||
| 995 | public static function eventReservation(): EventReservation |
||
| 996 | { |
||
| 997 | return new EventReservation(); |
||
| 998 | } |
||
| 999 | |||
| 1000 | public static function eventStatusType(): EventStatusType |
||
| 1001 | { |
||
| 1002 | return new EventStatusType(); |
||
| 1003 | } |
||
| 1004 | |||
| 1005 | public static function eventVenue(): EventVenue |
||
| 1006 | { |
||
| 1007 | return new EventVenue(); |
||
| 1008 | } |
||
| 1009 | |||
| 1010 | public static function exerciseAction(): ExerciseAction |
||
| 1011 | { |
||
| 1012 | return new ExerciseAction(); |
||
| 1013 | } |
||
| 1014 | |||
| 1015 | public static function exerciseGym(): ExerciseGym |
||
| 1016 | { |
||
| 1017 | return new ExerciseGym(); |
||
| 1018 | } |
||
| 1019 | |||
| 1020 | public static function exhibitionEvent(): ExhibitionEvent |
||
| 1021 | { |
||
| 1022 | return new ExhibitionEvent(); |
||
| 1023 | } |
||
| 1024 | |||
| 1025 | public static function fastFoodRestaurant(): FastFoodRestaurant |
||
| 1026 | { |
||
| 1027 | return new FastFoodRestaurant(); |
||
| 1028 | } |
||
| 1029 | |||
| 1030 | public static function festival(): Festival |
||
| 1031 | { |
||
| 1032 | return new Festival(); |
||
| 1033 | } |
||
| 1034 | |||
| 1035 | public static function filmAction(): FilmAction |
||
| 1036 | { |
||
| 1037 | return new FilmAction(); |
||
| 1038 | } |
||
| 1039 | |||
| 1040 | public static function financialProduct(): FinancialProduct |
||
| 1041 | { |
||
| 1042 | return new FinancialProduct(); |
||
| 1043 | } |
||
| 1044 | |||
| 1045 | public static function financialService(): FinancialService |
||
| 1046 | { |
||
| 1047 | return new FinancialService(); |
||
| 1048 | } |
||
| 1049 | |||
| 1050 | public static function findAction(): FindAction |
||
| 1051 | { |
||
| 1052 | return new FindAction(); |
||
| 1053 | } |
||
| 1054 | |||
| 1055 | public static function fireStation(): FireStation |
||
| 1056 | { |
||
| 1057 | return new FireStation(); |
||
| 1058 | } |
||
| 1059 | |||
| 1060 | public static function flight(): Flight |
||
| 1061 | { |
||
| 1062 | return new Flight(); |
||
| 1063 | } |
||
| 1064 | |||
| 1065 | public static function flightReservation(): FlightReservation |
||
| 1066 | { |
||
| 1067 | return new FlightReservation(); |
||
| 1068 | } |
||
| 1069 | |||
| 1070 | public static function florist(): Florist |
||
| 1071 | { |
||
| 1072 | return new Florist(); |
||
| 1073 | } |
||
| 1074 | |||
| 1075 | public static function followAction(): FollowAction |
||
| 1076 | { |
||
| 1077 | return new FollowAction(); |
||
| 1078 | } |
||
| 1079 | |||
| 1080 | public static function foodEstablishment(): FoodEstablishment |
||
| 1081 | { |
||
| 1082 | return new FoodEstablishment(); |
||
| 1083 | } |
||
| 1084 | |||
| 1085 | public static function foodEstablishmentReservation(): FoodEstablishmentReservation |
||
| 1086 | { |
||
| 1087 | return new FoodEstablishmentReservation(); |
||
| 1088 | } |
||
| 1089 | |||
| 1090 | public static function foodEvent(): FoodEvent |
||
| 1091 | { |
||
| 1092 | return new FoodEvent(); |
||
| 1093 | } |
||
| 1094 | |||
| 1095 | public static function foodService(): FoodService |
||
| 1096 | { |
||
| 1097 | return new FoodService(); |
||
| 1098 | } |
||
| 1099 | |||
| 1100 | public static function furnitureStore(): FurnitureStore |
||
| 1101 | { |
||
| 1102 | return new FurnitureStore(); |
||
| 1103 | } |
||
| 1104 | |||
| 1105 | public static function game(): Game |
||
| 1106 | { |
||
| 1107 | return new Game(); |
||
| 1108 | } |
||
| 1109 | |||
| 1110 | public static function gamePlayMode(): GamePlayMode |
||
| 1111 | { |
||
| 1112 | return new GamePlayMode(); |
||
| 1113 | } |
||
| 1114 | |||
| 1115 | public static function gameServer(): GameServer |
||
| 1116 | { |
||
| 1117 | return new GameServer(); |
||
| 1118 | } |
||
| 1119 | |||
| 1120 | public static function gameServerStatus(): GameServerStatus |
||
| 1121 | { |
||
| 1122 | return new GameServerStatus(); |
||
| 1123 | } |
||
| 1124 | |||
| 1125 | public static function gardenStore(): GardenStore |
||
| 1126 | { |
||
| 1127 | return new GardenStore(); |
||
| 1128 | } |
||
| 1129 | |||
| 1130 | public static function gasStation(): GasStation |
||
| 1131 | { |
||
| 1132 | return new GasStation(); |
||
| 1133 | } |
||
| 1134 | |||
| 1135 | public static function gatedResidenceCommunity(): GatedResidenceCommunity |
||
| 1136 | { |
||
| 1137 | return new GatedResidenceCommunity(); |
||
| 1138 | } |
||
| 1139 | |||
| 1140 | public static function genderType(): GenderType |
||
| 1141 | { |
||
| 1142 | return new GenderType(); |
||
| 1143 | } |
||
| 1144 | |||
| 1145 | public static function generalContractor(): GeneralContractor |
||
| 1146 | { |
||
| 1147 | return new GeneralContractor(); |
||
| 1148 | } |
||
| 1149 | |||
| 1150 | public static function geoCircle(): GeoCircle |
||
| 1151 | { |
||
| 1152 | return new GeoCircle(); |
||
| 1153 | } |
||
| 1154 | |||
| 1155 | public static function geoCoordinates(): GeoCoordinates |
||
| 1156 | { |
||
| 1157 | return new GeoCoordinates(); |
||
| 1158 | } |
||
| 1159 | |||
| 1160 | public static function geoShape(): GeoShape |
||
| 1161 | { |
||
| 1162 | return new GeoShape(); |
||
| 1163 | } |
||
| 1164 | |||
| 1165 | public static function giveAction(): GiveAction |
||
| 1166 | { |
||
| 1167 | return new GiveAction(); |
||
| 1168 | } |
||
| 1169 | |||
| 1170 | public static function golfCourse(): GolfCourse |
||
| 1171 | { |
||
| 1172 | return new GolfCourse(); |
||
| 1173 | } |
||
| 1174 | |||
| 1175 | public static function governmentBuilding(): GovernmentBuilding |
||
| 1176 | { |
||
| 1177 | return new GovernmentBuilding(); |
||
| 1178 | } |
||
| 1179 | |||
| 1180 | public static function governmentOffice(): GovernmentOffice |
||
| 1181 | { |
||
| 1182 | return new GovernmentOffice(); |
||
| 1183 | } |
||
| 1184 | |||
| 1185 | public static function governmentOrganization(): GovernmentOrganization |
||
| 1186 | { |
||
| 1187 | return new GovernmentOrganization(); |
||
| 1188 | } |
||
| 1189 | |||
| 1190 | public static function governmentPermit(): GovernmentPermit |
||
| 1191 | { |
||
| 1192 | return new GovernmentPermit(); |
||
| 1193 | } |
||
| 1194 | |||
| 1195 | public static function governmentService(): GovernmentService |
||
| 1196 | { |
||
| 1197 | return new GovernmentService(); |
||
| 1198 | } |
||
| 1199 | |||
| 1200 | public static function groceryStore(): GroceryStore |
||
| 1201 | { |
||
| 1202 | return new GroceryStore(); |
||
| 1203 | } |
||
| 1204 | |||
| 1205 | public static function hVACBusiness(): HVACBusiness |
||
| 1206 | { |
||
| 1207 | return new HVACBusiness(); |
||
| 1208 | } |
||
| 1209 | |||
| 1210 | public static function hairSalon(): HairSalon |
||
| 1211 | { |
||
| 1212 | return new HairSalon(); |
||
| 1213 | } |
||
| 1214 | |||
| 1215 | public static function hardwareStore(): HardwareStore |
||
| 1216 | { |
||
| 1217 | return new HardwareStore(); |
||
| 1218 | } |
||
| 1219 | |||
| 1220 | public static function healthAndBeautyBusiness(): HealthAndBeautyBusiness |
||
| 1221 | { |
||
| 1222 | return new HealthAndBeautyBusiness(); |
||
| 1223 | } |
||
| 1224 | |||
| 1225 | public static function healthClub(): HealthClub |
||
| 1226 | { |
||
| 1227 | return new HealthClub(); |
||
| 1228 | } |
||
| 1229 | |||
| 1230 | public static function highSchool(): HighSchool |
||
| 1231 | { |
||
| 1232 | return new HighSchool(); |
||
| 1233 | } |
||
| 1234 | |||
| 1235 | public static function hinduTemple(): HinduTemple |
||
| 1236 | { |
||
| 1237 | return new HinduTemple(); |
||
| 1238 | } |
||
| 1239 | |||
| 1240 | public static function hobbyShop(): HobbyShop |
||
| 1241 | { |
||
| 1242 | return new HobbyShop(); |
||
| 1243 | } |
||
| 1244 | |||
| 1245 | public static function homeAndConstructionBusiness(): HomeAndConstructionBusiness |
||
| 1246 | { |
||
| 1247 | return new HomeAndConstructionBusiness(); |
||
| 1248 | } |
||
| 1249 | |||
| 1250 | public static function homeGoodsStore(): HomeGoodsStore |
||
| 1251 | { |
||
| 1252 | return new HomeGoodsStore(); |
||
| 1253 | } |
||
| 1254 | |||
| 1255 | public static function hospital(): Hospital |
||
| 1256 | { |
||
| 1257 | return new Hospital(); |
||
| 1258 | } |
||
| 1259 | |||
| 1260 | public static function hostel(): Hostel |
||
| 1261 | { |
||
| 1262 | return new Hostel(); |
||
| 1263 | } |
||
| 1264 | |||
| 1265 | public static function hotel(): Hotel |
||
| 1266 | { |
||
| 1267 | return new Hotel(); |
||
| 1268 | } |
||
| 1269 | |||
| 1270 | public static function hotelRoom(): HotelRoom |
||
| 1271 | { |
||
| 1272 | return new HotelRoom(); |
||
| 1273 | } |
||
| 1274 | |||
| 1275 | public static function house(): House |
||
| 1276 | { |
||
| 1277 | return new House(); |
||
| 1278 | } |
||
| 1279 | |||
| 1280 | public static function housePainter(): HousePainter |
||
| 1281 | { |
||
| 1282 | return new HousePainter(); |
||
| 1283 | } |
||
| 1284 | |||
| 1285 | public static function howTo(): HowTo |
||
| 1286 | { |
||
| 1287 | return new HowTo(); |
||
| 1288 | } |
||
| 1289 | |||
| 1290 | public static function howToDirection(): HowToDirection |
||
| 1291 | { |
||
| 1292 | return new HowToDirection(); |
||
| 1293 | } |
||
| 1294 | |||
| 1295 | public static function howToItem(): HowToItem |
||
| 1296 | { |
||
| 1297 | return new HowToItem(); |
||
| 1298 | } |
||
| 1299 | |||
| 1300 | public static function howToSection(): HowToSection |
||
| 1301 | { |
||
| 1302 | return new HowToSection(); |
||
| 1303 | } |
||
| 1304 | |||
| 1305 | public static function howToStep(): HowToStep |
||
| 1306 | { |
||
| 1307 | return new HowToStep(); |
||
| 1308 | } |
||
| 1309 | |||
| 1310 | public static function howToSupply(): HowToSupply |
||
| 1311 | { |
||
| 1312 | return new HowToSupply(); |
||
| 1313 | } |
||
| 1314 | |||
| 1315 | public static function howToTip(): HowToTip |
||
| 1316 | { |
||
| 1317 | return new HowToTip(); |
||
| 1318 | } |
||
| 1319 | |||
| 1320 | public static function howToTool(): HowToTool |
||
| 1321 | { |
||
| 1322 | return new HowToTool(); |
||
| 1323 | } |
||
| 1324 | |||
| 1325 | public static function iceCreamShop(): IceCreamShop |
||
| 1326 | { |
||
| 1327 | return new IceCreamShop(); |
||
| 1328 | } |
||
| 1329 | |||
| 1330 | public static function ignoreAction(): IgnoreAction |
||
| 1331 | { |
||
| 1332 | return new IgnoreAction(); |
||
| 1333 | } |
||
| 1334 | |||
| 1335 | public static function imageGallery(): ImageGallery |
||
| 1336 | { |
||
| 1337 | return new ImageGallery(); |
||
| 1338 | } |
||
| 1339 | |||
| 1340 | public static function imageObject(): ImageObject |
||
| 1341 | { |
||
| 1342 | return new ImageObject(); |
||
| 1343 | } |
||
| 1344 | |||
| 1345 | public static function individualProduct(): IndividualProduct |
||
| 1346 | { |
||
| 1347 | return new IndividualProduct(); |
||
| 1348 | } |
||
| 1349 | |||
| 1350 | public static function informAction(): InformAction |
||
| 1351 | { |
||
| 1352 | return new InformAction(); |
||
| 1353 | } |
||
| 1354 | |||
| 1355 | public static function insertAction(): InsertAction |
||
| 1356 | { |
||
| 1357 | return new InsertAction(); |
||
| 1358 | } |
||
| 1359 | |||
| 1360 | public static function installAction(): InstallAction |
||
| 1361 | { |
||
| 1362 | return new InstallAction(); |
||
| 1363 | } |
||
| 1364 | |||
| 1365 | public static function insuranceAgency(): InsuranceAgency |
||
| 1366 | { |
||
| 1367 | return new InsuranceAgency(); |
||
| 1368 | } |
||
| 1369 | |||
| 1370 | public static function intangible(): Intangible |
||
| 1371 | { |
||
| 1372 | return new Intangible(); |
||
| 1373 | } |
||
| 1374 | |||
| 1375 | public static function interactAction(): InteractAction |
||
| 1376 | { |
||
| 1377 | return new InteractAction(); |
||
| 1378 | } |
||
| 1379 | |||
| 1380 | public static function interactionCounter(): InteractionCounter |
||
| 1381 | { |
||
| 1382 | return new InteractionCounter(); |
||
| 1383 | } |
||
| 1384 | |||
| 1385 | public static function internetCafe(): InternetCafe |
||
| 1386 | { |
||
| 1387 | return new InternetCafe(); |
||
| 1388 | } |
||
| 1389 | |||
| 1390 | public static function investmentOrDeposit(): InvestmentOrDeposit |
||
| 1391 | { |
||
| 1392 | return new InvestmentOrDeposit(); |
||
| 1393 | } |
||
| 1394 | |||
| 1395 | public static function inviteAction(): InviteAction |
||
| 1396 | { |
||
| 1397 | return new InviteAction(); |
||
| 1398 | } |
||
| 1399 | |||
| 1400 | public static function invoice(): Invoice |
||
| 1401 | { |
||
| 1402 | return new Invoice(); |
||
| 1403 | } |
||
| 1404 | |||
| 1405 | public static function itemAvailability(): ItemAvailability |
||
| 1406 | { |
||
| 1407 | return new ItemAvailability(); |
||
| 1408 | } |
||
| 1409 | |||
| 1410 | public static function itemList(): ItemList |
||
| 1411 | { |
||
| 1412 | return new ItemList(); |
||
| 1413 | } |
||
| 1414 | |||
| 1415 | public static function itemListOrderType(): ItemListOrderType |
||
| 1416 | { |
||
| 1417 | return new ItemListOrderType(); |
||
| 1418 | } |
||
| 1419 | |||
| 1420 | public static function itemPage(): ItemPage |
||
| 1421 | { |
||
| 1422 | return new ItemPage(); |
||
| 1423 | } |
||
| 1424 | |||
| 1425 | public static function jewelryStore(): JewelryStore |
||
| 1426 | { |
||
| 1427 | return new JewelryStore(); |
||
| 1428 | } |
||
| 1429 | |||
| 1430 | public static function jobPosting(): JobPosting |
||
| 1431 | { |
||
| 1432 | return new JobPosting(); |
||
| 1433 | } |
||
| 1434 | |||
| 1435 | public static function joinAction(): JoinAction |
||
| 1436 | { |
||
| 1437 | return new JoinAction(); |
||
| 1438 | } |
||
| 1439 | |||
| 1440 | public static function lakeBodyOfWater(): LakeBodyOfWater |
||
| 1441 | { |
||
| 1442 | return new LakeBodyOfWater(); |
||
| 1443 | } |
||
| 1444 | |||
| 1445 | public static function landform(): Landform |
||
| 1446 | { |
||
| 1447 | return new Landform(); |
||
| 1448 | } |
||
| 1449 | |||
| 1450 | public static function landmarksOrHistoricalBuildings(): LandmarksOrHistoricalBuildings |
||
| 1451 | { |
||
| 1452 | return new LandmarksOrHistoricalBuildings(); |
||
| 1453 | } |
||
| 1454 | |||
| 1455 | public static function language(): Language |
||
| 1456 | { |
||
| 1457 | return new Language(); |
||
| 1458 | } |
||
| 1459 | |||
| 1460 | public static function leaveAction(): LeaveAction |
||
| 1461 | { |
||
| 1462 | return new LeaveAction(); |
||
| 1463 | } |
||
| 1464 | |||
| 1465 | public static function legalService(): LegalService |
||
| 1466 | { |
||
| 1467 | return new LegalService(); |
||
| 1468 | } |
||
| 1469 | |||
| 1470 | public static function legislativeBuilding(): LegislativeBuilding |
||
| 1471 | { |
||
| 1472 | return new LegislativeBuilding(); |
||
| 1473 | } |
||
| 1474 | |||
| 1475 | public static function lendAction(): LendAction |
||
| 1476 | { |
||
| 1477 | return new LendAction(); |
||
| 1478 | } |
||
| 1479 | |||
| 1480 | public static function library(): Library |
||
| 1481 | { |
||
| 1482 | return new Library(); |
||
| 1483 | } |
||
| 1484 | |||
| 1485 | public static function likeAction(): LikeAction |
||
| 1486 | { |
||
| 1487 | return new LikeAction(); |
||
| 1488 | } |
||
| 1489 | |||
| 1490 | public static function liquorStore(): LiquorStore |
||
| 1491 | { |
||
| 1492 | return new LiquorStore(); |
||
| 1493 | } |
||
| 1494 | |||
| 1495 | public static function listItem(): ListItem |
||
| 1496 | { |
||
| 1497 | return new ListItem(); |
||
| 1498 | } |
||
| 1499 | |||
| 1500 | public static function listenAction(): ListenAction |
||
| 1501 | { |
||
| 1502 | return new ListenAction(); |
||
| 1503 | } |
||
| 1504 | |||
| 1505 | public static function literaryEvent(): LiteraryEvent |
||
| 1506 | { |
||
| 1507 | return new LiteraryEvent(); |
||
| 1508 | } |
||
| 1509 | |||
| 1510 | public static function liveBlogPosting(): LiveBlogPosting |
||
| 1511 | { |
||
| 1512 | return new LiveBlogPosting(); |
||
| 1513 | } |
||
| 1514 | |||
| 1515 | public static function loanOrCredit(): LoanOrCredit |
||
| 1516 | { |
||
| 1517 | return new LoanOrCredit(); |
||
| 1518 | } |
||
| 1519 | |||
| 1520 | public static function localBusiness(): LocalBusiness |
||
| 1521 | { |
||
| 1522 | return new LocalBusiness(); |
||
| 1523 | } |
||
| 1524 | |||
| 1525 | public static function locationFeatureSpecification(): LocationFeatureSpecification |
||
| 1526 | { |
||
| 1527 | return new LocationFeatureSpecification(); |
||
| 1528 | } |
||
| 1529 | |||
| 1530 | public static function lockerDelivery(): LockerDelivery |
||
| 1531 | { |
||
| 1532 | return new LockerDelivery(); |
||
| 1533 | } |
||
| 1534 | |||
| 1535 | public static function locksmith(): Locksmith |
||
| 1536 | { |
||
| 1537 | return new Locksmith(); |
||
| 1538 | } |
||
| 1539 | |||
| 1540 | public static function lodgingBusiness(): LodgingBusiness |
||
| 1541 | { |
||
| 1542 | return new LodgingBusiness(); |
||
| 1543 | } |
||
| 1544 | |||
| 1545 | public static function lodgingReservation(): LodgingReservation |
||
| 1546 | { |
||
| 1547 | return new LodgingReservation(); |
||
| 1548 | } |
||
| 1549 | |||
| 1550 | public static function loseAction(): LoseAction |
||
| 1551 | { |
||
| 1552 | return new LoseAction(); |
||
| 1553 | } |
||
| 1554 | |||
| 1555 | public static function map(): Map |
||
| 1556 | { |
||
| 1557 | return new Map(); |
||
| 1558 | } |
||
| 1559 | |||
| 1560 | public static function mapCategoryType(): MapCategoryType |
||
| 1561 | { |
||
| 1562 | return new MapCategoryType(); |
||
| 1563 | } |
||
| 1564 | |||
| 1565 | public static function marryAction(): MarryAction |
||
| 1566 | { |
||
| 1567 | return new MarryAction(); |
||
| 1568 | } |
||
| 1569 | |||
| 1570 | public static function mass(): Mass |
||
| 1571 | { |
||
| 1572 | return new Mass(); |
||
| 1573 | } |
||
| 1574 | |||
| 1575 | public static function mediaObject(): MediaObject |
||
| 1576 | { |
||
| 1577 | return new MediaObject(); |
||
| 1578 | } |
||
| 1579 | |||
| 1580 | public static function medicalOrganization(): MedicalOrganization |
||
| 1581 | { |
||
| 1582 | return new MedicalOrganization(); |
||
| 1583 | } |
||
| 1584 | |||
| 1585 | public static function meetingRoom(): MeetingRoom |
||
| 1586 | { |
||
| 1587 | return new MeetingRoom(); |
||
| 1588 | } |
||
| 1589 | |||
| 1590 | public static function mensClothingStore(): MensClothingStore |
||
| 1591 | { |
||
| 1592 | return new MensClothingStore(); |
||
| 1593 | } |
||
| 1594 | |||
| 1595 | public static function menu(): Menu |
||
| 1596 | { |
||
| 1597 | return new Menu(); |
||
| 1598 | } |
||
| 1599 | |||
| 1600 | public static function menuItem(): MenuItem |
||
| 1601 | { |
||
| 1602 | return new MenuItem(); |
||
| 1603 | } |
||
| 1604 | |||
| 1605 | public static function menuSection(): MenuSection |
||
| 1606 | { |
||
| 1607 | return new MenuSection(); |
||
| 1608 | } |
||
| 1609 | |||
| 1610 | public static function message(): Message |
||
| 1611 | { |
||
| 1612 | return new Message(); |
||
| 1613 | } |
||
| 1614 | |||
| 1615 | public static function middleSchool(): MiddleSchool |
||
| 1616 | { |
||
| 1617 | return new MiddleSchool(); |
||
| 1618 | } |
||
| 1619 | |||
| 1620 | public static function mobileApplication(): MobileApplication |
||
| 1621 | { |
||
| 1622 | return new MobileApplication(); |
||
| 1623 | } |
||
| 1624 | |||
| 1625 | public static function mobilePhoneStore(): MobilePhoneStore |
||
| 1626 | { |
||
| 1627 | return new MobilePhoneStore(); |
||
| 1628 | } |
||
| 1629 | |||
| 1630 | public static function monetaryAmount(): MonetaryAmount |
||
| 1631 | { |
||
| 1632 | return new MonetaryAmount(); |
||
| 1633 | } |
||
| 1634 | |||
| 1635 | public static function mosque(): Mosque |
||
| 1636 | { |
||
| 1637 | return new Mosque(); |
||
| 1638 | } |
||
| 1639 | |||
| 1640 | public static function motel(): Motel |
||
| 1641 | { |
||
| 1642 | return new Motel(); |
||
| 1643 | } |
||
| 1644 | |||
| 1645 | public static function motorcycleDealer(): MotorcycleDealer |
||
| 1646 | { |
||
| 1647 | return new MotorcycleDealer(); |
||
| 1648 | } |
||
| 1649 | |||
| 1650 | public static function motorcycleRepair(): MotorcycleRepair |
||
| 1651 | { |
||
| 1652 | return new MotorcycleRepair(); |
||
| 1653 | } |
||
| 1654 | |||
| 1655 | public static function mountain(): Mountain |
||
| 1656 | { |
||
| 1657 | return new Mountain(); |
||
| 1658 | } |
||
| 1659 | |||
| 1660 | public static function moveAction(): MoveAction |
||
| 1661 | { |
||
| 1662 | return new MoveAction(); |
||
| 1663 | } |
||
| 1664 | |||
| 1665 | public static function movie(): Movie |
||
| 1666 | { |
||
| 1667 | return new Movie(); |
||
| 1668 | } |
||
| 1669 | |||
| 1670 | public static function movieClip(): MovieClip |
||
| 1671 | { |
||
| 1672 | return new MovieClip(); |
||
| 1673 | } |
||
| 1674 | |||
| 1675 | public static function movieRentalStore(): MovieRentalStore |
||
| 1676 | { |
||
| 1677 | return new MovieRentalStore(); |
||
| 1678 | } |
||
| 1679 | |||
| 1680 | public static function movieSeries(): MovieSeries |
||
| 1681 | { |
||
| 1682 | return new MovieSeries(); |
||
| 1683 | } |
||
| 1684 | |||
| 1685 | public static function movieTheater(): MovieTheater |
||
| 1686 | { |
||
| 1687 | return new MovieTheater(); |
||
| 1688 | } |
||
| 1689 | |||
| 1690 | public static function movingCompany(): MovingCompany |
||
| 1691 | { |
||
| 1692 | return new MovingCompany(); |
||
| 1693 | } |
||
| 1694 | |||
| 1695 | public static function museum(): Museum |
||
| 1696 | { |
||
| 1697 | return new Museum(); |
||
| 1698 | } |
||
| 1699 | |||
| 1700 | public static function musicAlbum(): MusicAlbum |
||
| 1701 | { |
||
| 1702 | return new MusicAlbum(); |
||
| 1703 | } |
||
| 1704 | |||
| 1705 | public static function musicAlbumProductionType(): MusicAlbumProductionType |
||
| 1706 | { |
||
| 1707 | return new MusicAlbumProductionType(); |
||
| 1708 | } |
||
| 1709 | |||
| 1710 | public static function musicAlbumReleaseType(): MusicAlbumReleaseType |
||
| 1711 | { |
||
| 1712 | return new MusicAlbumReleaseType(); |
||
| 1713 | } |
||
| 1714 | |||
| 1715 | public static function musicComposition(): MusicComposition |
||
| 1716 | { |
||
| 1717 | return new MusicComposition(); |
||
| 1718 | } |
||
| 1719 | |||
| 1720 | public static function musicEvent(): MusicEvent |
||
| 1721 | { |
||
| 1722 | return new MusicEvent(); |
||
| 1723 | } |
||
| 1724 | |||
| 1725 | public static function musicGroup(): MusicGroup |
||
| 1726 | { |
||
| 1727 | return new MusicGroup(); |
||
| 1728 | } |
||
| 1729 | |||
| 1730 | public static function musicPlaylist(): MusicPlaylist |
||
| 1731 | { |
||
| 1732 | return new MusicPlaylist(); |
||
| 1733 | } |
||
| 1734 | |||
| 1735 | public static function musicRecording(): MusicRecording |
||
| 1736 | { |
||
| 1737 | return new MusicRecording(); |
||
| 1738 | } |
||
| 1739 | |||
| 1740 | public static function musicRelease(): MusicRelease |
||
| 1741 | { |
||
| 1742 | return new MusicRelease(); |
||
| 1743 | } |
||
| 1744 | |||
| 1745 | public static function musicReleaseFormatType(): MusicReleaseFormatType |
||
| 1746 | { |
||
| 1747 | return new MusicReleaseFormatType(); |
||
| 1748 | } |
||
| 1749 | |||
| 1750 | public static function musicStore(): MusicStore |
||
| 1751 | { |
||
| 1752 | return new MusicStore(); |
||
| 1753 | } |
||
| 1754 | |||
| 1755 | public static function musicVenue(): MusicVenue |
||
| 1756 | { |
||
| 1757 | return new MusicVenue(); |
||
| 1758 | } |
||
| 1759 | |||
| 1760 | public static function musicVideoObject(): MusicVideoObject |
||
| 1761 | { |
||
| 1762 | return new MusicVideoObject(); |
||
| 1763 | } |
||
| 1764 | |||
| 1765 | public static function nGO(): NGO |
||
| 1766 | { |
||
| 1767 | return new NGO(); |
||
| 1768 | } |
||
| 1769 | |||
| 1770 | public static function nailSalon(): NailSalon |
||
| 1771 | { |
||
| 1772 | return new NailSalon(); |
||
| 1773 | } |
||
| 1774 | |||
| 1775 | public static function newsArticle(): NewsArticle |
||
| 1776 | { |
||
| 1777 | return new NewsArticle(); |
||
| 1778 | } |
||
| 1779 | |||
| 1780 | public static function nightClub(): NightClub |
||
| 1781 | { |
||
| 1782 | return new NightClub(); |
||
| 1783 | } |
||
| 1784 | |||
| 1785 | public static function notary(): Notary |
||
| 1786 | { |
||
| 1787 | return new Notary(); |
||
| 1788 | } |
||
| 1789 | |||
| 1790 | public static function noteDigitalDocument(): NoteDigitalDocument |
||
| 1791 | { |
||
| 1792 | return new NoteDigitalDocument(); |
||
| 1793 | } |
||
| 1794 | |||
| 1795 | public static function nutritionInformation(): NutritionInformation |
||
| 1796 | { |
||
| 1797 | return new NutritionInformation(); |
||
| 1798 | } |
||
| 1799 | |||
| 1800 | public static function oceanBodyOfWater(): OceanBodyOfWater |
||
| 1801 | { |
||
| 1802 | return new OceanBodyOfWater(); |
||
| 1803 | } |
||
| 1804 | |||
| 1805 | public static function offer(): Offer |
||
| 1806 | { |
||
| 1807 | return new Offer(); |
||
| 1808 | } |
||
| 1809 | |||
| 1810 | public static function offerCatalog(): OfferCatalog |
||
| 1811 | { |
||
| 1812 | return new OfferCatalog(); |
||
| 1813 | } |
||
| 1814 | |||
| 1815 | public static function offerItemCondition(): OfferItemCondition |
||
| 1816 | { |
||
| 1817 | return new OfferItemCondition(); |
||
| 1818 | } |
||
| 1819 | |||
| 1820 | public static function officeEquipmentStore(): OfficeEquipmentStore |
||
| 1821 | { |
||
| 1822 | return new OfficeEquipmentStore(); |
||
| 1823 | } |
||
| 1824 | |||
| 1825 | public static function onDemandEvent(): OnDemandEvent |
||
| 1826 | { |
||
| 1827 | return new OnDemandEvent(); |
||
| 1828 | } |
||
| 1829 | |||
| 1830 | public static function openingHoursSpecification(): OpeningHoursSpecification |
||
| 1831 | { |
||
| 1832 | return new OpeningHoursSpecification(); |
||
| 1833 | } |
||
| 1834 | |||
| 1835 | public static function order(): Order |
||
| 1836 | { |
||
| 1837 | return new Order(); |
||
| 1838 | } |
||
| 1839 | |||
| 1840 | public static function orderAction(): OrderAction |
||
| 1841 | { |
||
| 1842 | return new OrderAction(); |
||
| 1843 | } |
||
| 1844 | |||
| 1845 | public static function orderItem(): OrderItem |
||
| 1849 | |||
| 1850 | public static function orderStatus(): OrderStatus |
||
| 1851 | { |
||
| 1852 | return new OrderStatus(); |
||
| 1853 | } |
||
| 1854 | |||
| 1855 | public static function organization(): Organization |
||
| 1856 | { |
||
| 1857 | return new Organization(); |
||
| 1858 | } |
||
| 1859 | |||
| 1860 | public static function organizationRole(): OrganizationRole |
||
| 1861 | { |
||
| 1862 | return new OrganizationRole(); |
||
| 1863 | } |
||
| 1864 | |||
| 1865 | public static function organizeAction(): OrganizeAction |
||
| 1866 | { |
||
| 1867 | return new OrganizeAction(); |
||
| 1868 | } |
||
| 1869 | |||
| 1870 | public static function outletStore(): OutletStore |
||
| 1871 | { |
||
| 1872 | return new OutletStore(); |
||
| 1873 | } |
||
| 1874 | |||
| 1875 | public static function ownershipInfo(): OwnershipInfo |
||
| 1876 | { |
||
| 1877 | return new OwnershipInfo(); |
||
| 1878 | } |
||
| 1879 | |||
| 1880 | public static function paintAction(): PaintAction |
||
| 1881 | { |
||
| 1882 | return new PaintAction(); |
||
| 1883 | } |
||
| 1884 | |||
| 1885 | public static function painting(): Painting |
||
| 1886 | { |
||
| 1887 | return new Painting(); |
||
| 1888 | } |
||
| 1889 | |||
| 1890 | public static function parcelDelivery(): ParcelDelivery |
||
| 1891 | { |
||
| 1892 | return new ParcelDelivery(); |
||
| 1893 | } |
||
| 1894 | |||
| 1895 | public static function parcelService(): ParcelService |
||
| 1896 | { |
||
| 1897 | return new ParcelService(); |
||
| 1898 | } |
||
| 1899 | |||
| 1900 | public static function parentAudience(): ParentAudience |
||
| 1901 | { |
||
| 1902 | return new ParentAudience(); |
||
| 1903 | } |
||
| 1904 | |||
| 1905 | public static function park(): Park |
||
| 1906 | { |
||
| 1907 | return new Park(); |
||
| 1908 | } |
||
| 1909 | |||
| 1910 | public static function parkingFacility(): ParkingFacility |
||
| 1911 | { |
||
| 1912 | return new ParkingFacility(); |
||
| 1913 | } |
||
| 1914 | |||
| 1915 | public static function pawnShop(): PawnShop |
||
| 1916 | { |
||
| 1917 | return new PawnShop(); |
||
| 1918 | } |
||
| 1919 | |||
| 1920 | public static function payAction(): PayAction |
||
| 1921 | { |
||
| 1922 | return new PayAction(); |
||
| 1923 | } |
||
| 1924 | |||
| 1925 | public static function paymentCard(): PaymentCard |
||
| 1926 | { |
||
| 1927 | return new PaymentCard(); |
||
| 1928 | } |
||
| 1929 | |||
| 1930 | public static function paymentChargeSpecification(): PaymentChargeSpecification |
||
| 1931 | { |
||
| 1932 | return new PaymentChargeSpecification(); |
||
| 1933 | } |
||
| 1934 | |||
| 1935 | public static function paymentMethod(): PaymentMethod |
||
| 1936 | { |
||
| 1937 | return new PaymentMethod(); |
||
| 1938 | } |
||
| 1939 | |||
| 1940 | public static function paymentService(): PaymentService |
||
| 1941 | { |
||
| 1942 | return new PaymentService(); |
||
| 1943 | } |
||
| 1944 | |||
| 1945 | public static function paymentStatusType(): PaymentStatusType |
||
| 1946 | { |
||
| 1947 | return new PaymentStatusType(); |
||
| 1948 | } |
||
| 1949 | |||
| 1950 | public static function peopleAudience(): PeopleAudience |
||
| 1951 | { |
||
| 1952 | return new PeopleAudience(); |
||
| 1953 | } |
||
| 1954 | |||
| 1955 | public static function performAction(): PerformAction |
||
| 1956 | { |
||
| 1957 | return new PerformAction(); |
||
| 1958 | } |
||
| 1959 | |||
| 1960 | public static function performanceRole(): PerformanceRole |
||
| 1961 | { |
||
| 1962 | return new PerformanceRole(); |
||
| 1963 | } |
||
| 1964 | |||
| 1965 | public static function performingArtsTheater(): PerformingArtsTheater |
||
| 1966 | { |
||
| 1967 | return new PerformingArtsTheater(); |
||
| 1968 | } |
||
| 1969 | |||
| 1970 | public static function performingGroup(): PerformingGroup |
||
| 1971 | { |
||
| 1972 | return new PerformingGroup(); |
||
| 1973 | } |
||
| 1974 | |||
| 1975 | public static function periodical(): Periodical |
||
| 1976 | { |
||
| 1977 | return new Periodical(); |
||
| 1978 | } |
||
| 1979 | |||
| 1980 | public static function permit(): Permit |
||
| 1981 | { |
||
| 1982 | return new Permit(); |
||
| 1983 | } |
||
| 1984 | |||
| 1985 | public static function person(): Person |
||
| 1986 | { |
||
| 1987 | return new Person(); |
||
| 1988 | } |
||
| 1989 | |||
| 1990 | public static function petStore(): PetStore |
||
| 1991 | { |
||
| 1992 | return new PetStore(); |
||
| 1993 | } |
||
| 1994 | |||
| 1995 | public static function pharmacy(): Pharmacy |
||
| 1996 | { |
||
| 1997 | return new Pharmacy(); |
||
| 1998 | } |
||
| 1999 | |||
| 2000 | public static function photograph(): Photograph |
||
| 2001 | { |
||
| 2002 | return new Photograph(); |
||
| 2003 | } |
||
| 2004 | |||
| 2005 | public static function photographAction(): PhotographAction |
||
| 2006 | { |
||
| 2007 | return new PhotographAction(); |
||
| 2008 | } |
||
| 2009 | |||
| 2010 | public static function physician(): Physician |
||
| 2011 | { |
||
| 2012 | return new Physician(); |
||
| 2013 | } |
||
| 2014 | |||
| 2015 | public static function place(): Place |
||
| 2016 | { |
||
| 2017 | return new Place(); |
||
| 2018 | } |
||
| 2019 | |||
| 2020 | public static function placeOfWorship(): PlaceOfWorship |
||
| 2021 | { |
||
| 2022 | return new PlaceOfWorship(); |
||
| 2023 | } |
||
| 2024 | |||
| 2025 | public static function planAction(): PlanAction |
||
| 2026 | { |
||
| 2027 | return new PlanAction(); |
||
| 2028 | } |
||
| 2029 | |||
| 2030 | public static function playAction(): PlayAction |
||
| 2031 | { |
||
| 2032 | return new PlayAction(); |
||
| 2033 | } |
||
| 2034 | |||
| 2035 | public static function playground(): Playground |
||
| 2036 | { |
||
| 2037 | return new Playground(); |
||
| 2038 | } |
||
| 2039 | |||
| 2040 | public static function plumber(): Plumber |
||
| 2041 | { |
||
| 2042 | return new Plumber(); |
||
| 2043 | } |
||
| 2044 | |||
| 2045 | public static function policeStation(): PoliceStation |
||
| 2046 | { |
||
| 2047 | return new PoliceStation(); |
||
| 2048 | } |
||
| 2049 | |||
| 2050 | public static function pond(): Pond |
||
| 2051 | { |
||
| 2052 | return new Pond(); |
||
| 2053 | } |
||
| 2054 | |||
| 2055 | public static function postOffice(): PostOffice |
||
| 2056 | { |
||
| 2057 | return new PostOffice(); |
||
| 2058 | } |
||
| 2059 | |||
| 2060 | public static function postalAddress(): PostalAddress |
||
| 2061 | { |
||
| 2062 | return new PostalAddress(); |
||
| 2063 | } |
||
| 2064 | |||
| 2065 | public static function prependAction(): PrependAction |
||
| 2066 | { |
||
| 2067 | return new PrependAction(); |
||
| 2068 | } |
||
| 2069 | |||
| 2070 | public static function preschool(): Preschool |
||
| 2071 | { |
||
| 2072 | return new Preschool(); |
||
| 2073 | } |
||
| 2074 | |||
| 2075 | public static function presentationDigitalDocument(): PresentationDigitalDocument |
||
| 2076 | { |
||
| 2077 | return new PresentationDigitalDocument(); |
||
| 2078 | } |
||
| 2079 | |||
| 2080 | public static function priceSpecification(): PriceSpecification |
||
| 2081 | { |
||
| 2082 | return new PriceSpecification(); |
||
| 2083 | } |
||
| 2084 | |||
| 2085 | public static function product(): Product |
||
| 2086 | { |
||
| 2087 | return new Product(); |
||
| 2088 | } |
||
| 2089 | |||
| 2090 | public static function productModel(): ProductModel |
||
| 2091 | { |
||
| 2092 | return new ProductModel(); |
||
| 2093 | } |
||
| 2094 | |||
| 2095 | public static function professionalService(): ProfessionalService |
||
| 2096 | { |
||
| 2097 | return new ProfessionalService(); |
||
| 2098 | } |
||
| 2099 | |||
| 2100 | public static function profilePage(): ProfilePage |
||
| 2101 | { |
||
| 2102 | return new ProfilePage(); |
||
| 2103 | } |
||
| 2104 | |||
| 2105 | public static function programMembership(): ProgramMembership |
||
| 2106 | { |
||
| 2107 | return new ProgramMembership(); |
||
| 2108 | } |
||
| 2109 | |||
| 2110 | public static function propertyValue(): PropertyValue |
||
| 2111 | { |
||
| 2112 | return new PropertyValue(); |
||
| 2113 | } |
||
| 2114 | |||
| 2115 | public static function propertyValueSpecification(): PropertyValueSpecification |
||
| 2116 | { |
||
| 2117 | return new PropertyValueSpecification(); |
||
| 2118 | } |
||
| 2119 | |||
| 2120 | public static function publicSwimmingPool(): PublicSwimmingPool |
||
| 2121 | { |
||
| 2122 | return new PublicSwimmingPool(); |
||
| 2123 | } |
||
| 2124 | |||
| 2125 | public static function publicationEvent(): PublicationEvent |
||
| 2126 | { |
||
| 2127 | return new PublicationEvent(); |
||
| 2128 | } |
||
| 2129 | |||
| 2130 | public static function publicationIssue(): PublicationIssue |
||
| 2131 | { |
||
| 2132 | return new PublicationIssue(); |
||
| 2133 | } |
||
| 2134 | |||
| 2135 | public static function publicationVolume(): PublicationVolume |
||
| 2136 | { |
||
| 2137 | return new PublicationVolume(); |
||
| 2138 | } |
||
| 2139 | |||
| 2140 | public static function qAPage(): QAPage |
||
| 2141 | { |
||
| 2142 | return new QAPage(); |
||
| 2143 | } |
||
| 2144 | |||
| 2145 | public static function qualitativeValue(): QualitativeValue |
||
| 2146 | { |
||
| 2147 | return new QualitativeValue(); |
||
| 2148 | } |
||
| 2149 | |||
| 2150 | public static function quantitativeValue(): QuantitativeValue |
||
| 2151 | { |
||
| 2152 | return new QuantitativeValue(); |
||
| 2153 | } |
||
| 2154 | |||
| 2155 | public static function quantity(): Quantity |
||
| 2156 | { |
||
| 2157 | return new Quantity(); |
||
| 2158 | } |
||
| 2159 | |||
| 2160 | public static function question(): Question |
||
| 2161 | { |
||
| 2162 | return new Question(); |
||
| 2163 | } |
||
| 2164 | |||
| 2165 | public static function quoteAction(): QuoteAction |
||
| 2166 | { |
||
| 2167 | return new QuoteAction(); |
||
| 2168 | } |
||
| 2169 | |||
| 2170 | public static function rVPark(): RVPark |
||
| 2171 | { |
||
| 2172 | return new RVPark(); |
||
| 2173 | } |
||
| 2174 | |||
| 2175 | public static function radioChannel(): RadioChannel |
||
| 2176 | { |
||
| 2177 | return new RadioChannel(); |
||
| 2178 | } |
||
| 2179 | |||
| 2180 | public static function radioClip(): RadioClip |
||
| 2181 | { |
||
| 2182 | return new RadioClip(); |
||
| 2183 | } |
||
| 2184 | |||
| 2185 | public static function radioEpisode(): RadioEpisode |
||
| 2186 | { |
||
| 2187 | return new RadioEpisode(); |
||
| 2188 | } |
||
| 2189 | |||
| 2190 | public static function radioSeason(): RadioSeason |
||
| 2191 | { |
||
| 2192 | return new RadioSeason(); |
||
| 2193 | } |
||
| 2194 | |||
| 2195 | public static function radioSeries(): RadioSeries |
||
| 2196 | { |
||
| 2197 | return new RadioSeries(); |
||
| 2198 | } |
||
| 2199 | |||
| 2200 | public static function radioStation(): RadioStation |
||
| 2201 | { |
||
| 2202 | return new RadioStation(); |
||
| 2203 | } |
||
| 2204 | |||
| 2205 | public static function rating(): Rating |
||
| 2206 | { |
||
| 2207 | return new Rating(); |
||
| 2208 | } |
||
| 2209 | |||
| 2210 | public static function reactAction(): ReactAction |
||
| 2211 | { |
||
| 2212 | return new ReactAction(); |
||
| 2213 | } |
||
| 2214 | |||
| 2215 | public static function readAction(): ReadAction |
||
| 2216 | { |
||
| 2217 | return new ReadAction(); |
||
| 2218 | } |
||
| 2219 | |||
| 2220 | public static function realEstateAgent(): RealEstateAgent |
||
| 2221 | { |
||
| 2222 | return new RealEstateAgent(); |
||
| 2223 | } |
||
| 2224 | |||
| 2225 | public static function receiveAction(): ReceiveAction |
||
| 2226 | { |
||
| 2227 | return new ReceiveAction(); |
||
| 2228 | } |
||
| 2229 | |||
| 2230 | public static function recipe(): Recipe |
||
| 2231 | { |
||
| 2232 | return new Recipe(); |
||
| 2233 | } |
||
| 2234 | |||
| 2235 | public static function recyclingCenter(): RecyclingCenter |
||
| 2236 | { |
||
| 2237 | return new RecyclingCenter(); |
||
| 2238 | } |
||
| 2239 | |||
| 2240 | public static function registerAction(): RegisterAction |
||
| 2241 | { |
||
| 2242 | return new RegisterAction(); |
||
| 2243 | } |
||
| 2244 | |||
| 2245 | public static function rejectAction(): RejectAction |
||
| 2246 | { |
||
| 2247 | return new RejectAction(); |
||
| 2248 | } |
||
| 2249 | |||
| 2250 | public static function rentAction(): RentAction |
||
| 2251 | { |
||
| 2252 | return new RentAction(); |
||
| 2253 | } |
||
| 2254 | |||
| 2255 | public static function rentalCarReservation(): RentalCarReservation |
||
| 2256 | { |
||
| 2257 | return new RentalCarReservation(); |
||
| 2258 | } |
||
| 2259 | |||
| 2260 | public static function replaceAction(): ReplaceAction |
||
| 2264 | |||
| 2265 | public static function replyAction(): ReplyAction |
||
| 2269 | |||
| 2270 | public static function report(): Report |
||
| 2271 | { |
||
| 2272 | return new Report(); |
||
| 2273 | } |
||
| 2274 | |||
| 2275 | public static function reservation(): Reservation |
||
| 2276 | { |
||
| 2277 | return new Reservation(); |
||
| 2278 | } |
||
| 2279 | |||
| 2280 | public static function reservationPackage(): ReservationPackage |
||
| 2281 | { |
||
| 2282 | return new ReservationPackage(); |
||
| 2283 | } |
||
| 2284 | |||
| 2285 | public static function reservationStatusType(): ReservationStatusType |
||
| 2286 | { |
||
| 2287 | return new ReservationStatusType(); |
||
| 2288 | } |
||
| 2289 | |||
| 2290 | public static function reserveAction(): ReserveAction |
||
| 2291 | { |
||
| 2292 | return new ReserveAction(); |
||
| 2293 | } |
||
| 2294 | |||
| 2295 | public static function reservoir(): Reservoir |
||
| 2296 | { |
||
| 2297 | return new Reservoir(); |
||
| 2298 | } |
||
| 2299 | |||
| 2300 | public static function residence(): Residence |
||
| 2301 | { |
||
| 2302 | return new Residence(); |
||
| 2303 | } |
||
| 2304 | |||
| 2305 | public static function resort(): Resort |
||
| 2306 | { |
||
| 2307 | return new Resort(); |
||
| 2308 | } |
||
| 2309 | |||
| 2310 | public static function restaurant(): Restaurant |
||
| 2311 | { |
||
| 2312 | return new Restaurant(); |
||
| 2313 | } |
||
| 2314 | |||
| 2315 | public static function restrictedDiet(): RestrictedDiet |
||
| 2316 | { |
||
| 2317 | return new RestrictedDiet(); |
||
| 2318 | } |
||
| 2319 | |||
| 2320 | public static function resumeAction(): ResumeAction |
||
| 2321 | { |
||
| 2322 | return new ResumeAction(); |
||
| 2323 | } |
||
| 2324 | |||
| 2325 | public static function returnAction(): ReturnAction |
||
| 2326 | { |
||
| 2327 | return new ReturnAction(); |
||
| 2328 | } |
||
| 2329 | |||
| 2330 | public static function review(): Review |
||
| 2331 | { |
||
| 2332 | return new Review(); |
||
| 2333 | } |
||
| 2334 | |||
| 2335 | public static function reviewAction(): ReviewAction |
||
| 2336 | { |
||
| 2337 | return new ReviewAction(); |
||
| 2338 | } |
||
| 2339 | |||
| 2340 | public static function riverBodyOfWater(): RiverBodyOfWater |
||
| 2341 | { |
||
| 2342 | return new RiverBodyOfWater(); |
||
| 2343 | } |
||
| 2344 | |||
| 2345 | public static function role(): Role |
||
| 2346 | { |
||
| 2347 | return new Role(); |
||
| 2348 | } |
||
| 2349 | |||
| 2350 | public static function roofingContractor(): RoofingContractor |
||
| 2351 | { |
||
| 2352 | return new RoofingContractor(); |
||
| 2353 | } |
||
| 2354 | |||
| 2355 | public static function room(): Room |
||
| 2356 | { |
||
| 2357 | return new Room(); |
||
| 2358 | } |
||
| 2359 | |||
| 2360 | public static function rsvpAction(): RsvpAction |
||
| 2361 | { |
||
| 2362 | return new RsvpAction(); |
||
| 2363 | } |
||
| 2364 | |||
| 2365 | public static function rsvpResponseType(): RsvpResponseType |
||
| 2366 | { |
||
| 2367 | return new RsvpResponseType(); |
||
| 2368 | } |
||
| 2369 | |||
| 2370 | public static function saleEvent(): SaleEvent |
||
| 2371 | { |
||
| 2372 | return new SaleEvent(); |
||
| 2373 | } |
||
| 2374 | |||
| 2375 | public static function scheduleAction(): ScheduleAction |
||
| 2376 | { |
||
| 2377 | return new ScheduleAction(); |
||
| 2378 | } |
||
| 2379 | |||
| 2380 | public static function scholarlyArticle(): ScholarlyArticle |
||
| 2381 | { |
||
| 2382 | return new ScholarlyArticle(); |
||
| 2383 | } |
||
| 2384 | |||
| 2385 | public static function school(): School |
||
| 2386 | { |
||
| 2387 | return new School(); |
||
| 2388 | } |
||
| 2389 | |||
| 2390 | public static function screeningEvent(): ScreeningEvent |
||
| 2391 | { |
||
| 2392 | return new ScreeningEvent(); |
||
| 2393 | } |
||
| 2394 | |||
| 2395 | public static function sculpture(): Sculpture |
||
| 2396 | { |
||
| 2397 | return new Sculpture(); |
||
| 2398 | } |
||
| 2399 | |||
| 2400 | public static function seaBodyOfWater(): SeaBodyOfWater |
||
| 2401 | { |
||
| 2402 | return new SeaBodyOfWater(); |
||
| 2403 | } |
||
| 2404 | |||
| 2405 | public static function searchAction(): SearchAction |
||
| 2406 | { |
||
| 2407 | return new SearchAction(); |
||
| 2408 | } |
||
| 2409 | |||
| 2410 | public static function searchResultsPage(): SearchResultsPage |
||
| 2411 | { |
||
| 2412 | return new SearchResultsPage(); |
||
| 2413 | } |
||
| 2414 | |||
| 2415 | public static function season(): Season |
||
| 2416 | { |
||
| 2417 | return new Season(); |
||
| 2418 | } |
||
| 2419 | |||
| 2420 | public static function seat(): Seat |
||
| 2421 | { |
||
| 2422 | return new Seat(); |
||
| 2423 | } |
||
| 2424 | |||
| 2425 | public static function selfStorage(): SelfStorage |
||
| 2426 | { |
||
| 2427 | return new SelfStorage(); |
||
| 2428 | } |
||
| 2429 | |||
| 2430 | public static function sellAction(): SellAction |
||
| 2431 | { |
||
| 2432 | return new SellAction(); |
||
| 2433 | } |
||
| 2434 | |||
| 2435 | public static function sendAction(): SendAction |
||
| 2436 | { |
||
| 2437 | return new SendAction(); |
||
| 2438 | } |
||
| 2439 | |||
| 2440 | public static function series(): Series |
||
| 2441 | { |
||
| 2442 | return new Series(); |
||
| 2443 | } |
||
| 2444 | |||
| 2445 | public static function service(): Service |
||
| 2446 | { |
||
| 2447 | return new Service(); |
||
| 2448 | } |
||
| 2449 | |||
| 2450 | public static function serviceChannel(): ServiceChannel |
||
| 2451 | { |
||
| 2452 | return new ServiceChannel(); |
||
| 2453 | } |
||
| 2454 | |||
| 2455 | public static function shareAction(): ShareAction |
||
| 2456 | { |
||
| 2457 | return new ShareAction(); |
||
| 2458 | } |
||
| 2459 | |||
| 2460 | public static function shoeStore(): ShoeStore |
||
| 2461 | { |
||
| 2462 | return new ShoeStore(); |
||
| 2463 | } |
||
| 2464 | |||
| 2465 | public static function shoppingCenter(): ShoppingCenter |
||
| 2466 | { |
||
| 2467 | return new ShoppingCenter(); |
||
| 2468 | } |
||
| 2469 | |||
| 2470 | public static function singleFamilyResidence(): SingleFamilyResidence |
||
| 2471 | { |
||
| 2472 | return new SingleFamilyResidence(); |
||
| 2473 | } |
||
| 2474 | |||
| 2475 | public static function siteNavigationElement(): SiteNavigationElement |
||
| 2476 | { |
||
| 2477 | return new SiteNavigationElement(); |
||
| 2478 | } |
||
| 2479 | |||
| 2480 | public static function skiResort(): SkiResort |
||
| 2481 | { |
||
| 2482 | return new SkiResort(); |
||
| 2483 | } |
||
| 2484 | |||
| 2485 | public static function socialEvent(): SocialEvent |
||
| 2486 | { |
||
| 2487 | return new SocialEvent(); |
||
| 2488 | } |
||
| 2489 | |||
| 2490 | public static function socialMediaPosting(): SocialMediaPosting |
||
| 2491 | { |
||
| 2492 | return new SocialMediaPosting(); |
||
| 2493 | } |
||
| 2494 | |||
| 2495 | public static function softwareApplication(): SoftwareApplication |
||
| 2496 | { |
||
| 2497 | return new SoftwareApplication(); |
||
| 2498 | } |
||
| 2499 | |||
| 2500 | public static function softwareSourceCode(): SoftwareSourceCode |
||
| 2501 | { |
||
| 2502 | return new SoftwareSourceCode(); |
||
| 2503 | } |
||
| 2504 | |||
| 2505 | public static function someProducts(): SomeProducts |
||
| 2506 | { |
||
| 2507 | return new SomeProducts(); |
||
| 2508 | } |
||
| 2509 | |||
| 2510 | public static function specialty(): Specialty |
||
| 2511 | { |
||
| 2512 | return new Specialty(); |
||
| 2513 | } |
||
| 2514 | |||
| 2515 | public static function sportingGoodsStore(): SportingGoodsStore |
||
| 2516 | { |
||
| 2517 | return new SportingGoodsStore(); |
||
| 2518 | } |
||
| 2519 | |||
| 2520 | public static function sportsActivityLocation(): SportsActivityLocation |
||
| 2521 | { |
||
| 2522 | return new SportsActivityLocation(); |
||
| 2523 | } |
||
| 2524 | |||
| 2525 | public static function sportsClub(): SportsClub |
||
| 2526 | { |
||
| 2527 | return new SportsClub(); |
||
| 2528 | } |
||
| 2529 | |||
| 2530 | public static function sportsEvent(): SportsEvent |
||
| 2531 | { |
||
| 2532 | return new SportsEvent(); |
||
| 2533 | } |
||
| 2534 | |||
| 2535 | public static function sportsOrganization(): SportsOrganization |
||
| 2536 | { |
||
| 2537 | return new SportsOrganization(); |
||
| 2538 | } |
||
| 2539 | |||
| 2540 | public static function sportsTeam(): SportsTeam |
||
| 2541 | { |
||
| 2542 | return new SportsTeam(); |
||
| 2543 | } |
||
| 2544 | |||
| 2545 | public static function spreadsheetDigitalDocument(): SpreadsheetDigitalDocument |
||
| 2546 | { |
||
| 2547 | return new SpreadsheetDigitalDocument(); |
||
| 2548 | } |
||
| 2549 | |||
| 2550 | public static function stadiumOrArena(): StadiumOrArena |
||
| 2551 | { |
||
| 2552 | return new StadiumOrArena(); |
||
| 2553 | } |
||
| 2554 | |||
| 2555 | public static function state(): State |
||
| 2556 | { |
||
| 2557 | return new State(); |
||
| 2558 | } |
||
| 2559 | |||
| 2560 | public static function steeringPositionValue(): SteeringPositionValue |
||
| 2561 | { |
||
| 2562 | return new SteeringPositionValue(); |
||
| 2563 | } |
||
| 2564 | |||
| 2565 | public static function store(): Store |
||
| 2566 | { |
||
| 2567 | return new Store(); |
||
| 2568 | } |
||
| 2569 | |||
| 2570 | public static function structuredValue(): StructuredValue |
||
| 2571 | { |
||
| 2572 | return new StructuredValue(); |
||
| 2573 | } |
||
| 2574 | |||
| 2575 | public static function subscribeAction(): SubscribeAction |
||
| 2576 | { |
||
| 2577 | return new SubscribeAction(); |
||
| 2578 | } |
||
| 2579 | |||
| 2580 | public static function subwayStation(): SubwayStation |
||
| 2581 | { |
||
| 2582 | return new SubwayStation(); |
||
| 2583 | } |
||
| 2584 | |||
| 2585 | public static function suite(): Suite |
||
| 2586 | { |
||
| 2587 | return new Suite(); |
||
| 2588 | } |
||
| 2589 | |||
| 2590 | public static function suspendAction(): SuspendAction |
||
| 2591 | { |
||
| 2592 | return new SuspendAction(); |
||
| 2593 | } |
||
| 2594 | |||
| 2595 | public static function synagogue(): Synagogue |
||
| 2596 | { |
||
| 2597 | return new Synagogue(); |
||
| 2598 | } |
||
| 2599 | |||
| 2600 | public static function tVClip(): TVClip |
||
| 2601 | { |
||
| 2602 | return new TVClip(); |
||
| 2603 | } |
||
| 2604 | |||
| 2605 | public static function tVEpisode(): TVEpisode |
||
| 2606 | { |
||
| 2607 | return new TVEpisode(); |
||
| 2608 | } |
||
| 2609 | |||
| 2610 | public static function tVSeason(): TVSeason |
||
| 2611 | { |
||
| 2612 | return new TVSeason(); |
||
| 2613 | } |
||
| 2614 | |||
| 2615 | public static function tVSeries(): TVSeries |
||
| 2616 | { |
||
| 2617 | return new TVSeries(); |
||
| 2618 | } |
||
| 2619 | |||
| 2620 | public static function table(): Table |
||
| 2621 | { |
||
| 2622 | return new Table(); |
||
| 2623 | } |
||
| 2624 | |||
| 2625 | public static function takeAction(): TakeAction |
||
| 2626 | { |
||
| 2627 | return new TakeAction(); |
||
| 2628 | } |
||
| 2629 | |||
| 2630 | public static function tattooParlor(): TattooParlor |
||
| 2631 | { |
||
| 2632 | return new TattooParlor(); |
||
| 2633 | } |
||
| 2634 | |||
| 2635 | public static function taxi(): Taxi |
||
| 2636 | { |
||
| 2637 | return new Taxi(); |
||
| 2638 | } |
||
| 2639 | |||
| 2640 | public static function taxiReservation(): TaxiReservation |
||
| 2641 | { |
||
| 2642 | return new TaxiReservation(); |
||
| 2643 | } |
||
| 2644 | |||
| 2645 | public static function taxiService(): TaxiService |
||
| 2646 | { |
||
| 2647 | return new TaxiService(); |
||
| 2648 | } |
||
| 2649 | |||
| 2650 | public static function taxiStand(): TaxiStand |
||
| 2651 | { |
||
| 2652 | return new TaxiStand(); |
||
| 2653 | } |
||
| 2654 | |||
| 2655 | public static function techArticle(): TechArticle |
||
| 2656 | { |
||
| 2657 | return new TechArticle(); |
||
| 2658 | } |
||
| 2659 | |||
| 2660 | public static function televisionChannel(): TelevisionChannel |
||
| 2661 | { |
||
| 2662 | return new TelevisionChannel(); |
||
| 2663 | } |
||
| 2664 | |||
| 2665 | public static function televisionStation(): TelevisionStation |
||
| 2666 | { |
||
| 2667 | return new TelevisionStation(); |
||
| 2668 | } |
||
| 2669 | |||
| 2670 | public static function tennisComplex(): TennisComplex |
||
| 2671 | { |
||
| 2672 | return new TennisComplex(); |
||
| 2673 | } |
||
| 2674 | |||
| 2675 | public static function textDigitalDocument(): TextDigitalDocument |
||
| 2676 | { |
||
| 2677 | return new TextDigitalDocument(); |
||
| 2678 | } |
||
| 2679 | |||
| 2680 | public static function theaterEvent(): TheaterEvent |
||
| 2681 | { |
||
| 2682 | return new TheaterEvent(); |
||
| 2683 | } |
||
| 2684 | |||
| 2685 | public static function theaterGroup(): TheaterGroup |
||
| 2686 | { |
||
| 2687 | return new TheaterGroup(); |
||
| 2688 | } |
||
| 2689 | |||
| 2690 | public static function thing(): Thing |
||
| 2691 | { |
||
| 2692 | return new Thing(); |
||
| 2693 | } |
||
| 2694 | |||
| 2695 | public static function ticket(): Ticket |
||
| 2696 | { |
||
| 2697 | return new Ticket(); |
||
| 2698 | } |
||
| 2699 | |||
| 2700 | public static function tieAction(): TieAction |
||
| 2701 | { |
||
| 2702 | return new TieAction(); |
||
| 2703 | } |
||
| 2704 | |||
| 2705 | public static function tipAction(): TipAction |
||
| 2706 | { |
||
| 2707 | return new TipAction(); |
||
| 2708 | } |
||
| 2709 | |||
| 2710 | public static function tireShop(): TireShop |
||
| 2711 | { |
||
| 2712 | return new TireShop(); |
||
| 2713 | } |
||
| 2714 | |||
| 2715 | public static function touristAttraction(): TouristAttraction |
||
| 2716 | { |
||
| 2717 | return new TouristAttraction(); |
||
| 2718 | } |
||
| 2719 | |||
| 2720 | public static function touristInformationCenter(): TouristInformationCenter |
||
| 2721 | { |
||
| 2722 | return new TouristInformationCenter(); |
||
| 2723 | } |
||
| 2724 | |||
| 2725 | public static function toyStore(): ToyStore |
||
| 2726 | { |
||
| 2727 | return new ToyStore(); |
||
| 2728 | } |
||
| 2729 | |||
| 2730 | public static function trackAction(): TrackAction |
||
| 2731 | { |
||
| 2732 | return new TrackAction(); |
||
| 2733 | } |
||
| 2734 | |||
| 2735 | public static function tradeAction(): TradeAction |
||
| 2736 | { |
||
| 2737 | return new TradeAction(); |
||
| 2738 | } |
||
| 2739 | |||
| 2740 | public static function trainReservation(): TrainReservation |
||
| 2741 | { |
||
| 2742 | return new TrainReservation(); |
||
| 2743 | } |
||
| 2744 | |||
| 2745 | public static function trainStation(): TrainStation |
||
| 2746 | { |
||
| 2747 | return new TrainStation(); |
||
| 2748 | } |
||
| 2749 | |||
| 2750 | public static function trainTrip(): TrainTrip |
||
| 2751 | { |
||
| 2752 | return new TrainTrip(); |
||
| 2753 | } |
||
| 2754 | |||
| 2755 | public static function transferAction(): TransferAction |
||
| 2756 | { |
||
| 2757 | return new TransferAction(); |
||
| 2758 | } |
||
| 2759 | |||
| 2760 | public static function travelAction(): TravelAction |
||
| 2761 | { |
||
| 2762 | return new TravelAction(); |
||
| 2763 | } |
||
| 2764 | |||
| 2765 | public static function travelAgency(): TravelAgency |
||
| 2766 | { |
||
| 2767 | return new TravelAgency(); |
||
| 2768 | } |
||
| 2769 | |||
| 2770 | public static function trip(): Trip |
||
| 2771 | { |
||
| 2772 | return new Trip(); |
||
| 2773 | } |
||
| 2774 | |||
| 2775 | public static function typeAndQuantityNode(): TypeAndQuantityNode |
||
| 2776 | { |
||
| 2777 | return new TypeAndQuantityNode(); |
||
| 2778 | } |
||
| 2779 | |||
| 2780 | public static function unRegisterAction(): UnRegisterAction |
||
| 2781 | { |
||
| 2782 | return new UnRegisterAction(); |
||
| 2783 | } |
||
| 2784 | |||
| 2785 | public static function unitPriceSpecification(): UnitPriceSpecification |
||
| 2786 | { |
||
| 2787 | return new UnitPriceSpecification(); |
||
| 2788 | } |
||
| 2789 | |||
| 2790 | public static function updateAction(): UpdateAction |
||
| 2791 | { |
||
| 2792 | return new UpdateAction(); |
||
| 2793 | } |
||
| 2794 | |||
| 2795 | public static function useAction(): UseAction |
||
| 2796 | { |
||
| 2797 | return new UseAction(); |
||
| 2798 | } |
||
| 2799 | |||
| 2800 | public static function userBlocks(): UserBlocks |
||
| 2801 | { |
||
| 2802 | return new UserBlocks(); |
||
| 2803 | } |
||
| 2804 | |||
| 2805 | public static function userCheckins(): UserCheckins |
||
| 2806 | { |
||
| 2807 | return new UserCheckins(); |
||
| 2808 | } |
||
| 2809 | |||
| 2810 | public static function userComments(): UserComments |
||
| 2811 | { |
||
| 2812 | return new UserComments(); |
||
| 2813 | } |
||
| 2814 | |||
| 2815 | public static function userDownloads(): UserDownloads |
||
| 2816 | { |
||
| 2817 | return new UserDownloads(); |
||
| 2818 | } |
||
| 2819 | |||
| 2820 | public static function userInteraction(): UserInteraction |
||
| 2821 | { |
||
| 2822 | return new UserInteraction(); |
||
| 2823 | } |
||
| 2824 | |||
| 2825 | public static function userLikes(): UserLikes |
||
| 2829 | |||
| 2830 | public static function userPageVisits(): UserPageVisits |
||
| 2834 | |||
| 2835 | public static function userPlays(): UserPlays |
||
| 2839 | |||
| 2840 | public static function userPlusOnes(): UserPlusOnes |
||
| 2844 | |||
| 2845 | public static function userTweets(): UserTweets |
||
| 2849 | |||
| 2850 | public static function vehicle(): Vehicle |
||
| 2854 | |||
| 2855 | public static function videoGallery(): VideoGallery |
||
| 2859 | |||
| 2860 | public static function videoGame(): VideoGame |
||
| 2864 | |||
| 2865 | public static function videoGameClip(): VideoGameClip |
||
| 2869 | |||
| 2870 | public static function videoGameSeries(): VideoGameSeries |
||
| 2874 | |||
| 2875 | public static function videoObject(): VideoObject |
||
| 2879 | |||
| 2880 | public static function viewAction(): ViewAction |
||
| 2884 | |||
| 2885 | public static function visualArtsEvent(): VisualArtsEvent |
||
| 2889 | |||
| 2890 | public static function visualArtwork(): VisualArtwork |
||
| 2894 | |||
| 2895 | public static function volcano(): Volcano |
||
| 2899 | |||
| 2900 | public static function voteAction(): VoteAction |
||
| 2904 | |||
| 2905 | public static function wPAdBlock(): WPAdBlock |
||
| 2909 | |||
| 2910 | public static function wPFooter(): WPFooter |
||
| 2914 | |||
| 2915 | public static function wPHeader(): WPHeader |
||
| 2919 | |||
| 2920 | public static function wPSideBar(): WPSideBar |
||
| 2924 | |||
| 2925 | public static function wantAction(): WantAction |
||
| 2929 | |||
| 2930 | public static function warrantyPromise(): WarrantyPromise |
||
| 2934 | |||
| 2935 | public static function warrantyScope(): WarrantyScope |
||
| 2939 | |||
| 2940 | public static function watchAction(): WatchAction |
||
| 2944 | |||
| 2945 | public static function waterfall(): Waterfall |
||
| 2949 | |||
| 2950 | public static function wearAction(): WearAction |
||
| 2954 | |||
| 2955 | public static function webApplication(): WebApplication |
||
| 2959 | |||
| 2960 | public static function webPage(): WebPage |
||
| 2964 | |||
| 2965 | public static function webPageElement(): WebPageElement |
||
| 2969 | |||
| 2970 | public static function webSite(): WebSite |
||
| 2974 | |||
| 2975 | public static function wholesaleStore(): WholesaleStore |
||
| 2979 | |||
| 2980 | public static function winAction(): WinAction |
||
| 2984 | |||
| 2985 | public static function winery(): Winery |
||
| 2989 | |||
| 2990 | public static function writeAction(): WriteAction |
||
| 2994 | |||
| 2995 | public static function zoo(): Zoo |
||
| 2999 | |||
| 3000 | } |
||
| 3001 |