Package org.apache.uima.util
Class TCasToInlineXml
- java.lang.Object
-
- org.apache.uima.util.TCasToInlineXml
-
- All Implemented Interfaces:
TCasFormatter
@Deprecated public class TCasToInlineXml extends java.lang.Object implements TCasFormatter
Deprecated.As of v2.0, useCasToInlineXmlinstead.Generates an inline XML representation of a CAS. Annotation types are represented as XML tags, features are represented as attributes. Note that features whose values are FeatureStructures are not represented.
-
-
Constructor Summary
Constructors Constructor Description TCasToInlineXml()Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description voiddestroy()Deprecated.java.lang.Stringformat(CAS aCAS)Deprecated.Produces a string representation of a CAS.java.lang.Stringformat(CAS aCAS, FSMatchConstraint aFilter)Deprecated.Produces a string representation of a CAS.java.lang.StringgenerateXML(CAS aCAS)Deprecated.java.lang.StringgenerateXML(CAS aCAS, FSMatchConstraint aFilter)Deprecated.
-
-
-
Method Detail
-
destroy
public void destroy()
Deprecated.
-
format
public java.lang.String format(CAS aCAS) throws CASException
Deprecated.Description copied from interface:TCasFormatterProduces a string representation of a CAS.- Specified by:
formatin interfaceTCasFormatter- Parameters:
aCAS- the CAS to be formatted- Returns:
- a string representation of
aCAS. - Throws:
CASException- if an exception occurs reading from the CAS
-
format
public java.lang.String format(CAS aCAS, FSMatchConstraint aFilter) throws CASException
Deprecated.Description copied from interface:TCasFormatterProduces a string representation of a CAS. Only those feature structures that satisfy the specified filter will appear in the string representation.- Specified by:
formatin interfaceTCasFormatter- Parameters:
aCAS- the CAS to be formattedaFilter- a constraint which FeatureStructures must satisfy in order to be included in the resulting string- Returns:
- a string representation of
aCAS. - Throws:
CASException- if an exception occurs reading from the CAS
-
generateXML
public java.lang.String generateXML(CAS aCAS) throws CASException
Deprecated.- Throws:
CASException
-
generateXML
public java.lang.String generateXML(CAS aCAS, FSMatchConstraint aFilter) throws CASException
Deprecated.- Throws:
CASException
-
-