GrammarScope  4.0.0
Public Member Functions | Static Public Member Functions | Protected Attributes | Static Package Attributes | Private Member Functions | Static Private Member Functions | Static Private Attributes | List of all members
grammarscope.io.xml.XMLPrinter Class Referenceabstract
Inheritance diagram for grammarscope.io.xml.XMLPrinter:
Inheritance graph
[legend]
Collaboration diagram for grammarscope.io.xml.XMLPrinter:
Collaboration graph
[legend]

Public Member Functions

String buildDocument (final String text, final String coreferences, final String... sentenceReports)
 
String buildDocument (final String... reports)
 
String buildSentence (final int sentenceId, final Segment sentenceSegment, final String sentenceText, final String tokensString, final String parseTreeString, final String grammaticalStructureString, final String typedDependenciesString, final String semanticGraphsString, final String namedEntitiesString, final String sentimentString, final String entailmentsString, final String triplesString)
 
String tokensToXMLString (final Map< Integer, Token > tokens)
 
String tokensToXMLString (final List< Token > tokens)
 
String parseTreeToXMLString (final AParseTree parseTree)
 
String grammaticalStructureToXMLString (final AGrammaticalStructure grammaticalStructure)
 
String typedDependenciesToXMLString (final Map< TypedDependencyProvider, Map< TypedDependencyMode, ATypedDependencies >> typedDependencies)
 
String semanticGraphsToTypedDependenciesXMLString (final Map< TypedDependencyProvider, Map< TypedDependencyMode, ASemanticGraph >> semanticGraphs)
 
String typedDependenciesToXMLString (final ATypedDependencies typedDependencies)
 
String semanticGraphsToXMLString (final Map< TypedDependencyProvider, Map< TypedDependencyMode, ASemanticGraph >> semanticGraphs)
 
String semanticGraphToXMLString (final ASemanticGraph semanticGraph)
 
String namedEntitiesToXMLString (final ANamedEntities namedEntities)
 
String sentimentToXMLString (final Sentiment sentiment)
 
String entailmentsToXMLString (final List< Entailment > entailments)
 
String triplesToXMLString (final List< Triple > triples)
 
String coreferencesToXMLString (final ACoreferences coreferences)
 
String analysisToXMLString (final AAnalysis analysis, final int sentenceIndex)
 
String textAnalysisToXMLString (final ATextAnalysis textAnalysis)
 

Static Public Member Functions

static String indent (final String str, final int nTabs)
 
static String trimAnnotationKey (final String str)
 

Protected Attributes

String ROOT
 
String ROOT_FORMAT
 
String DOCUMENT
 
String TEXT
 
String SENTENCES
 
String SENTENCE
 
String SENTENCE_IDX
 
String SENTENCE_FROM
 
String SENTENCE_TO
 
String SENTENCE_TEXT
 
String SENTENCE_BEGIN
 
String SENTENCE_END
 
String TOKENS
 
String TOKENS_MODEL
 
String TOKEN
 
String TOKEN_IDX
 
String TOKEN_FROM
 
String TOKEN_TO
 
String TOKEN_WORD
 
String TOKEN_LEMMA
 
String TOKEN_POS
 
String TOKEN_NER
 
String TOKEN_NORM_NER
 
String TOKEN_SENTIMENT
 
String TOKEN_SPEAKER
 
String TOKEN_BEGIN
 
String TOKEN_END
 
String PARSE
 
String PARSE_FORMAT
 
String PARSE_MODEL
 
String PARSE_NODE
 
String PARSE_NODE_IDX
 
String PARSE_NODE_VALUE
 
String PARSE_NODE_SCORE
 
String PARSE_NODE_WORD
 
String PARSE_NODE_WORD_IDX
 
String PARSE_NODE_LEMMA
 
String GSTRUCTURE
 
String GSTRUCTURE_FORMAT
 
String GSTRUCTURE_MODEL
 
String GSNODE
 
String GSNODE_IDX
 
String GSNODE_VALUE
 
String GSNODE_SCORE
 
String GSNODE_RELATION
 
String GSNODE_WORD
 
String GSNODE_WORD_IDX
 
String GSNODE_LEMMA
 
String GSNODE_HEAD
 
String GSNODE_HEAD_TAG
 
