Package org.apache.uima.search.impl
Class Filter_impl
- java.lang.Object
-
- org.apache.uima.resource.metadata.impl.MetaDataObject_impl
-
- org.apache.uima.search.impl.Filter_impl
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Cloneable,MetaDataObject,Filter,XMLizable
public class Filter_impl extends MetaDataObject_impl implements Filter
- See Also:
- Serialized Form
-
-
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 Modifier and Type Field Description private java.lang.StringmExpressionprivate java.lang.StringmSyntaxprivate static longserialVersionUIDprivate static XmlizationInfoXMLIZATION_INFO-
Fields inherited from class org.apache.uima.resource.metadata.impl.MetaDataObject_impl
serialContext
-
-
Constructor Summary
Constructors Constructor Description Filter_impl()Filter_impl(java.lang.String aSyntax, java.lang.String aExpression)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidbuildFromXMLElement(org.w3c.dom.Element aElement, XMLParser aParser, XMLParser.ParsingOptions aOptions)Initializes this object from its XML DOM representation.java.lang.StringgetExpression()Gets the filter expression.java.lang.StringgetSyntax()Gets the declared syntax for this filter's expression.protected XmlizationInfogetXmlizationInfo()To be implemented by subclasses to return information describing how to represent this object in XML.voidsetExpression(java.lang.String aExpression)Sets the filter expression.voidsetSyntax(java.lang.String aSyntax)Sets the declared syntax for this this filter's expression.voidtoXML(org.xml.sax.ContentHandler aContentHandler, boolean aWriteDefaultNamespaceAttribute)Writes this object's XML representation by making calls on a SAXContentHandler.-
Methods inherited from class org.apache.uima.resource.metadata.impl.MetaDataObject_impl
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, 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.util.XMLizable
buildFromXMLElement, toXML, toXML, toXML
-
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
mExpression
private java.lang.String mExpression
-
mSyntax
private java.lang.String mSyntax
-
XMLIZATION_INFO
private static final XmlizationInfo XMLIZATION_INFO
-
-
Method Detail
-
getSyntax
public java.lang.String getSyntax()
Description copied from interface:FilterGets the declared syntax for this filter's expression.
-
setSyntax
public void setSyntax(java.lang.String aSyntax)
Description copied from interface:FilterSets the declared syntax for this this filter's expression.
-
getExpression
public java.lang.String getExpression()
Description copied from interface:FilterGets the filter expression. This is a string intended to be interpreted according to thesyntax.- Specified by:
getExpressionin interfaceFilter- Returns:
- the filter expression
-
setExpression
public void setExpression(java.lang.String aExpression)
Description copied from interface:FilterSets the filter expression. This is a string intended to be interpreted according to thesyntax.- Specified by:
setExpressionin interfaceFilter- Parameters:
aExpression- the filter expression
-
buildFromXMLElement
public void buildFromXMLElement(org.w3c.dom.Element aElement, XMLParser aParser, XMLParser.ParsingOptions aOptions) throws InvalidXMLExceptionDescription copied from class:MetaDataObject_implInitializes this object from its XML DOM representation. This method is typically called from theXMLParser. It is overridden by specific Java impl classes to provide additional defaulting (e.g. see AnalysisEngineDescription_impl)- Specified by:
buildFromXMLElementin interfaceXMLizable- Overrides:
buildFromXMLElementin classMetaDataObject_impl- Parameters:
aElement- the XML element that represents this object.aParser- a reference to the UIMAXMLParser. TheXMLParser.buildObject(Element)method can be used to construct sub-objects.aOptions- option settings- Throws:
InvalidXMLException- if the input XML element does not specify a valid object
-
toXML
public void toXML(org.xml.sax.ContentHandler aContentHandler, boolean aWriteDefaultNamespaceAttribute) throws org.xml.sax.SAXExceptionDescription copied from interface:XMLizableWrites this object's XML representation by making calls on a SAXContentHandler.- Specified by:
toXMLin interfaceXMLizable- Overrides:
toXMLin classMetaDataObject_impl- Parameters:
aContentHandler- the content handler to which this object will write events that describe its XML representation.aWriteDefaultNamespaceAttribute- whether the namespace of this element should be written as the default namespace. This should be done only for the root element, and it defaults to false.- Throws:
org.xml.sax.SAXException- pass thru- See Also:
This is called internally, also for JSon serialization If this is the first call to serialize, create a serialContext (and clean up afterwards) Other callers (e.g. JSON) must set the serialContext first before calling
-
getXmlizationInfo
protected XmlizationInfo getXmlizationInfo()
Description copied from class:MetaDataObject_implTo be implemented by subclasses to return information describing how to represent this object in XML.- Specified by:
getXmlizationInfoin classMetaDataObject_impl- Returns:
- information defining this object's XML representation
-
-