Package net.opengis.ows11.util
Class Ows11AdapterFactory
- Object
- 
- AdapterFactoryImpl
- 
- Ows11AdapterFactory
 
 
- 
- All Implemented Interfaces:
- AdapterFactory
 
 public class Ows11AdapterFactory extends AdapterFactoryImplThe Adapter Factory for the model. It provides an adaptercreateXXXmethod for each class of the model.- See Also:
- Ows11Package
 
- 
- 
Field SummaryFields Modifier and Type Field Description protected static Ows11PackagemodelPackageThe cached model package.protected Ows11SwitchmodelSwitchThe switch that delegates to thecreateXXXmethods.
 - 
Constructor SummaryConstructors Constructor Description Ows11AdapterFactory()Creates an instance of the adapter factory.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description AdaptercreateAbstractReferenceBaseTypeAdapter()Creates a new adapter for an object of class 'Abstract Reference Base Type'.AdaptercreateAcceptFormatsTypeAdapter()Creates a new adapter for an object of class 'Accept Formats Type'.AdaptercreateAcceptVersionsTypeAdapter()Creates a new adapter for an object of class 'Accept Versions Type'.AdaptercreateAdapter(Notifier target)Creates an adapter for thetarget.AdaptercreateAddressTypeAdapter()Creates a new adapter for an object of class 'Address Type'.AdaptercreateAllowedValuesTypeAdapter()Creates a new adapter for an object of class 'Allowed Values Type'.AdaptercreateAnyValueTypeAdapter()Creates a new adapter for an object of class 'Any Value Type'.AdaptercreateBasicIdentificationTypeAdapter()Creates a new adapter for an object of class 'Basic Identification Type'.AdaptercreateBoundingBoxTypeAdapter()Creates a new adapter for an object of class 'Bounding Box Type'.AdaptercreateCapabilitiesBaseTypeAdapter()Creates a new adapter for an object of class 'Capabilities Base Type'.AdaptercreateCodeTypeAdapter()Creates a new adapter for an object of class 'Code Type'.AdaptercreateContactTypeAdapter()Creates a new adapter for an object of class 'Contact Type'.AdaptercreateContentsBaseTypeAdapter()Creates a new adapter for an object of class 'Contents Base Type'.AdaptercreateDatasetDescriptionSummaryBaseTypeAdapter()Creates a new adapter for an object of class 'Dataset Description Summary Base Type'.AdaptercreateDCPTypeAdapter()Creates a new adapter for an object of class 'DCP Type'.AdaptercreateDescriptionTypeAdapter()Creates a new adapter for an object of class 'Description Type'.AdaptercreateDocumentRootAdapter()Creates a new adapter for an object of class 'Document Root'.AdaptercreateDomainMetadataTypeAdapter()Creates a new adapter for an object of class 'Domain Metadata Type'.AdaptercreateDomainTypeAdapter()Creates a new adapter for an object of class 'Domain Type'.AdaptercreateEObjectAdapter()Creates a new adapter for the default case.AdaptercreateExceptionReportTypeAdapter()Creates a new adapter for an object of class 'Exception Report Type'.AdaptercreateExceptionTypeAdapter()Creates a new adapter for an object of class 'Exception Type'.AdaptercreateGetCapabilitiesTypeAdapter()Creates a new adapter for an object of class 'Get Capabilities Type'.AdaptercreateGetResourceByIdTypeAdapter()Creates a new adapter for an object of class 'Get Resource By Id Type'.AdaptercreateHTTPTypeAdapter()Creates a new adapter for an object of class 'HTTP Type'.AdaptercreateIdentificationTypeAdapter()Creates a new adapter for an object of class 'Identification Type'.AdaptercreateKeywordsTypeAdapter()Creates a new adapter for an object of class 'Keywords Type'.AdaptercreateLanguageStringTypeAdapter()Creates a new adapter for an object of class 'Language String Type'.AdaptercreateManifestTypeAdapter()Creates a new adapter for an object of class 'Manifest Type'.AdaptercreateMetadataTypeAdapter()Creates a new adapter for an object of class 'Metadata Type'.AdaptercreateNoValuesTypeAdapter()Creates a new adapter for an object of class 'No Values Type'.AdaptercreateOnlineResourceTypeAdapter()Creates a new adapter for an object of class 'Online Resource Type'.AdaptercreateOperationsMetadataTypeAdapter()Creates a new adapter for an object of class 'Operations Metadata Type'.AdaptercreateOperationTypeAdapter()Creates a new adapter for an object of class 'Operation Type'.AdaptercreateRangeTypeAdapter()Creates a new adapter for an object of class 'Range Type'.AdaptercreateReferenceGroupTypeAdapter()Creates a new adapter for an object of class 'Reference Group Type'.AdaptercreateReferenceTypeAdapter()Creates a new adapter for an object of class 'Reference Type'.AdaptercreateRequestMethodTypeAdapter()Creates a new adapter for an object of class 'Request Method Type'.AdaptercreateResponsiblePartySubsetTypeAdapter()Creates a new adapter for an object of class 'Responsible Party Subset Type'.AdaptercreateResponsiblePartyTypeAdapter()Creates a new adapter for an object of class 'Responsible Party Type'.AdaptercreateSectionsTypeAdapter()Creates a new adapter for an object of class 'Sections Type'.AdaptercreateServiceIdentificationTypeAdapter()Creates a new adapter for an object of class 'Service Identification Type'.AdaptercreateServiceProviderTypeAdapter()Creates a new adapter for an object of class 'Service Provider Type'.AdaptercreateServiceReferenceTypeAdapter()Creates a new adapter for an object of class 'Service Reference Type'.AdaptercreateTelephoneTypeAdapter()Creates a new adapter for an object of class 'Telephone Type'.AdaptercreateUnNamedDomainTypeAdapter()Creates a new adapter for an object of class 'Un Named Domain Type'.AdaptercreateValuesReferenceTypeAdapter()Creates a new adapter for an object of class 'Values Reference Type'.AdaptercreateValueTypeAdapter()Creates a new adapter for an object of class 'Value Type'.AdaptercreateWGS84BoundingBoxTypeAdapter()Creates a new adapter for an object of class 'WGS84 Bounding Box Type'.booleanisFactoryForType(Object object)Returns whether this factory is applicable for the type of the object.
 