String GSNODE_ANNOTATION
 
String GSNODE_ANNOTATION_KEY
 
String GSNODE_DEPENDENT
 
String GSNODE_GOVERNOR
 
String TYPEDDEPENDENCIES_SET
 
String TYPEDDEPENDENCIES_SET_PROVIDER
 
String TYPEDDEPENDENCIES_SET_MODEL
 
String TYPEDDEPENDENCIES
 
String TYPEDDEPENDENCIES_PROVIDER
 
String TYPEDDEPENDENCIES_MODE
 
String TYPEDDEPENDENCIES_STYLE
 
String GRAPH_SET
 
String GRAPH_SET_PROVIDER
 
String GRAPH_SET_MODEL
 
String GRAPH
 
String GRAPH_PROVIDER
 
String GRAPH_MODE
 
String GRAPH_DEPENDENCIES
 
String GRAPH_ROOTS
 
String GRAPH_ROOT
 
String GRAPH_ROOT_IDX
 
String DEPENDENCY
 
String DEPENDENCY_TYPE
 
String RELATION
 
String DEPENDENT
 
String DEPENDENT_IDX
 
String GOVERNOR
 
String GOVERNOR_IDX
 
String NAMED_ENTITIES
 
String NAMED_ENTITY
 
String NAMED_ENTITY_FROM
 
String NAMED_ENTITY_TO
 
String NAMED_ENTITY_WORD
 
String NAMED_ENTITY_GENDER
 
String NAMED_ENTITY_NUMBER
 
String NAMED_ENTITY_ANIMACY
 
String SENTIMENT
 
String SENTIMENT_CLASS
 
String SENTIMENT_VALUE
 
String ENTAILMENTS
 
String ENTAILMENT
 
String ENTAILMENT_SCORE
 
String TRIPLES
 
String TRIPLE
 
String TRIPLE_SUBJECT
 
String TRIPLE_RELATION
 
String TRIPLE_OBJECT
 
String COREFERENCES
 
String COREFERENCE
 
String COREFERENCE_MENTION
 
String COREFERENCE_MENTION_FROM
 
String COREFERENCE_MENTION_TO
 
String COREFERENCE_MENTION_REPRESENTATIVE
 
String COREFERENCE_TEXT
 
String COREFERENCE_HEAD
 
String COREFERENCE_SENTENCE
 
String COREFERENCE_START
 
String COREFERENCE_END
 
String xmlDocumentFormat
 
String xmlSentenceFormat
 

Static Package Attributes

static final Comparator< TypedDependencytypedDependencyComparator
 
static final Comparator< Entry< BasicRelation, AGrammaticalStructure > > depsByIndexComparator
 
static final Comparator< Entry< BasicRelation, AGrammaticalStructure > > govsByIndexComparator = depsByIndexComparator
 

Private Member Functions

void walkTree (final AParseTree tree, final StringBuffer sb, final String indent)
 
void walkGrammaticalStructure (final AGrammaticalStructure node, final StringBuffer sb, final String indent)
 

Static Private Member Functions

static String normalize (final String id)
 

Static Private Attributes

static final boolean stanfordMode = false
 

Detailed Description

XML printer (Artifact structures)

Author
Bernard Bou

Member Function Documentation

◆ analysisToXMLString()

String grammarscope.io.xml.XMLPrinter.analysisToXMLString ( final AAnalysis  analysis,
final int  sentenceIndex 
)

Sentence analysis to XML string

Parameters
analysisanalysis
sentenceIndexsentence index
Returns
XML string

◆ buildDocument() [1/2]

String grammarscope.io.xml.XMLPrinter.buildDocument ( final String  text,
final String  coreferences,
final String...  sentenceReports 
)

Build document XML string

Parameters
texttext
coreferencescoreferences
sentenceReportsXML strings for sentences
Returns
XML string

◆ buildDocument() [2/2]

String grammarscope.io.xml.XMLPrinter.buildDocument ( final String...  reports)

Build document XML string

Parameters
reportsreports
Returns
XML string

◆ buildSentence()

