Uses of Class
cz.cuni.versatile.api.UnregisteredPropertyException

Packages that use UnregisteredPropertyException
cz.cuni.versatile.api The key elements of the Versatile API.  
 

Uses of UnregisteredPropertyException in cz.cuni.versatile.api
 

Methods in cz.cuni.versatile.api that throw UnregisteredPropertyException
 ResultSet ResourceProvider.get(Query q)
          Get an N-best collection of resources matching the given Query.
 ResultSet ResourceProvider.get(java.lang.String resourceName, QueryTemplate qt)
          Get an N-best collection of resources matching the given resourceName and query template.
 java.lang.Object ResourceProvider.getValue(java.lang.String resourceName, QueryTemplate qt)
          Get the closest match without the attached meta-data annotations.
 void QueryTemplate.addPredicate(PropertyPredicate pp)
          A generic method for adding a meta-data predicate.
 void QueryTemplate.add_Equal(java.lang.String uniqueName)
          Add a meta-data predicate using a given property and the PropertyOperators#EQ (equals) intrinsic operator.
 void QueryTemplate.add_GT(java.lang.String uniqueName)
          Add a meta-data predicate using a given property and the PropertyOperators#GT (greater than) intrinsic operator.
 void QueryTemplate.add_LT(java.lang.String uniqueName)
          Add a meta-data predicate using a given property and the PropertyOperators#LT (less than) intrinsic operator.
 void QueryTemplate.add_GE(java.lang.String uniqueName)
          Add a meta-data predicate using a given property and the PropertyOperators#GE (greater than or equals) intrinsic operator.
 void QueryTemplate.add_LE(java.lang.String uniqueName)
          Add a meta-data predicate using a given property and the PropertyOperators#LE (less than or equals) intrinsic operator.
 void QueryTemplate.addAssert(java.lang.String uniqueName)
          Add a meta-data predicate using a given property and the PropertyOperators#ASSERT (assert) extrinsic operator.
 void QueryTemplate.addAssertInv(java.lang.String uniqueName)
          Add a meta-data predicate using a given property and the PropertyOperators#ASSERT_INV (assertInv) extrinsic operator.
 void QueryTemplate.addAssertLevel(java.lang.String uniqueName, int level)
          Add a meta-data predicate using a given property and the PropertyOperators#ASSERT_LEVEL (assertLevel) extrinsic operator.
 void QueryTemplate.addEquivalent(java.lang.String uniqueName)
          Add a meta-data predicate using a given property and the PropertyOperators#EQUIVALENT (equivalent) extrinsic operator.
 void QueryTemplate.addComparable(java.lang.String uniqueName)
          Add a meta-data predicate using a given property and the PropertyOperators#COMPARABLE (comparable) extrinsic operator.
 void QueryTemplate.addIsParent(java.lang.String uniqueName)
          Add a meta-data predicate using a given property and the PropertyOperators#IS_PARENT (isParent) extrinsic operator.
 void QueryTemplate.addIsChild(java.lang.String uniqueName)
          Add a meta-data predicate using a given property and the PropertyOperators#IS_CHILD (isChild) extrinsic operator.
 void QueryTemplate.addIsAncestor(java.lang.String uniqueName)
          Add a meta-data predicate using a given property and the PropertyOperators#IS_ANCESTOR (isAncestor) extrinsic operator.
 void QueryTemplate.addIsDescendant(java.lang.String uniqueName)
          Add a meta-data predicate using a given property and the PropertyOperators#IS_DESCENDANT (isDescendant) extrinsic operator.
 void QueryTemplate.addBestMatch(java.lang.String uniqueName)
          Add a meta-data predicate using a given property and the PropertyOperators#BEST_MATCH (bestMatch) extrinsic operator.
 Property PropertyRegistry.getProperty(java.lang.String uniqueName)
          Returns a Property corresponding to the given uniqueName
 boolean PropertyRegistry.isMappedProperty(Property prop)
          Checks, whether the given Property is a leaf or a property derived using a PropertyMapping.
 PropertyMapping PropertyRegistry.getPropertyMapping(Property prop)
          Returns the PropertyMapping for the given Property.
 void PropertyRegistry.unregisterProperty(Property prop)
          Unregisters the given Property from the registry.
 ValueProvider DeliveryContext.getValueProvider(Property prop)
          Returns the ValueProvider for the specified Property.
 boolean DeliveryContext.hasValue(Property prop)
          Checks whether the specified Property has value in the current state of the delivery context.
 boolean DeliveryContext.hasValue(java.lang.String uniqueName)
          Checks whether the property of the specified uniqueName has value in the current state of the delivery context.
 java.lang.Object DeliveryContext.getValue(Property prop)
          Returns the current value of the specified Property.
 java.lang.Object DeliveryContext.getValue(java.lang.String uniqueName)
          Returns the current value of the specified property.