- 
- 
- 
Field Detail- 
modelPackageprotected static Ows11Package modelPackage The cached model package.
 - 
modelSwitchprotected Ows11Switch modelSwitch The switch that delegates to thecreateXXXmethods.
 
- 
 - 
Method Detail- 
isFactoryForTypepublic boolean isFactoryForType(Object object) Returns whether this factory is applicable for the type of the object. This implementation returnstrueif the object is either the model's package or is an instance object of the model.- Specified by:
- isFactoryForTypein interface- AdapterFactory
- Overrides:
- isFactoryForTypein class- AdapterFactoryImpl
- Returns:
- whether this factory is applicable for the type of the object.
 
 - 
createAdapterpublic Adapter createAdapter(Notifier target) Creates an adapter for thetarget.- Overrides:
- createAdapterin class- AdapterFactoryImpl
- Parameters:
- target- the object to adapt.
- Returns:
- the adapter for the target.
 
 - 
createAbstractReferenceBaseTypeAdapterpublic Adapter createAbstractReferenceBaseTypeAdapter() Creates a new adapter for an object of class 'Abstract Reference Base Type'. This default implementation returns null so that we can easily ignore cases; it's useful to ignore a case when inheritance will catch all the cases anyway.- Returns:
- the new adapter.
- See Also:
- AbstractReferenceBaseType
 
 - 
createAcceptFormatsTypeAdapterpublic Adapter createAcceptFormatsTypeAdapter() Creates a new adapter for an object of class 'Accept Formats Type'. This default implementation returns null so that we can easily ignore cases; it's useful to ignore a case when inheritance will catch all the cases anyway.- Returns:
- the new adapter.
- See Also:
- AcceptFormatsType
 
 - 