String grammarscope.io.xml.XMLPrinter.buildSentence ( final int  sentenceId,
final Segment  sentenceSegment,
final String  sentenceText,
final String  tokensString,
final String  parseTreeString,
final String  grammaticalStructureString,
final String  typedDependenciesString,
final String  semanticGraphsString,
final String  namedEntitiesString,
final String  sentimentString,
final String  entailmentsString,
final String  triplesString 
)

Assemble sentence to XML format

Parameters
sentenceIdsentence id
sentenceSegmentsentence segment
sentenceTextsentence text
tokensStringtokens
parseTreeStringparse tree
grammaticalStructureStringgrammatical structure
typedDependenciesStringtyped dependencies
semanticGraphsStringsemantic graph
namedEntitiesStringstring for named entities
sentimentStringstring for sentiment
entailmentsStringentailments string
triplesStringtriples string
Returns
assembled string

◆ coreferencesToXMLString()

String grammarscope.io.xml.XMLPrinter.coreferencesToXMLString ( final ACoreferences  coreferences)

Make XML string from coreferences

Parameters
coreferencescoreferences
Returns
XML string

◆ entailmentsToXMLString()

String grammarscope.io.xml.XMLPrinter.entailmentsToXMLString ( final List< Entailment entailments)

Entailments to string

Parameters
entailmentsentailments
Returns
entailments string

◆ grammaticalStructureToXMLString()

String grammarscope.io.xml.XMLPrinter.grammaticalStructureToXMLString ( final AGrammaticalStructure  grammaticalStructure)

Make XML string from grammatical structure

Parameters
grammaticalStructuregrammatical structure
Returns
XML string

◆ indent()

static String grammarscope.io.xml.XMLPrinter.indent ( final String  str,
final int  nTabs 
)
static

Indent string

Parameters
strinput string
nTabsnumber of tabs to indent
Returns
indented string

◆ namedEntitiesToXMLString()

String grammarscope.io.xml.XMLPrinter.namedEntitiesToXMLString ( final ANamedEntities  namedEntities)

Named entities to XML string

Parameters
namedEntitiesnamed entities
Returns
named entities XML string

◆ normalize()

static String grammarscope.io.xml.XMLPrinter.normalize ( final String  id)
staticprivate

String surrounding brackets

Parameters
idid
Returns
new id

◆ parseTreeToXMLString()

String grammarscope.io.xml.XMLPrinter.parseTreeToXMLString ( final AParseTree  parseTree)

Make XML string from parse tree

Parameters
parseTreeparse tree
Returns
XML string

◆ semanticGraphsToTypedDependenciesXMLString()

String grammarscope.io.xml.XMLPrinter.semanticGraphsToTypedDependenciesXMLString ( final Map< TypedDependencyProvider, Map< TypedDependencyMode, ASemanticGraph >>  semanticGraphs)

Make XML string from typed dependencies

Parameters
semanticGraphssemantic graphs
Returns
XML string

◆ semanticGraphsToXMLString()

String grammarscope.io.xml.XMLPrinter.semanticGraphsToXMLString ( final Map< TypedDependencyProvider, Map< TypedDependencyMode, ASemanticGraph >>  semanticGraphs)

Make XML string from semantic graphs

Parameters
semanticGraphssemantic graphs
Returns
XML string

◆ semanticGraphToXMLString()

String grammarscope.io.xml.XMLPrinter.semanticGraphToXMLString ( final ASemanticGraph  semanticGraph)

Make XML string from semantic graph

Parameters
semanticGraphsemantic graph
Returns
XML string

◆ sentimentToXMLString()

String grammarscope.io.xml.XMLPrinter.sentimentToXMLString ( final Sentiment  sentiment)

Sentiment to string

Parameters
sentimentsentiment
Returns
sentiment string

◆ textAnalysisToXMLString()

String grammarscope.io.xml.XMLPrinter.textAnalysisToXMLString ( final ATextAnalysis  textAnalysis)

Text analysis to string

Parameters
textAnalysistext analysis
Returns
XML string

◆ tokensToXMLString() [1/2]

String grammarscope.io.xml.XMLPrinter.tokensToXMLString ( final List< Token tokens)

Make XML string from list of tokens

Parameters
tokenstokens
Returns
XML string

◆ tokensToXMLString() [2/2]

String grammarscope.io.xml.XMLPrinter.tokensToXMLString ( final Map< Integer, Token tokens)

Make XML string from list of tokens

