Uses of Interface
cz.cuni.versatile.api.relops.PropertyMapping

Packages that use PropertyMapping
cz.cuni.versatile.api The key elements of the Versatile API.  
cz.cuni.versatile.api.relops Relational operators and property mappings subsection of the Versatile API.  
cz.cuni.versatile.core This package contains the default implementations of some essential Versatile concepts.  
 

Uses of PropertyMapping in cz.cuni.versatile.api
 

Methods in cz.cuni.versatile.api that return PropertyMapping
 PropertyMapping PropertyRegistry.getPropertyMapping(Property prop)
          Returns the PropertyMapping for the given Property.
 

Methods in cz.cuni.versatile.api with parameters of type PropertyMapping
 void PropertyRegistry.registerProperty(Property prop, PropertyMapping pm)
          Registers a derived property and its value-providing PropertyMapping.
 

Uses of PropertyMapping in cz.cuni.versatile.api.relops
 

Subinterfaces of PropertyMapping in cz.cuni.versatile.api.relops
 interface Many2ManyMapping
          The most generic property mapping as described in PropertyMapping API.
 interface Many2OneMapping
          A mapping which corresponds to an ordinary n-ary function (P1, P2, P3, ..., Pn) -> Pm.
 interface One2ManyMapping
          An information extraction mapping Px -> (P1, P2, P3, ..., Pn).
 interface One2OneMapping
          An unary mapping (P1) -> (P2) to transform values of one property to values of another property.
 

Methods in cz.cuni.versatile.api.relops that return PropertyMapping
 PropertyMapping PropertyMapping.getReverse()
          Returns an implementation of the corresponding reverse mapping, if implemented.
 

Uses of PropertyMapping in cz.cuni.versatile.core
 

Classes in cz.cuni.versatile.core that implement PropertyMapping
 class IdentityMapping
          A generic implementation of an identity mapping.
 

Methods in cz.cuni.versatile.core that return PropertyMapping
 PropertyMapping IdentityMapping.getReverse()