createAcceptVersionsTypeAdapterpublic Adapter createAcceptVersionsTypeAdapter() Creates a new adapter for an object of class 'Accept Versions Type'. This default implementation returns null so that we can easily ignore cases; it's useful to ignore a case when inheritance will catch all the cases anyway.- Returns:
- the new adapter.
- See Also:
- AcceptVersionsType
 
 - 
createAddressTypeAdapterpublic Adapter createAddressTypeAdapter() Creates a new adapter for an object of class 'Address Type'. This default implementation returns null so that we can easily ignore cases; it's useful to ignore a case when inheritance will catch all the cases anyway.- Returns:
- the new adapter.
- See Also:
- AddressType
 
 - 
createAllowedValuesTypeAdapterpublic Adapter createAllowedValuesTypeAdapter() Creates a new adapter for an object of class 'Allowed Values Type'. This default implementation returns null so that we can easily ignore cases; it's useful to ignore a case when inheritance will catch all the cases anyway.- Returns:
- the new adapter.
- See Also:
- AllowedValuesType
 
 - 
createAnyValueTypeAdapterpublic Adapter createAnyValueTypeAdapter() Creates a new adapter for an object of class 'Any Value Type'. This default implementation returns null so that we can easily ignore cases; it's useful to ignore a case when inheritance will catch all the cases anyway.- Returns:
- the new adapter.
- See Also:
- AnyValueType
 
 - 
createBasicIdentificationTypeAdapterpublic Adapter createBasicIdentificationTypeAdapter() Creates a new adapter for an object of class 'Basic Identification Type'. This default implementation returns null so that we can easily ignore cases; it's useful to ignore a case when inheritance will catch all the cases anyway.- Returns:
- the new adapter.
- See Also:
- BasicIdentificationType
 
 - 
createBoundingBoxTypeAdapterpublic Adapter createBoundingBoxTypeAdapter() Creates a new adapter for an object of class 'Bounding Box Type'. This default implementation returns null so that we can easily ignore cases; it's useful to ignore a case when inheritance will catch all the cases anyway.- Returns:
- the new adapter.
- See Also:
- BoundingBoxType
 
 - 
createCapabilitiesBaseTypeAdapterpublic Adapter createCapabilitiesBaseTypeAdapter() Creates a new adapter for an object of class 'Capabilities Base Type'. This default implementation returns null so that we can easily ignore cases; it's useful to ignore a case when inheritance will catch all the cases anyway.- Returns:
- the new adapter.
- See Also:
- CapabilitiesBaseType
 
 - 
createCodeTypeAdapterpublic Adapter createCodeTypeAdapter() Creates a new adapter for an object of class 'Code Type'. This default implementation returns null so that we can easily ignore cases; it's useful to ignore a case when inheritance will catch all the cases anyway.- Returns:
- the new adapter.
- See Also:
- CodeType
 
 - 
createContactTypeAdapterpublic Adapter createContactTypeAdapter() Creates a new adapter for an object of class 'Contact Type'. This default implementation returns null so that we can easily ignore cases; it's useful to ignore a case when inheritance will catch all the cases anyway.- Returns:
- the new adapter.
- See Also:
- ContactType
 
 - 
createContentsBaseTypeAdapterpublic Adapter createContentsBaseTypeAdapter() Creates a new adapter for an object of class 'Contents Base Type'. This default implementation returns null so that we can easily ignore cases; it's useful to ignore a case when inheritance will catch all the cases anyway.- Returns:
- the new adapter.
- See Also:
- ContentsBaseType
 
 - 
createDatasetDescriptionSummaryBaseTypeAdapterpublic Adapter createDatasetDescriptionSummaryBaseTypeAdapter() Creates a new adapter for an object of class 'Dataset Description Summary Base Type'. This default implementation returns null so that we can easily ignore cases; it's useful to ignore a case when inheritance will catch all the cases anyway.- Returns:
- the new adapter.
- See Also:
- DatasetDescriptionSummaryBaseType
 
 - 