Parameters
tokenstokens
Returns
XML string

◆ trimAnnotationKey()

static String grammarscope.io.xml.XMLPrinter.trimAnnotationKey ( final String  str)
static

Trim string removing glut

Parameters
strstring to trim
Returns
trimmed string

◆ triplesToXMLString()

String grammarscope.io.xml.XMLPrinter.triplesToXMLString ( final List< Triple triples)

Triples to string

Parameters
triplestriples
Returns
triples string

◆ typedDependenciesToXMLString() [1/2]

String grammarscope.io.xml.XMLPrinter.typedDependenciesToXMLString ( final ATypedDependencies  typedDependencies)

Make XML string from typed dependencies

Parameters
typedDependenciestyped dependencies
Returns
XML string

◆ typedDependenciesToXMLString() [2/2]

String grammarscope.io.xml.XMLPrinter.typedDependenciesToXMLString ( final Map< TypedDependencyProvider, Map< TypedDependencyMode, ATypedDependencies >>  typedDependencies)

Make XML string from typed dependencies

Parameters
typedDependenciestyped dependencies
Returns
XML string

◆ walkGrammaticalStructure()

void grammarscope.io.xml.XMLPrinter.walkGrammaticalStructure ( final AGrammaticalStructure  node,
final StringBuffer  sb,
final String  indent 
)
private

Walk tree graph node

Parameters
nodenode
sbstring sb
indentcurrent indent

◆ walkTree()

void grammarscope.io.xml.XMLPrinter.walkTree ( final AParseTree  tree,
final StringBuffer  sb,
final String  indent 
)
private

Walk tree graph node

Parameters
treetree node
sbstring sb
indentcurrent indent

Member Data Documentation

◆ COREFERENCE

String grammarscope.io.xml.XMLPrinter.COREFERENCE
protected

◆ COREFERENCE_END

String grammarscope.io.xml.XMLPrinter.COREFERENCE_END
protected

◆ COREFERENCE_HEAD

String grammarscope.io.xml.XMLPrinter.COREFERENCE_HEAD
protected

◆ COREFERENCE_MENTION

String grammarscope.io.xml.XMLPrinter.COREFERENCE_MENTION
protected

◆ COREFERENCE_MENTION_FROM

String grammarscope.io.xml.XMLPrinter.COREFERENCE_MENTION_FROM
protected

◆ COREFERENCE_MENTION_REPRESENTATIVE

String grammarscope.io.xml.XMLPrinter.COREFERENCE_MENTION_REPRESENTATIVE
protected

◆ COREFERENCE_MENTION_TO

String grammarscope.io.xml.XMLPrinter.COREFERENCE_MENTION_TO
protected

◆ COREFERENCE_SENTENCE

String grammarscope.io.xml.XMLPrinter.COREFERENCE_SENTENCE
protected

◆ COREFERENCE_START

String grammarscope.io.xml.XMLPrinter.COREFERENCE_START
protected

◆ COREFERENCE_TEXT

String grammarscope.io.xml.XMLPrinter.COREFERENCE_TEXT
protected

◆ COREFERENCES

String grammarscope.io.xml.XMLPrinter.COREFERENCES
protected

◆ DEPENDENCY

String grammarscope.io.xml.XMLPrinter.DEPENDENCY
protected

◆ DEPENDENCY_TYPE

String grammarscope.io.xml.XMLPrinter.DEPENDENCY_TYPE
protected

◆ DEPENDENT

String grammarscope.io.xml.XMLPrinter.DEPENDENT
protected

◆ DEPENDENT_IDX

String grammarscope.io.xml.XMLPrinter.DEPENDENT_IDX
protected

◆ depsByIndexComparator

final Comparator<Entry<BasicRelation, AGrammaticalStructure> > grammarscope.io.xml.XMLPrinter.depsByIndexComparator
staticpackage
Initial value:
= Comparator
.comparingInt((Entry<BasicRelation, AGrammaticalStructure> e) -> e.getValue().getIndex()).thenComparing(e -> e.getKey().id)

◆ DOCUMENT

String grammarscope.io.xml.XMLPrinter.DOCUMENT
protected

◆ ENTAILMENT

String grammarscope.io.xml.XMLPrinter.ENTAILMENT
protected

