How can I get the parent class of an owl:intersectionOf collection?
For example :
<owl:Class rdf:about="http://www.co-ode.org/ontologies/pizza/pizza.owl#Country">
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://www.co-ode.org/ontologies/pizza/pizza.owl#DomainConcept"/>
<owl:Class>
<owl:oneOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://www.co-ode.org/ontologies/pizza/pizza.owl#America"/>
<rdf:Description rdf:about="http://www.co-ode.org/ontologies/pizza/pizza.owl#England"/>
<rdf:Description rdf:about="http://www.co-ode.org/ontologies/pizza/pizza.owl#France"/>
<rdf:Description rdf:about="http://www.co-ode.org/ontologies/pizza/pizza.owl#Germany"/>
<rdf:Description rdf:about="http://www.co-ode.org/ontologies/pizza/pizza.owl#Italy"/>
</owl:oneOf>
</owl:Class>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
<rdfs:comment xml:lang="en">A class that is equivalent to the set of individuals that are described in the enumeration - ie Countries can only be either America, England, France, Germany or Italy and nothing else. Note that these individuals have been asserted to be allDifferent from each other.</rdfs:comment>
<rdfs:label xml:lang="en">Country</rdfs:label>
<rdfs:label xml:lang="pt">Pais</rdfs:label>
<skos:prefLabel xml:lang="en">Country</skos:prefLabel>
</owl:Class>
I want to get as a response Country when I have the parameter Italy