Class SimplePrecondition_impl
java.lang.Object
org.apache.uima.resource.metadata.impl.MetaDataObject_impl
org.apache.uima.resource.metadata.impl.SimplePrecondition_impl
- All Implemented Interfaces:
Serializable
,Cloneable
,MetaDataObject
,Precondition
,SimplePrecondition
,XMLizable
- Direct Known Subclasses:
LanguagePrecondition_impl
,MimeTypePrecondition_impl
Reference implementation of
SimplePrecondition
.- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class org.apache.uima.resource.metadata.impl.MetaDataObject_impl
MetaDataObject_impl.MetaDataAttr, MetaDataObject_impl.SerialContext, MetaDataObject_impl.Serializer
-
Field Summary
Fields inherited from class org.apache.uima.resource.metadata.impl.MetaDataObject_impl
serialContext
Fields inherited from interface org.apache.uima.resource.metadata.SimplePrecondition
ELEMENT_OF, EQUAL, LANGUAGE_SUBSUMED, PRECONDITION_TYPE
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionboolean
Determines if this precondition is satisfied by a CAS.Retrieves the literal value to which features' values will be compared.boolean
Retrieves the default value for this precondition.Gets the name of the feature to be tested.Retrieves the name of the FeatureStructure index containing FeatureStructures to be tested by this precondition.Retrieves the FSMatchConstraint that determines which CAS feature structures will be tested by this precondition.Gets the type of this precondition.Retrieves the predicate used to compare the test value to the comparison value.protected XmlizationInfo
To be implemented by subclasses to return information describing how to represent this object in XML.protected static boolean
isValidPredicateName
(Object aName) Determines whether the given String is a valid name a predicate defined by this class.void
setComparisonValue
(Object aValue) Sets the literal value to which features' values will be compared.void
setDefault
(boolean aDefault) Sets the default value for this precondition.void
setFeatureName
(String aFeatureName) Sets the name of the feature to be tested.void
setFsIndexName
(String aIndexName) Sets the name of the FeatureStructure index containing FeatureStructures to be tested by this precondition.void
setFsMatchConstraint
(FSMatchConstraint aConstraint) Sets the FSMatchConstraint that determines which CAS feature structures will be tested by this precondition.void
setPredicate
(String aPredicate) Sets the predicate used to compare the test value to the comparison value.Methods inherited from class org.apache.uima.resource.metadata.impl.MetaDataObject_impl
buildFromXMLElement, buildFromXMLElement, clone, equals, getAdditionalAttributes, getAttributeClass, getAttributeValue, getInfoset, getMatchingNode, getPropertyDescriptors, getPropertyXmlInfo, getRelativePathBase, getSerialContext, getSourceUrl, getSourceUrlString, getWrapperClass, getXMLAttributes, hashCode, isModifiable, listAttributes, readArrayPropertyValueFromXMLElement, readMapPropertyFromXml, readPropertyValueFromXMLElement, readUnknownPropertyValueFromXMLElement, resolveSettings, setAttributeValue, setInfoset, setSourceUrl, setSourceUrlIfNull, toString, toXML, toXML, toXML, toXML, valueIsNullOrEmptyArray, writeArrayPropertyAsElement, writeMapPropertyToXml, writePropertyAsElement
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface org.apache.uima.resource.metadata.MetaDataObject
clone, equals, getAttributeValue, getSourceUrl, getSourceUrlString, isModifiable, listAttributes, setAttributeValue, setSourceUrl
Methods inherited from interface org.apache.uima.util.XMLizable
buildFromXMLElement, buildFromXMLElement, toXML, toXML, toXML, toXML
-
Constructor Details
-
SimplePrecondition_impl
public SimplePrecondition_impl()
-
-
Method Details
-
getPreconditionType
Description copied from interface:SimplePrecondition
Gets the type of this precondition. Each sub-interface ofPrecondition
has its own standard type identifier String. These identifier Strings are used instead of Java class names in order to ease portability of metadata to other languages.- Specified by:
getPreconditionType
in interfacePrecondition
- Specified by:
getPreconditionType
in interfaceSimplePrecondition
- Returns:
SimplePrecondition.PRECONDITION_TYPE
- See Also:
-
getDefault
public boolean getDefault()Description copied from interface:SimplePrecondition
Retrieves the default value for this precondition. This is the value returned if there is no applicable test value in the CAS.- Specified by:
getDefault
in interfaceSimplePrecondition
- Returns:
- the default value
- See Also:
-
getFeatureName
Description copied from interface:SimplePrecondition
Gets the name of the feature to be tested.- Specified by:
getFeatureName
in interfaceSimplePrecondition
- Returns:
- the feature name,
null
if none - See Also:
-
getFsIndexName
Description copied from interface:SimplePrecondition
Retrieves the name of the FeatureStructure index containing FeatureStructures to be tested by this precondition.- Specified by:
getFsIndexName
in interfaceSimplePrecondition
- Returns:
- the name of the FS index,
null
if the default annotation index should be used - See Also:
-
getFsMatchConstraint
Description copied from interface:SimplePrecondition
Retrieves the FSMatchConstraint that determines which CAS feature structures will be tested by this precondition.- Specified by:
getFsMatchConstraint
in interfaceSimplePrecondition
- Returns:
- the FS match constraint,
null
if none - See Also:
-
setDefault
public void setDefault(boolean aDefault) Description copied from interface:SimplePrecondition
Sets the default value for this precondition. This is the value returned if there is no applicable test value in the CAS.- Specified by:
setDefault
in interfaceSimplePrecondition
- Parameters:
aDefault
- the default value- See Also:
-
setFeatureName
Description copied from interface:SimplePrecondition
Sets the name of the feature to be tested.- Specified by:
setFeatureName
in interfaceSimplePrecondition
- Parameters:
aFeatureName
- the feature name,null
if none- See Also:
-
setFsIndexName
Description copied from interface:SimplePrecondition
Sets the name of the FeatureStructure index containing FeatureStructures to be tested by this precondition.- Specified by:
setFsIndexName
in interfaceSimplePrecondition
- Parameters:
aIndexName
- the name of the FS index,null
if the default annotation index should be used- See Also:
-
setFsMatchConstraint
Description copied from interface:SimplePrecondition
Sets the FSMatchConstraint that determines which CAS feature structures will be tested by this precondition.- Specified by:
setFsMatchConstraint
in interfaceSimplePrecondition
- Parameters:
aConstraint
- the FS match constraint,null
if none- See Also:
-
evaluate
Description copied from interface:Precondition
Determines if this precondition is satisfied by a CAS.- Specified by:
evaluate
in interfacePrecondition
- Parameters:
aCAS
- the CAS against which to evaluate this precondition- Returns:
- true if and only if the CAS satisfies this precondition.
- See Also:
-
getComparisonValue
Description copied from interface:SimplePrecondition
Retrieves the literal value to which features' values will be compared.- Specified by:
getComparisonValue
in interfaceSimplePrecondition
- Returns:
- the value, which must be a String, Integer, Float, Boolean or an array of one of those four types.
- See Also:
-
setComparisonValue
Description copied from interface:SimplePrecondition
Sets the literal value to which features' values will be compared.- Specified by:
setComparisonValue
in interfaceSimplePrecondition
- Parameters:
aValue
- the comparison value, which must be a String, Integer, Float, Boolean, or an array of one of those four types.- See Also:
-
getPredicate
Description copied from interface:SimplePrecondition
Retrieves the predicate used to compare the test value to the comparison value.- Specified by:
getPredicate
in interfaceSimplePrecondition
- Returns:
- a String that identifies the predicate used. This will always match one of the constants defined on this interface.
- See Also:
-
setPredicate
Description copied from interface:SimplePrecondition
Sets the predicate used to compare the test value to the comparison value.- Specified by:
setPredicate
in interfaceSimplePrecondition
- Parameters:
aPredicate
- a String that identifies the predicate used. This must match one of the constants defined on this interface.- See Also:
-
isValidPredicateName
Determines whether the given String is a valid name a predicate defined by this class. Valid predicate names are legal arguments to thesetPredicate(String)
method, and are defined by constants on theSimplePrecondition
interface.- Parameters:
aName
- an Object to test- Returns:
- true if and only if
aName
is aString
that is a valid predicate name.
-
getXmlizationInfo
Description copied from class:MetaDataObject_impl
To be implemented by subclasses to return information describing how to represent this object in XML.- Specified by:
getXmlizationInfo
in classMetaDataObject_impl
- Returns:
- information defining this object's XML representation
-