◆ ENTAILMENT_SCORE

String grammarscope.io.xml.XMLPrinter.ENTAILMENT_SCORE
protected

◆ ENTAILMENTS

String grammarscope.io.xml.XMLPrinter.ENTAILMENTS
protected

◆ GOVERNOR

String grammarscope.io.xml.XMLPrinter.GOVERNOR
protected

◆ GOVERNOR_IDX

String grammarscope.io.xml.XMLPrinter.GOVERNOR_IDX
protected

◆ govsByIndexComparator

final Comparator<Entry<BasicRelation, AGrammaticalStructure> > grammarscope.io.xml.XMLPrinter.govsByIndexComparator = depsByIndexComparator
staticpackage

◆ GRAPH

String grammarscope.io.xml.XMLPrinter.GRAPH
protected

◆ GRAPH_DEPENDENCIES

String grammarscope.io.xml.XMLPrinter.GRAPH_DEPENDENCIES
protected

◆ GRAPH_MODE

String grammarscope.io.xml.XMLPrinter.GRAPH_MODE
protected

◆ GRAPH_PROVIDER

String grammarscope.io.xml.XMLPrinter.GRAPH_PROVIDER
protected

◆ GRAPH_ROOT

String grammarscope.io.xml.XMLPrinter.GRAPH_ROOT
protected

◆ GRAPH_ROOT_IDX

String grammarscope.io.xml.XMLPrinter.GRAPH_ROOT_IDX
protected

◆ GRAPH_ROOTS

String grammarscope.io.xml.XMLPrinter.GRAPH_ROOTS
protected

◆ GRAPH_SET

String grammarscope.io.xml.XMLPrinter.GRAPH_SET
protected

◆ GRAPH_SET_MODEL

String grammarscope.io.xml.XMLPrinter.GRAPH_SET_MODEL
protected

◆ GRAPH_SET_PROVIDER

String grammarscope.io.xml.XMLPrinter.GRAPH_SET_PROVIDER
protected

◆ GSNODE

String grammarscope.io.xml.XMLPrinter.GSNODE
protected

◆ GSNODE_ANNOTATION

String grammarscope.io.xml.XMLPrinter.GSNODE_ANNOTATION
protected

◆ GSNODE_ANNOTATION_KEY

String grammarscope.io.xml.XMLPrinter.GSNODE_ANNOTATION_KEY
protected

◆ GSNODE_DEPENDENT

String grammarscope.io.xml.XMLPrinter.GSNODE_DEPENDENT
protected

◆ GSNODE_GOVERNOR

String grammarscope.io.xml.XMLPrinter.GSNODE_GOVERNOR
protected

◆ GSNODE_HEAD

String grammarscope.io.xml.XMLPrinter.GSNODE_HEAD
protected

◆ GSNODE_HEAD_TAG

String grammarscope.io.xml.XMLPrinter.GSNODE_HEAD_TAG
protected

◆ GSNODE_IDX

String grammarscope.io.xml.XMLPrinter.GSNODE_IDX
protected

◆ GSNODE_LEMMA

String grammarscope.io.xml.XMLPrinter.GSNODE_LEMMA
protected

◆ GSNODE_RELATION

String grammarscope.io.xml.XMLPrinter.GSNODE_RELATION
protected

◆ GSNODE_SCORE

String grammarscope.io.xml.XMLPrinter.GSNODE_SCORE
protected

◆ GSNODE_VALUE

String grammarscope.io.xml.XMLPrinter.GSNODE_VALUE
protected

◆ GSNODE_WORD

String grammarscope.io.xml.XMLPrinter.GSNODE_WORD
protected

◆ GSNODE_WORD_IDX

String grammarscope.io.xml.XMLPrinter.GSNODE_WORD_IDX
protected

◆ GSTRUCTURE

String grammarscope.io.xml.XMLPrinter.GSTRUCTURE
protected

◆ GSTRUCTURE_FORMAT

String grammarscope.io.xml.XMLPrinter.GSTRUCTURE_FORMAT
protected

◆ GSTRUCTURE_MODEL

String grammarscope.io.xml.XMLPrinter.GSTRUCTURE_MODEL
protected

◆ NAMED_ENTITIES

String grammarscope.io.xml.XMLPrinter.NAMED_ENTITIES
protected