createDCPTypeAdapterpublic Adapter createDCPTypeAdapter() Creates a new adapter for an object of class 'DCP Type'. This default implementation returns null so that we can easily ignore cases; it's useful to ignore a case when inheritance will catch all the cases anyway.- Returns:
- the new adapter.
- See Also:
- DCPType
 
 - 
createDescriptionTypeAdapterpublic Adapter createDescriptionTypeAdapter() Creates a new adapter for an object of class 'Description Type'. This default implementation returns null so that we can easily ignore cases; it's useful to ignore a case when inheritance will catch all the cases anyway.- Returns:
- the new adapter.
- See Also:
- DescriptionType
 
 - 
createDocumentRootAdapterpublic Adapter createDocumentRootAdapter() Creates a new adapter for an object of class 'Document Root'. This default implementation returns null so that we can easily ignore cases; it's useful to ignore a case when inheritance will catch all the cases anyway.- Returns:
- the new adapter.
- See Also:
- DocumentRoot
 
 - 
createDomainMetadataTypeAdapterpublic Adapter createDomainMetadataTypeAdapter() Creates a new adapter for an object of class 'Domain Metadata Type'. This default implementation returns null so that we can easily ignore cases; it's useful to ignore a case when inheritance will catch all the cases anyway.- Returns:
- the new adapter.
- See Also:
- DomainMetadataType
 
 - 
createDomainTypeAdapterpublic Adapter createDomainTypeAdapter() Creates a new adapter for an object of class 'Domain Type'. This default implementation returns null so that we can easily ignore cases; it's useful to ignore a case when inheritance will catch all the cases anyway.- Returns:
- the new adapter.
- See Also:
- DomainType
 
 - 
createExceptionReportTypeAdapterpublic Adapter createExceptionReportTypeAdapter() Creates a new adapter for an object of class 'Exception Report Type'. This default implementation returns null so that we can easily ignore cases; it's useful to ignore a case when inheritance will catch all the cases anyway.- Returns:
- the new adapter.
- See Also:
- ExceptionReportType
 
 - 
createExceptionTypeAdapterpublic Adapter createExceptionTypeAdapter() Creates a new adapter for an object of class 'Exception Type'. This default implementation returns null so that we can easily ignore cases; it's useful to ignore a case when inheritance will catch all the cases anyway.- Returns:
- the new adapter.
- See Also:
- ExceptionType
 
 - 
createGetCapabilitiesTypeAdapterpublic Adapter createGetCapabilitiesTypeAdapter() Creates a new adapter for an object of class 'Get Capabilities Type'. This default implementation returns null so that we can easily ignore cases; it's useful to ignore a case when inheritance will catch all the cases anyway.- Returns:
- the new adapter.
- See Also:
- GetCapabilitiesType
 
 - 
createGetResourceByIdTypeAdapterpublic Adapter createGetResourceByIdTypeAdapter() Creates a new adapter for an object of class 'Get Resource By Id Type'. This default implementation returns null so that we can easily ignore cases; it's useful to ignore a case when inheritance will catch all the cases anyway.- Returns:
- the new adapter.
- See Also:
- GetResourceByIdType
 
 - 
createHTTPTypeAdapterpublic Adapter createHTTPTypeAdapter() Creates a new adapter for an object of class 'HTTP Type'. This default implementation returns null so that we can easily ignore cases; it's useful to ignore a case when inheritance will catch all the cases anyway.- Returns:
- the new adapter.
- See Also:
- HTTPType
 
 - 
createIdentificationTypeAdapterpublic Adapter createIdentificationTypeAdapter() Creates a new adapter for an object of class 'Identification Type'. This default implementation returns null so that we can easily ignore cases; it's useful to ignore a case when inheritance will catch all the cases anyway.- Returns:
- the new adapter.
- See Also:
- IdentificationType
 
 - 
createKeywordsTypeAdapterpublic Adapter createKeywordsTypeAdapter() Creates a new adapter for an object of class 'Keywords Type'. This default implementation returns null so that we can easily ignore cases; it's useful to ignore a case when inheritance will catch all the cases anyway.- Returns:
- the new adapter.
- See Also:
- KeywordsType
 
 - 
