View Javadoc

1   package org.openrdf.concepts.skos.mapping;
2   
3   import org.openrdf.concepts.rdf.Bag;
4   import org.openrdf.elmo.annotations.rdf;
5   
6   /** This class is a shorthand for an intersection construct.  So the statement 'concept A has-exact-match AND (concept B, concept C)' implies that the set of resources properly indexed against concept A is identical to the intersection of the sets properly indexed against concepts B and C. */
7   @rdf("http://www.w3.org/2004/02/skos/mapping#AND")
8   public interface AND extends Bag, MappingResource {
9   
10  }