◆ NAMED_ENTITY

String grammarscope.io.xml.XMLPrinter.NAMED_ENTITY
protected

◆ NAMED_ENTITY_ANIMACY

String grammarscope.io.xml.XMLPrinter.NAMED_ENTITY_ANIMACY
protected

◆ NAMED_ENTITY_FROM

String grammarscope.io.xml.XMLPrinter.NAMED_ENTITY_FROM
protected

◆ NAMED_ENTITY_GENDER

String grammarscope.io.xml.XMLPrinter.NAMED_ENTITY_GENDER
protected

◆ NAMED_ENTITY_NUMBER

String grammarscope.io.xml.XMLPrinter.NAMED_ENTITY_NUMBER
protected

◆ NAMED_ENTITY_TO

String grammarscope.io.xml.XMLPrinter.NAMED_ENTITY_TO
protected

◆ NAMED_ENTITY_WORD

String grammarscope.io.xml.XMLPrinter.NAMED_ENTITY_WORD
protected

◆ PARSE

String grammarscope.io.xml.XMLPrinter.PARSE
protected

◆ PARSE_FORMAT

String grammarscope.io.xml.XMLPrinter.PARSE_FORMAT
protected

◆ PARSE_MODEL

String grammarscope.io.xml.XMLPrinter.PARSE_MODEL
protected

◆ PARSE_NODE

String grammarscope.io.xml.XMLPrinter.PARSE_NODE
protected

◆ PARSE_NODE_IDX

String grammarscope.io.xml.XMLPrinter.PARSE_NODE_IDX
protected

◆ PARSE_NODE_LEMMA

String grammarscope.io.xml.XMLPrinter.PARSE_NODE_LEMMA
protected

◆ PARSE_NODE_SCORE

String grammarscope.io.xml.XMLPrinter.PARSE_NODE_SCORE
protected

◆ PARSE_NODE_VALUE

String grammarscope.io.xml.XMLPrinter.PARSE_NODE_VALUE
protected

◆ PARSE_NODE_WORD

String grammarscope.io.xml.XMLPrinter.PARSE_NODE_WORD
protected

◆ PARSE_NODE_WORD_IDX

String grammarscope.io.xml.XMLPrinter.PARSE_NODE_WORD_IDX
protected

◆ RELATION

String grammarscope.io.xml.XMLPrinter.RELATION
protected

◆ ROOT

String grammarscope.io.xml.XMLPrinter.ROOT
protected

◆ ROOT_FORMAT

String grammarscope.io.xml.XMLPrinter.ROOT_FORMAT
protected

◆ SENTENCE

String grammarscope.io.xml.XMLPrinter.SENTENCE
protected

◆ SENTENCE_BEGIN

String grammarscope.io.xml.XMLPrinter.SENTENCE_BEGIN
protected

◆ SENTENCE_END

String grammarscope.io.xml.XMLPrinter.SENTENCE_END
protected

◆ SENTENCE_FROM

String grammarscope.io.xml.XMLPrinter.SENTENCE_FROM
protected

◆ SENTENCE_IDX

String grammarscope.io.xml.XMLPrinter.SENTENCE_IDX
protected

◆ SENTENCE_TEXT

String grammarscope.io.xml.XMLPrinter.SENTENCE_TEXT
protected

◆ SENTENCE_TO

String grammarscope.io.xml.XMLPrinter.SENTENCE_TO
protected

◆ SENTENCES

String grammarscope.io.xml.XMLPrinter.SENTENCES
protected

◆ SENTIMENT

String grammarscope.io.xml.XMLPrinter.SENTIMENT
protected

◆ SENTIMENT_CLASS

String grammarscope.io.xml.XMLPrinter.SENTIMENT_CLASS
protected

◆ SENTIMENT_VALUE

String grammarscope.io.xml.XMLPrinter.SENTIMENT_VALUE
protected

◆ stanfordMode

final boolean grammarscope.io.xml.XMLPrinter.stanfordMode = false
staticprivate

Whether output mimics Stanford output

◆ TEXT

String grammarscope.io.xml.XMLPrinter.TEXT
protected

◆ TOKEN

String grammarscope.io.xml.XMLPrinter.TOKEN
protected