createLanguageStringTypeAdapterpublic Adapter createLanguageStringTypeAdapter() Creates a new adapter for an object of class 'Language String Type'. This default implementation returns null so that we can easily ignore cases; it's useful to ignore a case when inheritance will catch all the cases anyway.- Returns:
- the new adapter.
- See Also:
- LanguageStringType
 
 - 
createManifestTypeAdapterpublic Adapter createManifestTypeAdapter() Creates a new adapter for an object of class 'Manifest Type'. This default implementation returns null so that we can easily ignore cases; it's useful to ignore a case when inheritance will catch all the cases anyway.- Returns:
- the new adapter.
- See Also:
- ManifestType
 
 - 
createMetadataTypeAdapterpublic Adapter createMetadataTypeAdapter() Creates a new adapter for an object of class 'Metadata Type'. This default implementation returns null so that we can easily ignore cases; it's useful to ignore a case when inheritance will catch all the cases anyway.- Returns:
- the new adapter.
- See Also:
- MetadataType
 
 - 
createNoValuesTypeAdapterpublic Adapter createNoValuesTypeAdapter() Creates a new adapter for an object of class 'No Values Type'. This default implementation returns null so that we can easily ignore cases; it's useful to ignore a case when inheritance will catch all the cases anyway.- Returns:
- the new adapter.
- See Also:
- NoValuesType
 
 - 
createOnlineResourceTypeAdapterpublic Adapter createOnlineResourceTypeAdapter() Creates a new adapter for an object of class 'Online Resource Type'. This default implementation returns null so that we can easily ignore cases; it's useful to ignore a case when inheritance will catch all the cases anyway.- Returns:
- the new adapter.
- See Also:
- OnlineResourceType
 
 - 
createOperationsMetadataTypeAdapterpublic Adapter createOperationsMetadataTypeAdapter() Creates a new adapter for an object of class 'Operations Metadata Type'. This default implementation returns null so that we can easily ignore cases; it's useful to ignore a case when inheritance will catch all the cases anyway.- Returns:
- the new adapter.
- See Also:
- OperationsMetadataType
 
 - 
createOperationTypeAdapterpublic Adapter createOperationTypeAdapter() Creates a new adapter for an object of class 'Operation Type'. This default implementation returns null so that we can easily ignore cases; it's useful to ignore a case when inheritance will catch all the cases anyway.- Returns:
- the new adapter.
- See Also:
- OperationType
 
 - 
createRangeTypeAdapterpublic Adapter createRangeTypeAdapter() Creates a new adapter for an object of class 'Range Type'. This default implementation returns null so that we can easily ignore cases; it's useful to ignore a case when inheritance will catch all the cases anyway.- Returns:
- the new adapter.
- See Also:
- RangeType
 
 - 
createReferenceGroupTypeAdapterpublic Adapter createReferenceGroupTypeAdapter() Creates a new adapter for an object of class 'Reference Group Type'. This default implementation returns null so that we can easily ignore cases; it's useful to ignore a case when inheritance will catch all the cases anyway.- Returns:
- the new adapter.
- See Also:
- ReferenceGroupType
 
 - 
createReferenceTypeAdapterpublic Adapter createReferenceTypeAdapter() Creates a new adapter for an object of class 'Reference Type'. This default implementation returns null so that we can easily ignore cases; it's useful to ignore a case when inheritance will catch all the cases anyway.- Returns:
- the new adapter.
- See Also:
- ReferenceType
 
 - 
createRequestMethodTypeAdapterpublic Adapter createRequestMethodTypeAdapter() Creates a new adapter for an object of class 'Request Method Type'. This default implementation returns null so that we can easily ignore cases; it's useful to ignore a case when inheritance will catch all the cases anyway.- Returns:
- the new adapter.
- See Also:
- RequestMethodType
 
 - 
createResponsiblePartySubsetTypeAdapterpublic Adapter createResponsiblePartySubsetTypeAdapter() Creates a new adapter for an object of class 'Responsible Party Subset Type'. This default implementation returns null so that we can easily ignore cases; it's useful to ignore a case when inheritance will catch all the cases anyway.- Returns:
- the new adapter.
- See Also:
- ResponsiblePartySubsetType
 
 - 
createResponsiblePartyTypeAdapterpublic Adapter createResponsiblePartyTypeAdapter() Creates a new adapter for an object of class 'Responsible Party Type'. This default implementation returns null so that we can easily ignore cases; it's useful to ignore a case when inheritance will catch all the cases anyway.- Returns:
- the new adapter.
- See Also:
- ResponsiblePartyType
 
 - 
createSectionsTypeAdapterpublic Adapter createSectionsTypeAdapter() Creates a new adapter for an object of class 'Sections Type'. This default implementation returns null so that we can easily ignore cases; it's useful to ignore a case when inheritance will catch all the cases anyway.- Returns:
- the new adapter.
- See Also:
- SectionsType
 
 - 
createServiceIdentificationTypeAdapterpublic Adapter createServiceIdentificationTypeAdapter() Creates a new adapter for an object of class 'Service Identification Type'. This default implementation returns null so that we can easily ignore cases; it's useful to ignore a case when inheritance will catch all the cases anyway.- Returns:
- the new adapter.
- See Also:
- ServiceIdentificationType
 
 - 
createServiceProviderTypeAdapterpublic Adapter createServiceProviderTypeAdapter() Creates a new adapter for an object of class 'Service Provider Type'. This default implementation returns null so that we can easily ignore cases; it's useful to ignore a case when inheritance will catch all the cases anyway.- Returns:
- the new adapter.
- See Also:
- ServiceProviderType
 
 - 
createServiceReferenceTypeAdapterpublic Adapter createServiceReferenceTypeAdapter() Creates a new adapter for an object of class 'Service Reference Type'. This default implementation returns null so that we can easily ignore cases; it's useful to ignore a case when inheritance will catch all the cases anyway.- Returns:
- the new adapter.
- See Also:
- ServiceReferenceType
 
 - 
createTelephoneTypeAdapterpublic Adapter createTelephoneTypeAdapter() Creates a new adapter for an object of class 'Telephone Type'. This default implementation returns null so that we can easily ignore cases; it's useful to ignore a case when inheritance will catch all the cases anyway.- Returns:
- the new adapter.
- See Also:
- TelephoneType
 
 - 
createUnNamedDomainTypeAdapterpublic Adapter createUnNamedDomainTypeAdapter() Creates a new adapter for an object of class 'Un Named Domain Type'. This default implementation returns null so that we can easily ignore cases; it's useful to ignore a case when inheritance will catch all the cases anyway.- Returns:
- the new adapter.
- See Also:
- UnNamedDomainType
 
 - 
createValuesReferenceTypeAdapterpublic Adapter createValuesReferenceTypeAdapter() Creates a new adapter for an object of class 'Values Reference Type'. This default implementation returns null so that we can easily ignore cases; it's useful to ignore a case when inheritance will catch all the cases anyway.- Returns:
- the new adapter.
- See Also:
- ValuesReferenceType
 
 - 
createValueTypeAdapterpublic Adapter createValueTypeAdapter() Creates a new adapter for an object of class 'Value Type'. This default implementation returns null so that we can easily ignore cases; it's useful to ignore a case when inheritance will catch all the cases anyway.- Returns:
- the new adapter.
- See Also:
- ValueType
 
 - 
createWGS84BoundingBoxTypeAdapterpublic Adapter createWGS84BoundingBoxTypeAdapter() Creates a new adapter for an object of class 'WGS84 Bounding Box Type'. This default implementation returns null so that we can easily ignore cases; it's useful to ignore a case when inheritance will catch all the cases anyway.- Returns:
- the new adapter.
- See Also:
- WGS84BoundingBoxType
 
 - 
createEObjectAdapterpublic Adapter createEObjectAdapter() Creates a new adapter for the default case. This default implementation returns null.- Returns:
- the new adapter.
 
 
- 
 
-