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 aMRadioChannel(): AMRadioChannel |
||
| 14 | |||
| 15 | public static function aPIReference(): APIReference |
||
| 19 | |||
| 20 | public static function aboutPage(): AboutPage |
||
| 24 | |||
| 25 | public static function acceptAction(): AcceptAction |
||
| 29 | |||
| 30 | public static function accommodation(): Accommodation |
||
| 34 | |||
| 35 | public static function accountingService(): AccountingService |
||
| 39 | |||
| 40 | public static function achieveAction(): AchieveAction |
||
| 44 | |||
| 45 | public static function action(): Action |
||
| 49 | |||
| 50 | public static function actionAccessSpecification(): ActionAccessSpecification |
||
| 54 | |||
| 55 | public static function actionStatusType(): ActionStatusType |
||
| 59 | |||
| 60 | public static function activateAction(): ActivateAction |
||
| 64 | |||
| 65 | public static function addAction(): AddAction |
||
| 69 | |||
| 70 | public static function administrativeArea(): AdministrativeArea |
||
| 74 | |||
| 75 | public static function adultEntertainment(): AdultEntertainment |
||
| 79 | |||
| 80 | public static function aggregateOffer(): AggregateOffer |
||
| 84 | |||
| 85 | public static function aggregateRating(): AggregateRating |
||
| 89 | |||
| 90 | public static function agreeAction(): AgreeAction |
||
| 94 | |||
| 95 | public static function airline(): Airline |
||
| 99 | |||
| 100 | public static function airport(): Airport |
||
| 104 | |||
| 105 | public static function alignmentObject(): AlignmentObject |
||
| 109 | |||
| 110 | public static function allocateAction(): AllocateAction |
||
| 114 | |||
| 115 | public static function amusementPark(): AmusementPark |
||
| 119 | |||
| 120 | public static function animalShelter(): AnimalShelter |
||
| 124 | |||
| 125 | public static function answer(): Answer |
||
| 129 | |||
| 130 | public static function apartment(): Apartment |
||
| 134 | |||
| 135 | public static function apartmentComplex(): ApartmentComplex |
||
| 139 | |||
| 140 | public static function appendAction(): AppendAction |
||
| 144 | |||
| 145 | public static function applyAction(): ApplyAction |
||
| 149 | |||
| 150 | public static function aquarium(): Aquarium |
||
| 154 | |||
| 155 | public static function arriveAction(): ArriveAction |
||
| 159 | |||
| 160 | public static function artGallery(): ArtGallery |
||
| 164 | |||
| 165 | public static function article(): Article |
||
| 169 | |||
| 170 | public static function askAction(): AskAction |
||
| 174 | |||
| 175 | public static function assessAction(): AssessAction |
||
| 179 | |||
| 180 | public static function assignAction(): AssignAction |
||
| 184 | |||
| 185 | public static function attorney(): Attorney |
||
| 189 | |||
| 190 | public static function audience(): Audience |
||
| 194 | |||
| 195 | public static function audioObject(): AudioObject |
||
| 199 | |||
| 200 | public static function authorizeAction(): AuthorizeAction |
||
| 204 | |||
| 205 | public static function autoBodyShop(): AutoBodyShop |
||
| 209 | |||
| 210 | public static function autoDealer(): AutoDealer |
||
| 214 | |||
| 215 | public static function autoPartsStore(): AutoPartsStore |
||
| 219 | |||
| 220 | public static function autoRental(): AutoRental |
||
| 224 | |||
| 225 | public static function autoRepair(): AutoRepair |
||
| 229 | |||
| 230 | public static function autoWash(): AutoWash |
||
| 234 | |||
| 235 | public static function automatedTeller(): AutomatedTeller |
||
| 239 | |||
| 240 | public static function automotiveBusiness(): AutomotiveBusiness |
||
| 244 | |||
| 245 | public static function bakery(): Bakery |
||
| 249 | |||
| 250 | public static function bankAccount(): BankAccount |
||
| 254 | |||
| 255 | public static function bankOrCreditUnion(): BankOrCreditUnion |
||
| 259 | |||
| 260 | public static function barOrPub(): BarOrPub |
||
| 264 | |||
| 265 | public static function barcode(): Barcode |
||
| 269 | |||
| 270 | public static function beach(): Beach |
||
| 274 | |||
| 275 | public static function beautySalon(): BeautySalon |
||
| 279 | |||
| 280 | public static function bedAndBreakfast(): BedAndBreakfast |
||
| 284 | |||
| 285 | public static function bedDetails(): BedDetails |
||
| 289 | |||
| 290 | public static function bedType(): BedType |
||
| 294 | |||
| 295 | public static function befriendAction(): BefriendAction |
||
| 299 | |||
| 300 | public static function bikeStore(): BikeStore |
||
| 304 | |||
| 305 | public static function blog(): Blog |
||
| 309 | |||
| 310 | public static function blogPosting(): BlogPosting |
||
| 314 | |||
| 315 | public static function boardingPolicyType(): BoardingPolicyType |
||
| 319 | |||
| 320 | public static function bodyOfWater(): BodyOfWater |
||
| 324 | |||
| 325 | public static function book(): Book |
||
| 329 | |||
| 330 | public static function bookFormatType(): BookFormatType |
||
| 334 | |||
| 335 | public static function bookSeries(): BookSeries |
||
| 339 | |||
| 340 | public static function bookStore(): BookStore |
||
| 344 | |||
| 345 | public static function bookmarkAction(): BookmarkAction |
||
| 349 | |||
| 350 | public static function borrowAction(): BorrowAction |
||
| 354 | |||
| 355 | public static function bowlingAlley(): BowlingAlley |
||
| 359 | |||
| 360 | public static function brand(): Brand |
||
| 364 | |||
| 365 | public static function breadcrumbList(): BreadcrumbList |
||
| 369 | |||
| 370 | public static function brewery(): Brewery |
||
| 374 | |||
| 375 | public static function bridge(): Bridge |
||
| 379 | |||
| 380 | public static function broadcastChannel(): BroadcastChannel |
||
| 384 | |||
| 385 | public static function broadcastEvent(): BroadcastEvent |
||
| 389 | |||
| 390 | public static function broadcastFrequencySpecification(): BroadcastFrequencySpecification |
||
| 394 | |||
| 395 | public static function broadcastService(): BroadcastService |
||
| 399 | |||
| 400 | public static function buddhistTemple(): BuddhistTemple |
||
| 404 | |||
| 405 | public static function busReservation(): BusReservation |
||
| 409 | |||
| 410 | public static function busStation(): BusStation |
||
| 414 | |||
| 415 | public static function busStop(): BusStop |
||
| 419 | |||
| 420 | public static function busTrip(): BusTrip |
||
| 424 | |||
| 425 | public static function businessAudience(): BusinessAudience |
||
| 429 | |||
| 430 | public static function businessEntityType(): BusinessEntityType |
||
| 434 | |||
| 435 | public static function businessEvent(): BusinessEvent |
||
| 439 | |||
| 440 | public static function businessFunction(): BusinessFunction |
||
| 444 | |||
| 445 | public static function buyAction(): BuyAction |
||
| 449 | |||
| 450 | public static function cableOrSatelliteService(): CableOrSatelliteService |
||
| 454 | |||
| 455 | public static function cafeOrCoffeeShop(): CafeOrCoffeeShop |
||
| 459 | |||
| 460 | public static function campground(): Campground |
||
| 464 | |||
| 465 | public static function campingPitch(): CampingPitch |
||
| 469 | |||
| 470 | public static function canal(): Canal |
||
| 474 | |||
| 475 | public static function cancelAction(): CancelAction |
||
| 479 | |||
| 480 | public static function car(): Car |
||
| 484 | |||
| 485 | public static function casino(): Casino |
||
| 489 | |||
| 490 | public static function catholicChurch(): CatholicChurch |
||
| 494 | |||
| 495 | public static function cemetery(): Cemetery |
||
| 499 | |||
| 500 | public static function checkAction(): CheckAction |
||
| 504 | |||
| 505 | public static function checkInAction(): CheckInAction |
||
| 509 | |||
| 510 | public static function checkOutAction(): CheckOutAction |
||
| 514 | |||
| 515 | public static function checkoutPage(): CheckoutPage |
||
| 519 | |||
| 520 | public static function childCare(): ChildCare |
||
| 524 | |||
| 525 | public static function childrensEvent(): ChildrensEvent |
||
| 529 | |||
| 530 | public static function chooseAction(): ChooseAction |
||
| 534 | |||
| 535 | public static function church(): Church |
||
| 539 | |||
| 540 | public static function city(): City |
||
| 544 | |||
| 545 | public static function cityHall(): CityHall |
||
| 549 | |||
| 550 | public static function civicStructure(): CivicStructure |
||
| 554 | |||
| 555 | public static function claimReview(): ClaimReview |
||
| 559 | |||
| 560 | public static function clip(): Clip |
||
| 564 | |||
| 565 | public static function clothingStore(): ClothingStore |
||
| 569 | |||
| 570 | public static function code(): Code |
||
| 574 | |||
| 575 | public static function collectionPage(): CollectionPage |
||
| 579 | |||
| 580 | public static function collegeOrUniversity(): CollegeOrUniversity |
||
| 584 | |||
| 585 | public static function comedyClub(): ComedyClub |
||
| 589 | |||
| 590 | public static function comedyEvent(): ComedyEvent |
||
| 594 | |||
| 595 | public static function comment(): Comment |
||
| 599 | |||
| 600 | public static function commentAction(): CommentAction |
||
| 604 | |||
| 605 | public static function communicateAction(): CommunicateAction |
||
| 609 | |||
| 610 | public static function compoundPriceSpecification(): CompoundPriceSpecification |
||
| 614 | |||
| 615 | public static function computerLanguage(): ComputerLanguage |
||
| 619 | |||
| 620 | public static function computerStore(): ComputerStore |
||
| 624 | |||
| 625 | public static function confirmAction(): ConfirmAction |
||
| 629 | |||
| 630 | public static function consumeAction(): ConsumeAction |
||
| 634 | |||
| 635 | public static function contactPage(): ContactPage |
||
| 639 | |||
| 640 | public static function contactPoint(): ContactPoint |
||
| 644 | |||
| 645 | public static function contactPointOption(): ContactPointOption |
||
| 649 | |||
| 650 | public static function continent(): Continent |
||
| 654 | |||
| 655 | public static function controlAction(): ControlAction |
||
| 659 | |||
| 660 | public static function convenienceStore(): ConvenienceStore |
||
| 664 | |||
| 665 | public static function conversation(): Conversation |
||
| 669 | |||
| 670 | public static function cookAction(): CookAction |
||
| 674 | |||
| 675 | public static function corporation(): Corporation |
||
| 679 | |||
| 680 | public static function country(): Country |
||
| 684 | |||
| 685 | public static function course(): Course |
||
| 689 | |||
| 690 | public static function courseInstance(): CourseInstance |
||
| 694 | |||
| 695 | public static function courthouse(): Courthouse |
||
| 699 | |||
| 700 | public static function createAction(): CreateAction |
||
| 704 | |||
| 705 | public static function creativeWork(): CreativeWork |
||
| 709 | |||
| 710 | public static function creativeWorkSeason(): CreativeWorkSeason |
||
| 714 | |||
| 715 | public static function creativeWorkSeries(): CreativeWorkSeries |
||
| 719 | |||
| 720 | public static function creditCard(): CreditCard |
||
| 724 | |||
| 725 | public static function crematorium(): Crematorium |
||
| 729 | |||
| 730 | public static function currencyConversionService(): CurrencyConversionService |
||
| 734 | |||
| 735 | public static function danceEvent(): DanceEvent |
||
| 739 | |||
| 740 | public static function danceGroup(): DanceGroup |
||
| 744 | |||
| 745 | public static function dataCatalog(): DataCatalog |
||
| 749 | |||
| 750 | public static function dataDownload(): DataDownload |
||
| 754 | |||
| 755 | public static function dataFeed(): DataFeed |
||
| 759 | |||
| 760 | public static function dataFeedItem(): DataFeedItem |
||
| 764 | |||
| 765 | public static function dataset(): Dataset |
||
| 769 | |||
| 770 | public static function datedMoneySpecification(): DatedMoneySpecification |
||
| 774 | |||
| 775 | public static function dayOfWeek(): DayOfWeek |
||
| 779 | |||
| 780 | public static function daySpa(): DaySpa |
||
| 784 | |||
| 785 | public static function deactivateAction(): DeactivateAction |
||
| 789 | |||
| 790 | public static function defenceEstablishment(): DefenceEstablishment |
||
| 794 | |||
| 795 | public static function deleteAction(): DeleteAction |
||
| 799 | |||
| 800 | public static function deliveryChargeSpecification(): DeliveryChargeSpecification |
||
| 804 | |||
| 805 | public static function deliveryEvent(): DeliveryEvent |
||
| 809 | |||
| 810 | public static function deliveryMethod(): DeliveryMethod |
||
| 814 | |||
| 815 | public static function demand(): Demand |
||
| 819 | |||
| 820 | public static function dentist(): Dentist |
||
| 824 | |||
| 825 | public static function departAction(): DepartAction |
||
| 829 | |||
| 830 | public static function departmentStore(): DepartmentStore |
||
| 834 | |||
| 835 | public static function depositAccount(): DepositAccount |
||
| 839 | |||
| 840 | public static function digitalDocument(): DigitalDocument |
||
| 844 | |||
| 845 | public static function digitalDocumentPermission(): DigitalDocumentPermission |
||
| 849 | |||
| 850 | public static function digitalDocumentPermissionType(): DigitalDocumentPermissionType |
||
| 854 | |||
| 855 | public static function disagreeAction(): DisagreeAction |
||
| 859 | |||
| 860 | public static function discoverAction(): DiscoverAction |
||
| 864 | |||
| 865 | public static function discussionForumPosting(): DiscussionForumPosting |
||
| 869 | |||
| 870 | public static function dislikeAction(): DislikeAction |
||
| 874 | |||
| 875 | public static function distance(): Distance |
||
| 879 | |||
| 880 | public static function distillery(): Distillery |
||
| 884 | |||
| 885 | public static function donateAction(): DonateAction |
||
| 889 | |||
| 890 | public static function downloadAction(): DownloadAction |
||
| 894 | |||
| 895 | public static function drawAction(): DrawAction |
||
| 899 | |||
| 900 | public static function drinkAction(): DrinkAction |
||
| 904 | |||
| 905 | public static function driveWheelConfigurationValue(): DriveWheelConfigurationValue |
||
| 909 | |||
| 910 | public static function dryCleaningOrLaundry(): DryCleaningOrLaundry |
||
| 914 | |||
| 915 | public static function duration(): Duration |
||
| 919 | |||
| 920 | public static function eatAction(): EatAction |
||
| 924 | |||
| 925 | public static function educationEvent(): EducationEvent |
||
| 929 | |||
| 930 | public static function educationalAudience(): EducationalAudience |
||
| 934 | |||
| 935 | public static function educationalOrganization(): EducationalOrganization |
||
| 939 | |||
| 940 | public static function electrician(): Electrician |
||
| 944 | |||
| 945 | public static function electronicsStore(): ElectronicsStore |
||
| 949 | |||
| 950 | public static function elementarySchool(): ElementarySchool |
||
| 954 | |||
| 955 | public static function emailMessage(): EmailMessage |
||
| 959 | |||
| 960 | public static function embassy(): Embassy |
||
| 964 | |||
| 965 | public static function emergencyService(): EmergencyService |
||
| 969 | |||
| 970 | public static function employeeRole(): EmployeeRole |
||
| 974 | |||
| 975 | public static function employerAggregateRating(): EmployerAggregateRating |
||
| 979 | |||
| 980 | public static function employmentAgency(): EmploymentAgency |
||
| 984 | |||
| 985 | public static function endorseAction(): EndorseAction |
||
| 989 | |||
| 990 | public static function endorsementRating(): EndorsementRating |
||
| 994 | |||
| 995 | public static function energy(): Energy |
||
| 999 | |||
| 1000 | public static function engineSpecification(): EngineSpecification |
||
| 1004 | |||
| 1005 | public static function entertainmentBusiness(): EntertainmentBusiness |
||
| 1009 | |||
| 1010 | public static function entryPoint(): EntryPoint |
||
| 1014 | |||
| 1015 | public static function enumeration(): Enumeration |
||
| 1019 | |||
| 1020 | public static function episode(): Episode |
||
| 1024 | |||
| 1025 | public static function event(): Event |
||
| 1029 | |||
| 1030 | public static function eventReservation(): EventReservation |
||
| 1034 | |||
| 1035 | public static function eventStatusType(): EventStatusType |
||
| 1039 | |||
| 1040 | public static function eventVenue(): EventVenue |
||
| 1044 | |||
| 1045 | public static function exerciseAction(): ExerciseAction |
||
| 1049 | |||
| 1050 | public static function exerciseGym(): ExerciseGym |
||
| 1054 | |||
| 1055 | public static function exhibitionEvent(): ExhibitionEvent |
||
| 1059 | |||
| 1060 | public static function fAQPage(): FAQPage |
||
| 1064 | |||
| 1065 | public static function fMRadioChannel(): FMRadioChannel |
||
| 1069 | |||
| 1070 | public static function fastFoodRestaurant(): FastFoodRestaurant |
||
| 1074 | |||
| 1075 | public static function festival(): Festival |
||
| 1079 | |||
| 1080 | public static function filmAction(): FilmAction |
||
| 1084 | |||
| 1085 | public static function financialProduct(): FinancialProduct |
||
| 1089 | |||
| 1090 | public static function financialService(): FinancialService |
||
| 1094 | |||
| 1095 | public static function findAction(): FindAction |
||
| 1099 | |||
| 1100 | public static function fireStation(): FireStation |
||
| 1104 | |||
| 1105 | public static function flight(): Flight |
||
| 1109 | |||
| 1110 | public static function flightReservation(): FlightReservation |
||
| 1114 | |||
| 1115 | public static function florist(): Florist |
||
| 1119 | |||
| 1120 | public static function followAction(): FollowAction |
||
| 1124 | |||
| 1125 | public static function foodEstablishment(): FoodEstablishment |
||
| 1129 | |||
| 1130 | public static function foodEstablishmentReservation(): FoodEstablishmentReservation |
||
| 1134 | |||
| 1135 | public static function foodEvent(): FoodEvent |
||
| 1139 | |||
| 1140 | public static function foodService(): FoodService |
||
| 1144 | |||
| 1145 | public static function furnitureStore(): FurnitureStore |
||
| 1149 | |||
| 1150 | public static function game(): Game |
||
| 1154 | |||
| 1155 | public static function gamePlayMode(): GamePlayMode |
||
| 1159 | |||
| 1160 | public static function gameServer(): GameServer |
||
| 1164 | |||
| 1165 | public static function gameServerStatus(): GameServerStatus |
||
| 1169 | |||
| 1170 | public static function gardenStore(): GardenStore |
||
| 1174 | |||
| 1175 | public static function gasStation(): GasStation |
||
| 1179 | |||
| 1180 | public static function gatedResidenceCommunity(): GatedResidenceCommunity |
||
| 1184 | |||
| 1185 | public static function genderType(): GenderType |
||
| 1189 | |||
| 1190 | public static function generalContractor(): GeneralContractor |
||
| 1194 | |||
| 1195 | public static function geoCircle(): GeoCircle |
||
| 1199 | |||
| 1200 | public static function geoCoordinates(): GeoCoordinates |
||
| 1204 | |||
| 1205 | public static function geoShape(): GeoShape |
||
| 1209 | |||
| 1210 | public static function giveAction(): GiveAction |
||
| 1214 | |||
| 1215 | public static function golfCourse(): GolfCourse |
||
| 1219 | |||
| 1220 | public static function governmentBuilding(): GovernmentBuilding |
||
| 1224 | |||
| 1225 | public static function governmentOffice(): GovernmentOffice |
||
| 1229 | |||
| 1230 | public static function governmentOrganization(): GovernmentOrganization |
||
| 1234 | |||
| 1235 | public static function governmentPermit(): GovernmentPermit |
||
| 1239 | |||
| 1240 | public static function governmentService(): GovernmentService |
||
| 1244 | |||
| 1245 | public static function groceryStore(): GroceryStore |
||
| 1249 | |||
| 1250 | public static function hVACBusiness(): HVACBusiness |
||
| 1254 | |||
| 1255 | public static function hairSalon(): HairSalon |
||
| 1259 | |||
| 1260 | public static function hardwareStore(): HardwareStore |
||
| 1264 | |||
| 1265 | public static function healthAndBeautyBusiness(): HealthAndBeautyBusiness |
||
| 1269 | |||
| 1270 | public static function healthClub(): HealthClub |
||
| 1274 | |||
| 1275 | public static function highSchool(): HighSchool |
||
| 1279 | |||
| 1280 | public static function hinduTemple(): HinduTemple |
||
| 1284 | |||
| 1285 | public static function hobbyShop(): HobbyShop |
||
| 1289 | |||
| 1290 | public static function homeAndConstructionBusiness(): HomeAndConstructionBusiness |
||
| 1294 | |||
| 1295 | public static function homeGoodsStore(): HomeGoodsStore |
||
| 1299 | |||
| 1300 | public static function hospital(): Hospital |
||
| 1304 | |||
| 1305 | public static function hostel(): Hostel |
||
| 1309 | |||
| 1310 | public static function hotel(): Hotel |
||
| 1314 | |||
| 1315 | public static function hotelRoom(): HotelRoom |
||
| 1319 | |||
| 1320 | public static function house(): House |
||
| 1324 | |||
| 1325 | public static function housePainter(): HousePainter |
||
| 1329 | |||
| 1330 | public static function howTo(): HowTo |
||
| 1334 | |||
| 1335 | public static function howToDirection(): HowToDirection |
||
| 1339 | |||
| 1340 | public static function howToItem(): HowToItem |
||
| 1344 | |||
| 1345 | public static function howToSection(): HowToSection |
||
| 1349 | |||
| 1350 | public static function howToStep(): HowToStep |
||
| 1354 | |||
| 1355 | public static function howToSupply(): HowToSupply |
||
| 1359 | |||
| 1360 | public static function howToTip(): HowToTip |
||
| 1364 | |||
| 1365 | public static function howToTool(): HowToTool |
||
| 1369 | |||
| 1370 | public static function iceCreamShop(): IceCreamShop |
||
| 1374 | |||
| 1375 | public static function ignoreAction(): IgnoreAction |
||
| 1379 | |||
| 1380 | public static function imageGallery(): ImageGallery |
||
| 1384 | |||
| 1385 | public static function imageObject(): ImageObject |
||
| 1389 | |||
| 1390 | public static function individualProduct(): IndividualProduct |
||
| 1394 | |||
| 1395 | public static function informAction(): InformAction |
||
| 1399 | |||
| 1400 | public static function insertAction(): InsertAction |
||
| 1404 | |||
| 1405 | public static function installAction(): InstallAction |
||
| 1409 | |||
| 1410 | public static function insuranceAgency(): InsuranceAgency |
||
| 1414 | |||
| 1415 | public static function intangible(): Intangible |
||
| 1419 | |||
| 1420 | public static function interactAction(): InteractAction |
||
| 1424 | |||
| 1425 | public static function interactionCounter(): InteractionCounter |
||
| 1429 | |||
| 1430 | public static function internetCafe(): InternetCafe |
||
| 1434 | |||
| 1435 | public static function investmentOrDeposit(): InvestmentOrDeposit |
||
| 1439 | |||
| 1440 | public static function inviteAction(): InviteAction |
||
| 1444 | |||
| 1445 | public static function invoice(): Invoice |
||
| 1449 | |||
| 1450 | public static function itemAvailability(): ItemAvailability |
||
| 1454 | |||
| 1455 | public static function itemList(): ItemList |
||
| 1459 | |||
| 1460 | public static function itemListOrderType(): ItemListOrderType |
||
| 1464 | |||
| 1465 | public static function itemPage(): ItemPage |
||
| 1469 | |||
| 1470 | public static function jewelryStore(): JewelryStore |
||
| 1474 | |||
| 1475 | public static function jobPosting(): JobPosting |
||
| 1479 | |||
| 1480 | public static function joinAction(): JoinAction |
||
| 1484 | |||
| 1485 | public static function lakeBodyOfWater(): LakeBodyOfWater |
||
| 1489 | |||
| 1490 | public static function landform(): Landform |
||
| 1494 | |||
| 1495 | public static function landmarksOrHistoricalBuildings(): LandmarksOrHistoricalBuildings |
||
| 1499 | |||
| 1500 | public static function language(): Language |
||
| 1504 | |||
| 1505 | public static function leaveAction(): LeaveAction |
||
| 1509 | |||
| 1510 | public static function legalService(): LegalService |
||
| 1514 | |||
| 1515 | public static function legislativeBuilding(): LegislativeBuilding |
||
| 1519 | |||
| 1520 | public static function lendAction(): LendAction |
||
| 1524 | |||
| 1525 | public static function library(): Library |
||
| 1529 | |||
| 1530 | public static function likeAction(): LikeAction |
||
| 1534 | |||
| 1535 | public static function liquorStore(): LiquorStore |
||
| 1539 | |||
| 1540 | public static function listItem(): ListItem |
||
| 1544 | |||
| 1545 | public static function listenAction(): ListenAction |
||
| 1549 | |||
| 1550 | public static function literaryEvent(): LiteraryEvent |
||
| 1554 | |||
| 1555 | public static function liveBlogPosting(): LiveBlogPosting |
||
| 1559 | |||
| 1560 | public static function loanOrCredit(): LoanOrCredit |
||
| 1564 | |||
| 1565 | public static function localBusiness(): LocalBusiness |
||
| 1569 | |||
| 1570 | public static function locationFeatureSpecification(): LocationFeatureSpecification |
||
| 1574 | |||
| 1575 | public static function lockerDelivery(): LockerDelivery |
||
| 1579 | |||
| 1580 | public static function locksmith(): Locksmith |
||
| 1584 | |||
| 1585 | public static function lodgingBusiness(): LodgingBusiness |
||
| 1589 | |||
| 1590 | public static function lodgingReservation(): LodgingReservation |
||
| 1594 | |||
| 1595 | public static function loseAction(): LoseAction |
||
| 1599 | |||
| 1600 | public static function map(): Map |
||
| 1604 | |||
| 1605 | public static function mapCategoryType(): MapCategoryType |
||
| 1609 | |||
| 1610 | public static function marryAction(): MarryAction |
||
| 1614 | |||
| 1615 | public static function mass(): Mass |
||
| 1619 | |||
| 1620 | public static function mediaObject(): MediaObject |
||
| 1624 | |||
| 1625 | public static function mediaSubscription(): MediaSubscription |
||
| 1629 | |||
| 1630 | public static function medicalOrganization(): MedicalOrganization |
||
| 1634 | |||
| 1635 | public static function meetingRoom(): MeetingRoom |
||
| 1639 | |||
| 1640 | public static function mensClothingStore(): MensClothingStore |
||
| 1644 | |||
| 1645 | public static function menu(): Menu |
||
| 1649 | |||
| 1650 | public static function menuItem(): MenuItem |
||
| 1654 | |||
| 1655 | public static function menuSection(): MenuSection |
||
| 1659 | |||
| 1660 | public static function message(): Message |
||
| 1664 | |||
| 1665 | public static function middleSchool(): MiddleSchool |
||
| 1669 | |||
| 1670 | public static function mobileApplication(): MobileApplication |
||
| 1674 | |||
| 1675 | public static function mobilePhoneStore(): MobilePhoneStore |
||
| 1679 | |||
| 1680 | public static function monetaryAmount(): MonetaryAmount |
||
| 1684 | |||
| 1685 | public static function monetaryAmountDistribution(): MonetaryAmountDistribution |
||
| 1689 | |||
| 1690 | public static function mosque(): Mosque |
||
| 1694 | |||
| 1695 | public static function motel(): Motel |
||
| 1699 | |||
| 1700 | public static function motorcycleDealer(): MotorcycleDealer |
||
| 1704 | |||
| 1705 | public static function motorcycleRepair(): MotorcycleRepair |
||
| 1709 | |||
| 1710 | public static function mountain(): Mountain |
||
| 1714 | |||
| 1715 | public static function moveAction(): MoveAction |
||
| 1719 | |||
| 1720 | public static function movie(): Movie |
||
| 1724 | |||
| 1725 | public static function movieClip(): MovieClip |
||
| 1729 | |||
| 1730 | public static function movieRentalStore(): MovieRentalStore |
||
| 1734 | |||
| 1735 | public static function movieSeries(): MovieSeries |
||
| 1739 | |||
| 1740 | public static function movieTheater(): MovieTheater |
||
| 1744 | |||
| 1745 | public static function movingCompany(): MovingCompany |
||
| 1749 | |||
| 1750 | public static function museum(): Museum |
||
| 1754 | |||
| 1755 | public static function musicAlbum(): MusicAlbum |
||
| 1759 | |||
| 1760 | public static function musicAlbumProductionType(): MusicAlbumProductionType |
||
| 1764 | |||
| 1765 | public static function musicAlbumReleaseType(): MusicAlbumReleaseType |
||
| 1769 | |||
| 1770 | public static function musicComposition(): MusicComposition |
||
| 1774 | |||
| 1775 | public static function musicEvent(): MusicEvent |
||
| 1779 | |||
| 1780 | public static function musicGroup(): MusicGroup |
||
| 1784 | |||
| 1785 | public static function musicPlaylist(): MusicPlaylist |
||
| 1789 | |||
| 1790 | public static function musicRecording(): MusicRecording |
||
| 1794 | |||
| 1795 | public static function musicRelease(): MusicRelease |
||
| 1799 | |||
| 1800 | public static function musicReleaseFormatType(): MusicReleaseFormatType |
||
| 1804 | |||
| 1805 | public static function musicStore(): MusicStore |
||
| 1809 | |||
| 1810 | public static function musicVenue(): MusicVenue |
||
| 1814 | |||
| 1815 | public static function musicVideoObject(): MusicVideoObject |
||
| 1819 | |||
| 1820 | public static function nGO(): NGO |
||
| 1824 | |||
| 1825 | public static function nailSalon(): NailSalon |
||
| 1829 | |||
| 1830 | public static function newsArticle(): NewsArticle |
||
| 1834 | |||
| 1835 | public static function nightClub(): NightClub |
||
| 1839 | |||
| 1840 | public static function notary(): Notary |
||
| 1844 | |||
| 1845 | public static function noteDigitalDocument(): NoteDigitalDocument |
||
| 1849 | |||
| 1850 | public static function nutritionInformation(): NutritionInformation |
||
| 1854 | |||
| 1855 | public static function occupation(): Occupation |
||
| 1859 | |||
| 1860 | public static function oceanBodyOfWater(): OceanBodyOfWater |
||
| 1864 | |||
| 1865 | public static function offer(): Offer |
||
| 1869 | |||
| 1870 | public static function offerCatalog(): OfferCatalog |
||
| 1874 | |||
| 1875 | public static function offerItemCondition(): OfferItemCondition |
||
| 1879 | |||
| 1880 | public static function officeEquipmentStore(): OfficeEquipmentStore |
||
| 1884 | |||
| 1885 | public static function onDemandEvent(): OnDemandEvent |
||
| 1889 | |||
| 1890 | public static function openingHoursSpecification(): OpeningHoursSpecification |
||
| 1894 | |||
| 1895 | public static function order(): Order |
||
| 1899 | |||
| 1900 | public static function orderAction(): OrderAction |
||
| 1904 | |||
| 1905 | public static function orderItem(): OrderItem |
||
| 1909 | |||
| 1910 | public static function orderStatus(): OrderStatus |
||
| 1914 | |||
| 1915 | public static function organization(): Organization |
||
| 1919 | |||
| 1920 | public static function organizationRole(): OrganizationRole |
||
| 1924 | |||
| 1925 | public static function organizeAction(): OrganizeAction |
||
| 1929 | |||
| 1930 | public static function outletStore(): OutletStore |
||
| 1934 | |||
| 1935 | public static function ownershipInfo(): OwnershipInfo |
||
| 1939 | |||
| 1940 | public static function paintAction(): PaintAction |
||
| 1944 | |||
| 1945 | public static function painting(): Painting |
||
| 1949 | |||
| 1950 | public static function parcelDelivery(): ParcelDelivery |
||
| 1954 | |||
| 1955 | public static function parcelService(): ParcelService |
||
| 1959 | |||
| 1960 | public static function parentAudience(): ParentAudience |
||
| 1964 | |||
| 1965 | public static function park(): Park |
||
| 1969 | |||
| 1970 | public static function parkingFacility(): ParkingFacility |
||
| 1974 | |||
| 1975 | public static function pawnShop(): PawnShop |
||
| 1979 | |||
| 1980 | public static function payAction(): PayAction |
||
| 1984 | |||
| 1985 | public static function paymentCard(): PaymentCard |
||
| 1989 | |||
| 1990 | public static function paymentChargeSpecification(): PaymentChargeSpecification |
||
| 1994 | |||
| 1995 | public static function paymentMethod(): PaymentMethod |
||
| 1999 | |||
| 2000 | public static function paymentService(): PaymentService |
||
| 2004 | |||
| 2005 | public static function paymentStatusType(): PaymentStatusType |
||
| 2009 | |||
| 2010 | public static function peopleAudience(): PeopleAudience |
||
| 2014 | |||
| 2015 | public static function performAction(): PerformAction |
||
| 2019 | |||
| 2020 | public static function performanceRole(): PerformanceRole |
||
| 2024 | |||
| 2025 | public static function performingArtsTheater(): PerformingArtsTheater |
||
| 2029 | |||
| 2030 | public static function performingGroup(): PerformingGroup |
||
| 2034 | |||
| 2035 | public static function periodical(): Periodical |
||
| 2039 | |||
| 2040 | public static function permit(): Permit |
||
| 2044 | |||
| 2045 | public static function person(): Person |
||
| 2049 | |||
| 2050 | public static function petStore(): PetStore |
||
| 2054 | |||
| 2055 | public static function pharmacy(): Pharmacy |
||
| 2059 | |||
| 2060 | public static function photograph(): Photograph |
||
| 2064 | |||
| 2065 | public static function photographAction(): PhotographAction |
||
| 2069 | |||
| 2070 | public static function physician(): Physician |
||
| 2074 | |||
| 2075 | public static function place(): Place |
||
| 2079 | |||
| 2080 | public static function placeOfWorship(): PlaceOfWorship |
||
| 2084 | |||
| 2085 | public static function planAction(): PlanAction |
||
| 2089 | |||
| 2090 | public static function playAction(): PlayAction |
||
| 2094 | |||
| 2095 | public static function playground(): Playground |
||
| 2099 | |||
| 2100 | public static function plumber(): Plumber |
||
| 2104 | |||
| 2105 | public static function policeStation(): PoliceStation |
||
| 2109 | |||
| 2110 | public static function pond(): Pond |
||
| 2114 | |||
| 2115 | public static function postOffice(): PostOffice |
||
| 2119 | |||
| 2120 | public static function postalAddress(): PostalAddress |
||
| 2124 | |||
| 2125 | public static function preOrderAction(): PreOrderAction |
||
| 2129 | |||
| 2130 | public static function prependAction(): PrependAction |
||
| 2134 | |||
| 2135 | public static function preschool(): Preschool |
||
| 2139 | |||
| 2140 | public static function presentationDigitalDocument(): PresentationDigitalDocument |
||
| 2144 | |||
| 2145 | public static function priceSpecification(): PriceSpecification |
||
| 2149 | |||
| 2150 | public static function product(): Product |
||
| 2154 | |||
| 2155 | public static function productModel(): ProductModel |
||
| 2159 | |||
| 2160 | public static function professionalService(): ProfessionalService |
||
| 2164 | |||
| 2165 | public static function profilePage(): ProfilePage |
||
| 2169 | |||
| 2170 | public static function programMembership(): ProgramMembership |
||
| 2174 | |||
| 2175 | public static function propertyValue(): PropertyValue |
||
| 2179 | |||
| 2180 | public static function propertyValueSpecification(): PropertyValueSpecification |
||
| 2184 | |||
| 2185 | public static function publicSwimmingPool(): PublicSwimmingPool |
||
| 2189 | |||
| 2190 | public static function publicationEvent(): PublicationEvent |
||
| 2194 | |||
| 2195 | public static function publicationIssue(): PublicationIssue |
||
| 2199 | |||
| 2200 | public static function publicationVolume(): PublicationVolume |
||
| 2204 | |||
| 2205 | public static function qAPage(): QAPage |
||
| 2209 | |||
| 2210 | public static function qualitativeValue(): QualitativeValue |
||
| 2214 | |||
| 2215 | public static function quantitativeValue(): QuantitativeValue |
||
| 2219 | |||
| 2220 | public static function quantitativeValueDistribution(): QuantitativeValueDistribution |
||
| 2224 | |||
| 2225 | public static function quantity(): Quantity |
||
| 2229 | |||
| 2230 | public static function question(): Question |
||
| 2234 | |||
| 2235 | public static function quoteAction(): QuoteAction |
||
| 2239 | |||
| 2240 | public static function rVPark(): RVPark |
||
| 2244 | |||
| 2245 | public static function radioChannel(): RadioChannel |
||
| 2249 | |||
| 2250 | public static function radioClip(): RadioClip |
||
| 2254 | |||
| 2255 | public static function radioEpisode(): RadioEpisode |
||
| 2259 | |||
| 2260 | public static function radioSeason(): RadioSeason |
||
| 2264 | |||
| 2265 | public static function radioSeries(): RadioSeries |
||
| 2269 | |||
| 2270 | public static function radioStation(): RadioStation |
||
| 2274 | |||
| 2275 | public static function rating(): Rating |
||
| 2279 | |||
| 2280 | public static function reactAction(): ReactAction |
||
| 2284 | |||
| 2285 | public static function readAction(): ReadAction |
||
| 2289 | |||
| 2290 | public static function realEstateAgent(): RealEstateAgent |
||
| 2294 | |||
| 2295 | public static function receiveAction(): ReceiveAction |
||
| 2299 | |||
| 2300 | public static function recipe(): Recipe |
||
| 2304 | |||
| 2305 | public static function recyclingCenter(): RecyclingCenter |
||
| 2309 | |||
| 2310 | public static function registerAction(): RegisterAction |
||
| 2314 | |||
| 2315 | public static function rejectAction(): RejectAction |
||
| 2319 | |||
| 2320 | public static function rentAction(): RentAction |
||
| 2324 | |||
| 2325 | public static function rentalCarReservation(): RentalCarReservation |
||
| 2329 | |||
| 2330 | public static function replaceAction(): ReplaceAction |
||
| 2334 | |||
| 2335 | public static function replyAction(): ReplyAction |
||
| 2339 | |||
| 2340 | public static function report(): Report |
||
| 2344 | |||
| 2345 | public static function reservation(): Reservation |
||
| 2349 | |||
| 2350 | public static function reservationPackage(): ReservationPackage |
||
| 2354 | |||
| 2355 | public static function reservationStatusType(): ReservationStatusType |
||
| 2359 | |||
| 2360 | public static function reserveAction(): ReserveAction |
||
| 2364 | |||
| 2365 | public static function reservoir(): Reservoir |
||
| 2369 | |||
| 2370 | public static function residence(): Residence |
||
| 2374 | |||
| 2375 | public static function resort(): Resort |
||
| 2379 | |||
| 2380 | public static function restaurant(): Restaurant |
||
| 2384 | |||
| 2385 | public static function restrictedDiet(): RestrictedDiet |
||
| 2389 | |||
| 2390 | public static function resumeAction(): ResumeAction |
||
| 2394 | |||
| 2395 | public static function returnAction(): ReturnAction |
||
| 2399 | |||
| 2400 | public static function review(): Review |
||
| 2404 | |||
| 2405 | public static function reviewAction(): ReviewAction |
||
| 2409 | |||
| 2410 | public static function riverBodyOfWater(): RiverBodyOfWater |
||
| 2414 | |||
| 2415 | public static function role(): Role |
||
| 2419 | |||
| 2420 | public static function roofingContractor(): RoofingContractor |
||
| 2424 | |||
| 2425 | public static function room(): Room |
||
| 2429 | |||
| 2430 | public static function rsvpAction(): RsvpAction |
||
| 2434 | |||
| 2435 | public static function rsvpResponseType(): RsvpResponseType |
||
| 2439 | |||
| 2440 | public static function saleEvent(): SaleEvent |
||
| 2444 | |||
| 2445 | public static function scheduleAction(): ScheduleAction |
||
| 2449 | |||
| 2450 | public static function scholarlyArticle(): ScholarlyArticle |
||
| 2454 | |||
| 2455 | public static function school(): School |
||
| 2459 | |||
| 2460 | public static function screeningEvent(): ScreeningEvent |
||
| 2464 | |||
| 2465 | public static function sculpture(): Sculpture |
||
| 2469 | |||
| 2470 | public static function seaBodyOfWater(): SeaBodyOfWater |
||
| 2474 | |||
| 2475 | public static function searchAction(): SearchAction |
||
| 2479 | |||
| 2480 | public static function searchResultsPage(): SearchResultsPage |
||
| 2484 | |||
| 2485 | public static function season(): Season |
||
| 2489 | |||
| 2490 | public static function seat(): Seat |
||
| 2494 | |||
| 2495 | public static function selfStorage(): SelfStorage |
||
| 2499 | |||
| 2500 | public static function sellAction(): SellAction |
||
| 2504 | |||
| 2505 | public static function sendAction(): SendAction |
||
| 2509 | |||
| 2510 | public static function series(): Series |
||
| 2514 | |||
| 2515 | public static function service(): Service |
||
| 2519 | |||
| 2520 | public static function serviceChannel(): ServiceChannel |
||
| 2524 | |||
| 2525 | public static function shareAction(): ShareAction |
||
| 2529 | |||
| 2530 | public static function shoeStore(): ShoeStore |
||
| 2534 | |||
| 2535 | public static function shoppingCenter(): ShoppingCenter |
||
| 2539 | |||
| 2540 | public static function singleFamilyResidence(): SingleFamilyResidence |
||
| 2544 | |||
| 2545 | public static function siteNavigationElement(): SiteNavigationElement |
||
| 2549 | |||
| 2550 | public static function skiResort(): SkiResort |
||
| 2554 | |||
| 2555 | public static function socialEvent(): SocialEvent |
||
| 2559 | |||
| 2560 | public static function socialMediaPosting(): SocialMediaPosting |
||
| 2564 | |||
| 2565 | public static function softwareApplication(): SoftwareApplication |
||
| 2569 | |||
| 2570 | public static function softwareSourceCode(): SoftwareSourceCode |
||
| 2574 | |||
| 2575 | public static function someProducts(): SomeProducts |
||
| 2579 | |||
| 2580 | public static function speakableSpecification(): SpeakableSpecification |
||
| 2584 | |||
| 2585 | public static function specialty(): Specialty |
||
| 2589 | |||
| 2590 | public static function sportingGoodsStore(): SportingGoodsStore |
||
| 2594 | |||
| 2595 | public static function sportsActivityLocation(): SportsActivityLocation |
||
| 2599 | |||
| 2600 | public static function sportsClub(): SportsClub |
||
| 2604 | |||
| 2605 | public static function sportsEvent(): SportsEvent |
||
| 2609 | |||
| 2610 | public static function sportsOrganization(): SportsOrganization |
||
| 2614 | |||
| 2615 | public static function sportsTeam(): SportsTeam |
||
| 2619 | |||
| 2620 | public static function spreadsheetDigitalDocument(): SpreadsheetDigitalDocument |
||
| 2624 | |||
| 2625 | public static function stadiumOrArena(): StadiumOrArena |
||
| 2629 | |||
| 2630 | public static function state(): State |
||
| 2634 | |||
| 2635 | public static function steeringPositionValue(): SteeringPositionValue |
||
| 2639 | |||
| 2640 | public static function store(): Store |
||
| 2644 | |||
| 2645 | public static function structuredValue(): StructuredValue |
||
| 2649 | |||
| 2650 | public static function subscribeAction(): SubscribeAction |
||
| 2654 | |||
| 2655 | public static function subwayStation(): SubwayStation |
||
| 2659 | |||
| 2660 | public static function suite(): Suite |
||
| 2664 | |||
| 2665 | public static function suspendAction(): SuspendAction |
||
| 2669 | |||
| 2670 | public static function synagogue(): Synagogue |
||
| 2674 | |||
| 2675 | public static function tVClip(): TVClip |
||
| 2679 | |||
| 2680 | public static function tVEpisode(): TVEpisode |
||
| 2684 | |||
| 2685 | public static function tVSeason(): TVSeason |
||
| 2689 | |||
| 2690 | public static function tVSeries(): TVSeries |
||
| 2694 | |||
| 2695 | public static function table(): Table |
||
| 2699 | |||
| 2700 | public static function takeAction(): TakeAction |
||
| 2704 | |||
| 2705 | public static function tattooParlor(): TattooParlor |
||
| 2709 | |||
| 2710 | public static function taxi(): Taxi |
||
| 2714 | |||
| 2715 | public static function taxiReservation(): TaxiReservation |
||
| 2719 | |||
| 2720 | public static function taxiService(): TaxiService |
||
| 2724 | |||
| 2725 | public static function taxiStand(): TaxiStand |
||
| 2729 | |||
| 2730 | public static function techArticle(): TechArticle |
||
| 2734 | |||
| 2735 | public static function televisionChannel(): TelevisionChannel |
||
| 2739 | |||
| 2740 | public static function televisionStation(): TelevisionStation |
||
| 2744 | |||
| 2745 | public static function tennisComplex(): TennisComplex |
||
| 2749 | |||
| 2750 | public static function textDigitalDocument(): TextDigitalDocument |
||
| 2754 | |||
| 2755 | public static function theaterEvent(): TheaterEvent |
||
| 2759 | |||
| 2760 | public static function theaterGroup(): TheaterGroup |
||
| 2764 | |||
| 2765 | public static function thing(): Thing |
||
| 2769 | |||
| 2770 | public static function ticket(): Ticket |
||
| 2774 | |||
| 2775 | public static function tieAction(): TieAction |
||
| 2779 | |||
| 2780 | public static function tipAction(): TipAction |
||
| 2784 | |||
| 2785 | public static function tireShop(): TireShop |
||
| 2789 | |||
| 2790 | public static function touristAttraction(): TouristAttraction |
||
| 2794 | |||
| 2795 | public static function touristInformationCenter(): TouristInformationCenter |
||
| 2799 | |||
| 2800 | public static function toyStore(): ToyStore |
||
| 2804 | |||
| 2805 | public static function trackAction(): TrackAction |
||
| 2809 | |||
| 2810 | public static function tradeAction(): TradeAction |
||
| 2814 | |||
| 2815 | public static function trainReservation(): TrainReservation |
||
| 2819 | |||
| 2820 | public static function trainStation(): TrainStation |
||
| 2824 | |||
| 2825 | public static function trainTrip(): TrainTrip |
||
| 2829 | |||
| 2830 | public static function transferAction(): TransferAction |
||
| 2834 | |||
| 2835 | public static function travelAction(): TravelAction |
||
| 2839 | |||
| 2840 | public static function travelAgency(): TravelAgency |
||
| 2844 | |||
| 2845 | public static function trip(): Trip |
||
| 2849 | |||
| 2850 | public static function typeAndQuantityNode(): TypeAndQuantityNode |
||
| 2854 | |||
| 2855 | public static function unRegisterAction(): UnRegisterAction |
||
| 2859 | |||
| 2860 | public static function unitPriceSpecification(): UnitPriceSpecification |
||
| 2864 | |||
| 2865 | public static function updateAction(): UpdateAction |
||
| 2869 | |||
| 2870 | public static function useAction(): UseAction |
||
| 2874 | |||
| 2875 | public static function userBlocks(): UserBlocks |
||
| 2879 | |||
| 2880 | public static function userCheckins(): UserCheckins |
||
| 2884 | |||
| 2885 | public static function userComments(): UserComments |
||
| 2889 | |||
| 2890 | public static function userDownloads(): UserDownloads |
||
| 2894 | |||
| 2895 | public static function userInteraction(): UserInteraction |
||
| 2899 | |||
| 2900 | public static function userLikes(): UserLikes |
||
| 2904 | |||
| 2905 | public static function userPageVisits(): UserPageVisits |
||
| 2909 | |||
| 2910 | public static function userPlays(): UserPlays |
||
| 2914 | |||
| 2915 | public static function userPlusOnes(): UserPlusOnes |
||
| 2919 | |||
| 2920 | public static function userTweets(): UserTweets |
||
| 2924 | |||
| 2925 | public static function vehicle(): Vehicle |
||
| 2929 | |||
| 2930 | public static function videoGallery(): VideoGallery |
||
| 2934 | |||
| 2935 | public static function videoGame(): VideoGame |
||
| 2939 | |||
| 2940 | public static function videoGameClip(): VideoGameClip |
||
| 2944 | |||
| 2945 | public static function videoGameSeries(): VideoGameSeries |
||
| 2949 | |||
| 2950 | public static function videoObject(): VideoObject |
||
| 2954 | |||
| 2955 | public static function viewAction(): ViewAction |
||
| 2959 | |||
| 2960 | public static function visualArtsEvent(): VisualArtsEvent |
||
| 2964 | |||
| 2965 | public static function visualArtwork(): VisualArtwork |
||
| 2969 | |||
| 2970 | public static function volcano(): Volcano |
||
| 2974 | |||
| 2975 | public static function voteAction(): VoteAction |
||
| 2979 | |||
| 2980 | public static function wPAdBlock(): WPAdBlock |
||
| 2984 | |||
| 2985 | public static function wPFooter(): WPFooter |
||
| 2989 | |||
| 2990 | public static function wPHeader(): WPHeader |
||
| 2994 | |||
| 2995 | public static function wPSideBar(): WPSideBar |
||
| 2999 | |||
| 3000 | public static function wantAction(): WantAction |
||
| 3004 | |||
| 3005 | public static function warrantyPromise(): WarrantyPromise |
||
| 3009 | |||
| 3010 | public static function warrantyScope(): WarrantyScope |
||
| 3014 | |||
| 3015 | public static function watchAction(): WatchAction |
||
| 3019 | |||
| 3020 | public static function waterfall(): Waterfall |
||
| 3024 | |||
| 3025 | public static function wearAction(): WearAction |
||
| 3029 | |||
| 3030 | public static function webApplication(): WebApplication |
||
| 3034 | |||
| 3035 | public static function webPage(): WebPage |
||
| 3039 | |||
| 3040 | public static function webPageElement(): WebPageElement |
||
| 3044 | |||
| 3045 | public static function webSite(): WebSite |
||
| 3049 | |||
| 3050 | public static function wholesaleStore(): WholesaleStore |
||
| 3054 | |||
| 3055 | public static function winAction(): WinAction |
||
| 3059 | |||
| 3060 | public static function winery(): Winery |
||
| 3064 | |||
| 3065 | public static function workersUnion(): WorkersUnion |
||
| 3069 | |||
| 3070 | public static function writeAction(): WriteAction |
||
| 3074 | |||
| 3075 | public static function zoo(): Zoo |
||
| 3079 | |||
| 3080 | } |
||
| 3081 |