◆ TOKEN_BEGIN

String grammarscope.io.xml.XMLPrinter.TOKEN_BEGIN
protected

◆ TOKEN_END

String grammarscope.io.xml.XMLPrinter.TOKEN_END
protected

◆ TOKEN_FROM

String grammarscope.io.xml.XMLPrinter.TOKEN_FROM
protected

◆ TOKEN_IDX

String grammarscope.io.xml.XMLPrinter.TOKEN_IDX
protected

◆ TOKEN_LEMMA

String grammarscope.io.xml.XMLPrinter.TOKEN_LEMMA
protected

◆ TOKEN_NER

String grammarscope.io.xml.XMLPrinter.TOKEN_NER
protected

◆ TOKEN_NORM_NER

String grammarscope.io.xml.XMLPrinter.TOKEN_NORM_NER
protected

◆ TOKEN_POS

String grammarscope.io.xml.XMLPrinter.TOKEN_POS
protected

◆ TOKEN_SENTIMENT

String grammarscope.io.xml.XMLPrinter.TOKEN_SENTIMENT
protected

◆ TOKEN_SPEAKER

String grammarscope.io.xml.XMLPrinter.TOKEN_SPEAKER
protected

◆ TOKEN_TO

String grammarscope.io.xml.XMLPrinter.TOKEN_TO
protected

◆ TOKEN_WORD

String grammarscope.io.xml.XMLPrinter.TOKEN_WORD
protected

◆ TOKENS

String grammarscope.io.xml.XMLPrinter.TOKENS
protected

◆ TOKENS_MODEL

String grammarscope.io.xml.XMLPrinter.TOKENS_MODEL
protected

◆ TRIPLE

String grammarscope.io.xml.XMLPrinter.TRIPLE
protected

◆ TRIPLE_OBJECT

String grammarscope.io.xml.XMLPrinter.TRIPLE_OBJECT
protected

◆ TRIPLE_RELATION

String grammarscope.io.xml.XMLPrinter.TRIPLE_RELATION
protected

◆ TRIPLE_SUBJECT

String grammarscope.io.xml.XMLPrinter.TRIPLE_SUBJECT
protected

◆ TRIPLES

String grammarscope.io.xml.XMLPrinter.TRIPLES
protected

◆ TYPEDDEPENDENCIES

String grammarscope.io.xml.XMLPrinter.TYPEDDEPENDENCIES
protected

◆ TYPEDDEPENDENCIES_MODE

String grammarscope.io.xml.XMLPrinter.TYPEDDEPENDENCIES_MODE
protected

◆ TYPEDDEPENDENCIES_PROVIDER

String grammarscope.io.xml.XMLPrinter.TYPEDDEPENDENCIES_PROVIDER
protected

◆ TYPEDDEPENDENCIES_SET

String grammarscope.io.xml.XMLPrinter.TYPEDDEPENDENCIES_SET
protected

◆ TYPEDDEPENDENCIES_SET_MODEL

String grammarscope.io.xml.XMLPrinter.TYPEDDEPENDENCIES_SET_MODEL
protected

◆ TYPEDDEPENDENCIES_SET_PROVIDER

String grammarscope.io.xml.XMLPrinter.TYPEDDEPENDENCIES_SET_PROVIDER
protected

◆ TYPEDDEPENDENCIES_STYLE

String grammarscope.io.xml.XMLPrinter.TYPEDDEPENDENCIES_STYLE
protected

◆ typedDependencyComparator

final Comparator<TypedDependency> grammarscope.io.xml.XMLPrinter.typedDependencyComparator
staticpackage
Initial value:
= (td1, td2) -> {
final int rel = td1.getRelation().id.compareTo(td2.getRelation().id);
if (rel != 0)
return rel;
final int dep = td1.getDependentWord().compareTo(td2.getDependentWord());
if (dep != 0)
return dep;
return td1.getGovernorWord().compareTo(td2.getGovernorWord());
}

◆ xmlDocumentFormat

String grammarscope.io.xml.XMLPrinter.xmlDocumentFormat
protected

Document skeleton format

◆ xmlSentenceFormat

String grammarscope.io.xml.XMLPrinter.xmlSentenceFormat
protected

Sentence skeleton format


The documentation for this class was generated from the following file: