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

Public Member Functions

boolean init ()
 

Public Attributes

boolean stanfordMode = true
 

Protected Member Functions

 XMLDocument (final URL url)
 

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 TOKEN
 
String TOKEN_IDX
 
String TOKEN_FROM
 
String TOKEN_TO
 
String TOKEN_BEGIN
 
String TOKEN_END
 
String TOKEN_WORD
 
String TOKEN_LEMMA
 
String TOKEN_POS
 
String TOKEN_NER
 
String TOKEN_NORM_NER
 
String TOKEN_SENTIMENT
 
String TOKEN_SPEAKER
 
String PARSE
 
String PARSE_FORMAT
 
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 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_ANNOTATION
 
String GSNODE_ANNOTATION_KEY
 
String GSNODE_DEPENDENT
 
String GSNODE_GOVERNOR
 
String TYPEDDEPENDENCIES_SET
 
String TYPEDDEPENDENCIES
 
String TYPEDDEPENDENCIES_PROVIDER
 
String TYPEDDEPENDENCIES_MODE
 
String TYPEDDEPENDENCIES_STYLE
 
String GRAPH_SET
 
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 text
 
List< List< WordSegment > > segments
 
Map< Integer, Map< Integer, Token > > tokens
 
Map< Integer, AParseTreeparses
 
Map< Integer, AGrammaticalStructuregrammaticalStructures
 
Map< Integer, Map< TypedDependencyProvider, Map< TypedDependencyMode, ATypedDependencies > > > typedDependencies
 
Map< Integer, Map< TypedDependencyProvider, Map< TypedDependencyMode, ASemanticGraph > > > semanticGraphs
 
Map< Integer, APartsOfSpeechposes
 
Map< Integer, ANamedEntitiesnamedEntities
 
Map< Integer, Sentimentsentiments
 
Map< Integer, List< Entailment > > entailments
 
Map< Integer, List< Triple > > triples
 
ACoreferences coreferences
 
Document domDocument
 
final URL url
 

Private Member Functions

void makeDocument (final Document document)
 
void processSentences (final Element sentencesElement, final StringBuffer textBuilder, final List< List< WordSegment >> segments, final Map< Integer, AParseTree > parseTrees, final Map< Integer, AGrammaticalStructure > grammaticalStructures, final Map< Integer, Map< TypedDependencyProvider, Map< TypedDependencyMode, ATypedDependencies >>> typedDependencies, final Map< Integer, Map< TypedDependencyProvider, Map< TypedDependencyMode, ASemanticGraph >>> semanticGraphs, final Map< Integer, Sentiment > sentiments, final Map< Integer, List< Entailment >> entailments, final Map< Integer, List< Triple >> triples)
 
Map< Integer, TokenmakeTokens (final Element sentenceElement, final int sentenceIdx, final List< WordSegment > wordSegments, final StringBuffer sb)
 
Token makeToken (final Element tokenElement, final int sentenceIdx, final List< WordSegment > wordSegments, final StringBuffer sb)
 
AParseTree makeParse (final Element sentenceElement)
 
MutableAParseTree makeXMLParse (final Element nodeElement)
 
AGrammaticalStructure makeGrammaticalStructure (final Element sentenceElement)
 
MutableAGrammaticalStructure makeXMLGrammaticalStructure (final Element nodeElement)
 
MutableAGrammaticalStructure makeXMLGrammaticalStructure1 (final Element nodeElement, final Map< String, MutableAGrammaticalStructure > idMap)
 
MutableAGrammaticalStructure makeXMLGrammaticalStructure2 (final Element nodeElement, final Map< String, MutableAGrammaticalStructure > idMap)
 
String grammaticalStructureNodeToId (final Element nodeElement)
 
Map< TypedDependencyProvider, Map< TypedDependencyMode, ATypedDependencies > > makeTypedDependencies (final Element sentenceElement, final Map< Integer, Token > tokens)
 
Map< TypedDependencyProvider, Map< TypedDependencyMode, ATypedDependencies > > makeCompatTypedDependencies (final Element sentenceElement, final Map< Integer, Token > tokens)
 
ATypedDependencies makeATypedDependencies (final Element dependenciesElement, final Map< Integer, Token > tokens)
 
TypedDependency makeTypedDependency (final Element typedDependencyElement, final Map< Integer, Token > tokens)
 
Map< TypedDependencyProvider, Map< TypedDependencyMode, ASemanticGraph > > makeSemanticGraphs (final Element sentenceElement, final Map< Integer, Token > tokens)
 
List< Integer > makeGraphRootIndices (final Element graphRootsElement)
 
Sentiment makeSentiment (final Element sentenceElement)
 
List< EntailmentmakeEntailments (final Element sentenceElement)
 
List< TriplemakeTriples (final Element sentenceElement)
 
ACoreferences makeCoreferences (final Element documentElement)
 

Static Private Member Functions

static Document makeDomDocument (final URL url) throws IOException, SAXException, ParserConfigurationException
 
static Token getToken (final String id, final int index, final Map< Integer, Token > tokens)
 
static String grammaticalStructureNodeToId (final String value, final int index)
 
static String makeId (final String value)
 
static Map< Integer, APartsOfSpeechmakePoses (final Map< Integer, Map< Integer, Token >> tokens)
 
static Map< Integer, ANamedEntitiesmakeNamedEntities (final Map< Integer, Map< Integer, Token >> tokens)
 
static Element getFirstLevel1ElementByTagName (final Element parentElement, final String tagName)
 
static String getFirstLevel1ElementTextByTagName (final Element parentElement, final String tagName)
 
static List< Element > getLevel1ChildElementsByTagName (final Element element, final String tagName)
 
static TypedDependencyProvider parseProvider (final String providerString)
 
static TypedDependencyMode parseMode (final String modeString)
 

Detailed Description

Document (as read from XML formatted data - the format is extended from the pipeline format)

Author
Bernard Bou

Constructor & Destructor Documentation

◆ XMLDocument()

grammarscope.io.xml.XMLDocument.XMLDocument ( final URL  url)
protected

Constructor

Parameters
urlXML document URL

Member Function Documentation

◆ getFirstLevel1ElementByTagName()

static Element grammarscope.io.xml.XMLDocument.getFirstLevel1ElementByTagName ( final Element  parentElement,
final String  tagName 
)
staticprivate

Find DOM element with given tag among first level children

Parameters
parentElementstarting DOM element
tagNametag
Returns
DOM element if found, null if none

◆ getFirstLevel1ElementTextByTagName()

static String grammarscope.io.xml.XMLDocument.getFirstLevel1ElementTextByTagName ( final Element  parentElement,
final String  tagName 
)
staticprivate

Get text of DOM element with given tag among first level children

Parameters
parentElementparent element
tagNametag name
Returns
text

◆ getLevel1ChildElementsByTagName()

static List<Element> grammarscope.io.xml.XMLDocument.getLevel1ChildElementsByTagName ( final Element  element,
final String  tagName 
)
staticprivate

Find DOM elements with given tag among first level children

Parameters
elementstarting DOM element
tagNametag
Returns
DOM element if found, null if none

◆ getToken()

static Token grammarscope.io.xml.XMLDocument.getToken ( final String  id,
final int  index,
final Map< Integer, Token tokens 
)
staticprivate

Get token

Parameters
idid
indexindex
tokenstoken map
Returns
token

◆ grammaticalStructureNodeToId() [1/2]

String grammarscope.io.xml.XMLDocument.grammaticalStructureNodeToId ( final Element  nodeElement)
private

Grammatical structure node id

Parameters
nodeElementgrammatical structure node element
Returns
grammatical structure node id

◆ grammaticalStructureNodeToId() [2/2]

static String grammarscope.io.xml.XMLDocument.grammaticalStructureNodeToId ( final String  value,
final int  index 
)
staticprivate

Grammatical structure node id

Parameters
valuegrammatical structure node value
indexgrammatical structure node index
Returns
grammatical structure node id

◆ init()

boolean grammarscope.io.xml.XMLDocument.init ( )

Init DOM parsing

Returns
true if successful

◆ makeATypedDependencies()

ATypedDependencies grammarscope.io.xml.XMLDocument.makeATypedDependencies ( final Element  dependenciesElement,
final Map< Integer, Token tokens 
)
private

Make typed dependencies from element

Parameters
dependenciesElementelement
tokensindexed tokens
Returns
typed dependencies artifact

◆ makeCompatTypedDependencies()

Map<TypedDependencyProvider, Map<TypedDependencyMode, ATypedDependencies> > grammarscope.io.xml.XMLDocument.makeCompatTypedDependencies ( final Element  sentenceElement,
final Map< Integer, Token tokens 
)
private

Make compat typed dependencies from element

Parameters
sentenceElementelement
tokenssentence-indexed tokens
Returns
semantic graph artifacts

◆ makeCoreferences()

ACoreferences grammarscope.io.xml.XMLDocument.makeCoreferences ( final Element  documentElement)
private

Make coreferences

Parameters
documentElementdocument element
Returns
coreferences

◆ makeDocument()

void grammarscope.io.xml.XMLDocument.makeDocument ( final Document  document)
private

Build factory from DOM document

Parameters
documentDOM document

◆ makeDomDocument()

static Document grammarscope.io.xml.XMLDocument.makeDomDocument ( final URL  url) throws IOException, SAXException, ParserConfigurationException
staticprivate

Build DOM document from URL

Parameters
urlurl
Returns
DOM document
Exceptions
IOExceptionexception
SAXExceptionexception
ParserConfigurationExceptionexception

◆ makeEntailments()

List<Entailment> grammarscope.io.xml.XMLDocument.makeEntailments ( final Element  sentenceElement)
private

Make entailments

Parameters
sentenceElementsentence element
Returns
entailments

◆ makeGrammaticalStructure()

AGrammaticalStructure grammarscope.io.xml.XMLDocument.makeGrammaticalStructure ( final Element  sentenceElement)
private

Make grammatical structure from element

Parameters
sentenceElementelement
Returns
grammatical structure artifact

◆ makeGraphRootIndices()

List<Integer> grammarscope.io.xml.XMLDocument.makeGraphRootIndices ( final Element  graphRootsElement)
private

Make graph roots

Parameters
graphRootsElementelement
Returns
graph roots

◆ makeId()

static String grammarscope.io.xml.XMLDocument.makeId ( final String  value)
staticprivate

Grammatical structure node id

Parameters
valuegrammatical structure node value
Returns
grammatical structure node id

◆ makeNamedEntities()

static Map<Integer, ANamedEntities> grammarscope.io.xml.XMLDocument.makeNamedEntities ( final Map< Integer, Map< Integer, Token >>  tokens)
staticprivate

Gather Named Entities

Parameters
tokenssentence-indexed tokens
Returns
named entities

◆ makeParse()

AParseTree grammarscope.io.xml.XMLDocument.makeParse ( final Element  sentenceElement)
private

Make parse tree from element

Parameters
sentenceElementelement
Returns
parse tree artifact

◆ makePoses()

static Map<Integer, APartsOfSpeech> grammarscope.io.xml.XMLDocument.makePoses ( final Map< Integer, Map< Integer, Token >>  tokens)
staticprivate

Gather Part-Of-Speech data

Parameters
tokenssentence-indexed tokens
Returns
POSes

◆ makeSemanticGraphs()

Map<TypedDependencyProvider, Map<TypedDependencyMode, ASemanticGraph> > grammarscope.io.xml.XMLDocument.makeSemanticGraphs ( final Element  sentenceElement,
final Map< Integer, Token tokens 
)
private

Make typed dependencies from element

Parameters
sentenceElementelement
tokenssentence-indexed tokens
Returns
semantic graph artifacts

◆ makeSentiment()

Sentiment grammarscope.io.xml.XMLDocument.makeSentiment ( final Element  sentenceElement)
private

Make sentiment

Parameters
sentenceElementsentence element
Returns
sentiment

◆ makeToken()

Token grammarscope.io.xml.XMLDocument.makeToken ( final Element  tokenElement,
final int  sentenceIdx,
final List< WordSegment wordSegments,
final StringBuffer  sb 
)
private

Make token from element

Parameters
tokenElementelement
sentenceIdxsentence index
wordSegmentsword segments
sbtext string sb
Returns
token

◆ makeTokens()

Map<Integer, Token> grammarscope.io.xml.XMLDocument.makeTokens ( final Element  sentenceElement,
final int  sentenceIdx,
final List< WordSegment wordSegments,
final StringBuffer  sb 
)
private

Make tokens from element

Parameters
sentenceElementsentence element
sentenceIdxsentence index
wordSegmentsword segments
sbtext string sb
Returns
sentence-indexed tokens

◆ makeTriples()

List<Triple> grammarscope.io.xml.XMLDocument.makeTriples ( final Element  sentenceElement)
private

Make triples

Parameters
sentenceElementsentence element
Returns
triples

◆ makeTypedDependencies()

Map<TypedDependencyProvider, Map<TypedDependencyMode, ATypedDependencies> > grammarscope.io.xml.XMLDocument.makeTypedDependencies ( final Element  sentenceElement,
final Map< Integer, Token tokens 
)
private

Make typed dependencies from element

Parameters
sentenceElementelement
tokenssentence-indexed tokens
Returns
semantic graph artifacts

◆ makeTypedDependency()

TypedDependency grammarscope.io.xml.XMLDocument.makeTypedDependency ( final Element  typedDependencyElement,
final Map< Integer, Token tokens 
)
private

Make typed dependencies from element

Parameters
typedDependencyElementelement
tokensword-indexed tokens
Returns
typed dependency artifact

◆ makeXMLGrammaticalStructure()

MutableAGrammaticalStructure grammarscope.io.xml.XMLDocument.makeXMLGrammaticalStructure ( final Element  nodeElement)
private

Make grammatical structure from node element

Parameters
nodeElementnode element
Returns
grammatical structure artifact

◆ makeXMLGrammaticalStructure1()

MutableAGrammaticalStructure grammarscope.io.xml.XMLDocument.makeXMLGrammaticalStructure1 ( final Element  nodeElement,
final Map< String, MutableAGrammaticalStructure idMap 
)
private

Make grammatical structure from node element

Parameters
nodeElementnode element
idMapnode id to grammatical structure node map
Returns
grammatical structure artifact

◆ makeXMLGrammaticalStructure2()

MutableAGrammaticalStructure grammarscope.io.xml.XMLDocument.makeXMLGrammaticalStructure2 ( final Element  nodeElement,
final Map< String, MutableAGrammaticalStructure idMap 
)
private

Make grammatical structure from node element

Parameters
nodeElementnode element
idMapnode id to grammatical structure node map
Returns
grammatical structure artifact

◆ makeXMLParse()

MutableAParseTree grammarscope.io.xml.XMLDocument.makeXMLParse ( final Element  nodeElement)
private

Parse XML parse tree

Parameters
nodeElementroot node element
Returns
parse tree artifact

◆ parseMode()

static TypedDependencyMode grammarscope.io.xml.XMLDocument.parseMode ( final String  modeString)
staticprivate

DOM element name to typed dependency mode

Parameters
modeStringtyped dependency mode string
Returns
element name

◆ parseProvider()

static TypedDependencyProvider grammarscope.io.xml.XMLDocument.parseProvider ( final String  providerString)
staticprivate

DOM element name to typed dependency provider

Parameters
providerStringtyped dependency provider string
Returns
element name

◆ processSentences()

void grammarscope.io.xml.XMLDocument.processSentences ( final Element  sentencesElement,
final StringBuffer  textBuilder,
final List< List< WordSegment >>  segments,
final Map< Integer, AParseTree parseTrees,
final Map< Integer, AGrammaticalStructure grammaticalStructures,
final Map< Integer, Map< TypedDependencyProvider, Map< TypedDependencyMode, ATypedDependencies >>>  typedDependencies,
final Map< Integer, Map< TypedDependencyProvider, Map< TypedDependencyMode, ASemanticGraph >>>  semanticGraphs,
final Map< Integer, Sentiment sentiments,
final Map< Integer, List< Entailment >>  entailments,
final Map< Integer, List< Triple >>  triples 
)
private

Process sentence

Parameters
sentencesElementsentence element
textBuildertext string sb
segmentssentence-split word segments
parseTreessentence-indexed parse trees
grammaticalStructuressentence-indexed grammatical structures
typedDependenciessentence-indexed typed dependencies
semanticGraphssentence-indexed semantic graphs
sentimentssentence-indexed sentiments
entailmentssentence-indexed entailments
triplessentence-indexed triples

Member Data Documentation

◆ COREFERENCE

String grammarscope.io.xml.XMLDocument.COREFERENCE
protected

◆ COREFERENCE_END

String grammarscope.io.xml.XMLDocument.COREFERENCE_END
protected

◆ COREFERENCE_HEAD

String grammarscope.io.xml.XMLDocument.COREFERENCE_HEAD
protected

◆ COREFERENCE_MENTION

String grammarscope.io.xml.XMLDocument.COREFERENCE_MENTION
protected

◆ COREFERENCE_MENTION_FROM

String grammarscope.io.xml.XMLDocument.COREFERENCE_MENTION_FROM
protected

◆ COREFERENCE_MENTION_REPRESENTATIVE

String grammarscope.io.xml.XMLDocument.COREFERENCE_MENTION_REPRESENTATIVE
protected

◆ COREFERENCE_MENTION_TO

String grammarscope.io.xml.XMLDocument.COREFERENCE_MENTION_TO
protected

◆ COREFERENCE_SENTENCE

String grammarscope.io.xml.XMLDocument.COREFERENCE_SENTENCE
protected

◆ COREFERENCE_START

String grammarscope.io.xml.XMLDocument.COREFERENCE_START
protected

◆ COREFERENCE_TEXT

String grammarscope.io.xml.XMLDocument.COREFERENCE_TEXT
protected

◆ COREFERENCES

String grammarscope.io.xml.XMLDocument.COREFERENCES
protected

◆ coreferences

ACoreferences grammarscope.io.xml.XMLDocument.coreferences
protected

Coreference chains

◆ DEPENDENCY

String grammarscope.io.xml.XMLDocument.DEPENDENCY
protected

◆ DEPENDENCY_TYPE

String grammarscope.io.xml.XMLDocument.DEPENDENCY_TYPE
protected

◆ DEPENDENT

String grammarscope.io.xml.XMLDocument.DEPENDENT
protected

◆ DEPENDENT_IDX

String grammarscope.io.xml.XMLDocument.DEPENDENT_IDX
protected

◆ DOCUMENT

String grammarscope.io.xml.XMLDocument.DOCUMENT
protected

◆ domDocument

Document grammarscope.io.xml.XMLDocument.domDocument
protected

The DOM document

◆ ENTAILMENT

String grammarscope.io.xml.XMLDocument.ENTAILMENT
protected

◆ ENTAILMENT_SCORE

String grammarscope.io.xml.XMLDocument.ENTAILMENT_SCORE
protected

◆ ENTAILMENTS

String grammarscope.io.xml.XMLDocument.ENTAILMENTS
protected

◆ entailments

Map<Integer, List<Entailment> > grammarscope.io.xml.XMLDocument.entailments
protected

Entailments

◆ GOVERNOR

String grammarscope.io.xml.XMLDocument.GOVERNOR
protected

◆ GOVERNOR_IDX

String grammarscope.io.xml.XMLDocument.GOVERNOR_IDX
protected

◆ grammaticalStructures

Map<Integer, AGrammaticalStructure> grammarscope.io.xml.XMLDocument.grammaticalStructures
protected

Grammatical structures

◆ GRAPH

String grammarscope.io.xml.XMLDocument.GRAPH
protected

◆ GRAPH_DEPENDENCIES

String grammarscope.io.xml.XMLDocument.GRAPH_DEPENDENCIES
protected

◆ GRAPH_MODE

String grammarscope.io.xml.XMLDocument.GRAPH_MODE
protected

◆ GRAPH_PROVIDER

String grammarscope.io.xml.XMLDocument.GRAPH_PROVIDER
protected

◆ GRAPH_ROOT

String grammarscope.io.xml.XMLDocument.GRAPH_ROOT
protected

◆ GRAPH_ROOT_IDX

String grammarscope.io.xml.XMLDocument.GRAPH_ROOT_IDX
protected

◆ GRAPH_ROOTS

String grammarscope.io.xml.XMLDocument.GRAPH_ROOTS
protected

◆ GRAPH_SET

String grammarscope.io.xml.XMLDocument.GRAPH_SET
protected

◆ GSNODE

String grammarscope.io.xml.XMLDocument.GSNODE
protected

◆ GSNODE_ANNOTATION

String grammarscope.io.xml.XMLDocument.GSNODE_ANNOTATION
protected

◆ GSNODE_ANNOTATION_KEY

String grammarscope.io.xml.XMLDocument.GSNODE_ANNOTATION_KEY
protected

◆ GSNODE_DEPENDENT

String grammarscope.io.xml.XMLDocument.GSNODE_DEPENDENT
protected

◆ GSNODE_GOVERNOR

String grammarscope.io.xml.XMLDocument.GSNODE_GOVERNOR
protected

◆ GSNODE_HEAD

String grammarscope.io.xml.XMLDocument.GSNODE_HEAD
protected

◆ GSNODE_IDX

String grammarscope.io.xml.XMLDocument.GSNODE_IDX
protected

◆ GSNODE_LEMMA

String grammarscope.io.xml.XMLDocument.GSNODE_LEMMA
protected

◆ GSNODE_RELATION

String grammarscope.io.xml.XMLDocument.GSNODE_RELATION
protected

◆ GSNODE_SCORE

String grammarscope.io.xml.XMLDocument.GSNODE_SCORE
protected

◆ GSNODE_VALUE

String grammarscope.io.xml.XMLDocument.GSNODE_VALUE
protected

◆ GSNODE_WORD

String grammarscope.io.xml.XMLDocument.GSNODE_WORD
protected

◆ GSNODE_WORD_IDX

String grammarscope.io.xml.XMLDocument.GSNODE_WORD_IDX
protected

◆ GSTRUCTURE

String grammarscope.io.xml.XMLDocument.GSTRUCTURE
protected

◆ GSTRUCTURE_FORMAT

String grammarscope.io.xml.XMLDocument.GSTRUCTURE_FORMAT
protected

◆ NAMED_ENTITIES

String grammarscope.io.xml.XMLDocument.NAMED_ENTITIES
protected

◆ NAMED_ENTITY

String grammarscope.io.xml.XMLDocument.NAMED_ENTITY
protected

◆ NAMED_ENTITY_ANIMACY

String grammarscope.io.xml.XMLDocument.NAMED_ENTITY_ANIMACY
protected

◆ NAMED_ENTITY_FROM

String grammarscope.io.xml.XMLDocument.NAMED_ENTITY_FROM
protected

◆ NAMED_ENTITY_GENDER

String grammarscope.io.xml.XMLDocument.NAMED_ENTITY_GENDER
protected

◆ NAMED_ENTITY_NUMBER

String grammarscope.io.xml.XMLDocument.NAMED_ENTITY_NUMBER
protected

◆ NAMED_ENTITY_TO

String grammarscope.io.xml.XMLDocument.NAMED_ENTITY_TO
protected

◆ NAMED_ENTITY_WORD

String grammarscope.io.xml.XMLDocument.NAMED_ENTITY_WORD
protected

◆ namedEntities

Map<Integer, ANamedEntities> grammarscope.io.xml.XMLDocument.namedEntities
protected

Named entities

◆ PARSE

String grammarscope.io.xml.XMLDocument.PARSE
protected

◆ PARSE_FORMAT

String grammarscope.io.xml.XMLDocument.PARSE_FORMAT
protected

◆ PARSE_NODE

String grammarscope.io.xml.XMLDocument.PARSE_NODE
protected

◆ PARSE_NODE_IDX

String grammarscope.io.xml.XMLDocument.PARSE_NODE_IDX
protected

◆ PARSE_NODE_LEMMA

String grammarscope.io.xml.XMLDocument.PARSE_NODE_LEMMA
protected

◆ PARSE_NODE_SCORE

String grammarscope.io.xml.XMLDocument.PARSE_NODE_SCORE
protected

◆ PARSE_NODE_VALUE

String grammarscope.io.xml.XMLDocument.PARSE_NODE_VALUE
protected

◆ PARSE_NODE_WORD

String grammarscope.io.xml.XMLDocument.PARSE_NODE_WORD
protected

◆ PARSE_NODE_WORD_IDX

String grammarscope.io.xml.XMLDocument.PARSE_NODE_WORD_IDX
protected

◆ parses

Map<Integer, AParseTree> grammarscope.io.xml.XMLDocument.parses
protected

Parse trees

◆ poses

Map<Integer, APartsOfSpeech> grammarscope.io.xml.XMLDocument.poses
protected

Parts-of-speech

◆ RELATION

String grammarscope.io.xml.XMLDocument.RELATION
protected

◆ ROOT

String grammarscope.io.xml.XMLDocument.ROOT
protected

◆ ROOT_FORMAT

String grammarscope.io.xml.XMLDocument.ROOT_FORMAT
protected

◆ segments

List<List<WordSegment> > grammarscope.io.xml.XMLDocument.segments
protected

Sentence-indexed word segments

◆ semanticGraphs

Map<Integer, Map<TypedDependencyProvider, Map<TypedDependencyMode, ASemanticGraph> > > grammarscope.io.xml.XMLDocument.semanticGraphs
protected

Semantic graphs

◆ SENTENCE

String grammarscope.io.xml.XMLDocument.SENTENCE
protected

◆ SENTENCE_BEGIN

String grammarscope.io.xml.XMLDocument.SENTENCE_BEGIN
protected

◆ SENTENCE_END

String grammarscope.io.xml.XMLDocument.SENTENCE_END
protected

◆ SENTENCE_FROM

String grammarscope.io.xml.XMLDocument.SENTENCE_FROM
protected

◆ SENTENCE_IDX

String grammarscope.io.xml.XMLDocument.SENTENCE_IDX
protected

◆ SENTENCE_TEXT

String grammarscope.io.xml.XMLDocument.SENTENCE_TEXT
protected

◆ SENTENCE_TO

String grammarscope.io.xml.XMLDocument.SENTENCE_TO
protected

◆ SENTENCES

String grammarscope.io.xml.XMLDocument.SENTENCES
protected

◆ SENTIMENT

String grammarscope.io.xml.XMLDocument.SENTIMENT
protected

◆ SENTIMENT_CLASS

String grammarscope.io.xml.XMLDocument.SENTIMENT_CLASS
protected

◆ SENTIMENT_VALUE

String grammarscope.io.xml.XMLDocument.SENTIMENT_VALUE
protected

◆ sentiments

Map<Integer, Sentiment> grammarscope.io.xml.XMLDocument.sentiments
protected

Sentiments

◆ stanfordMode

boolean grammarscope.io.xml.XMLDocument.stanfordMode = true

Stanford-compatible mode

◆ TEXT

String grammarscope.io.xml.XMLDocument.TEXT
protected

◆ text

String grammarscope.io.xml.XMLDocument.text
protected

Text (rebuilt)

◆ TOKEN

String grammarscope.io.xml.XMLDocument.TOKEN
protected

◆ TOKEN_BEGIN

String grammarscope.io.xml.XMLDocument.TOKEN_BEGIN
protected

◆ TOKEN_END

String grammarscope.io.xml.XMLDocument.TOKEN_END
protected

◆ TOKEN_FROM

String grammarscope.io.xml.XMLDocument.TOKEN_FROM
protected

◆ TOKEN_IDX

String grammarscope.io.xml.XMLDocument.TOKEN_IDX
protected

◆ TOKEN_LEMMA

String grammarscope.io.xml.XMLDocument.TOKEN_LEMMA
protected

◆ TOKEN_NER

String grammarscope.io.xml.XMLDocument.TOKEN_NER
protected

◆ TOKEN_NORM_NER

String grammarscope.io.xml.XMLDocument.TOKEN_NORM_NER
protected

◆ TOKEN_POS

String grammarscope.io.xml.XMLDocument.TOKEN_POS
protected

◆ TOKEN_SENTIMENT

String grammarscope.io.xml.XMLDocument.TOKEN_SENTIMENT
protected

◆ TOKEN_SPEAKER

String grammarscope.io.xml.XMLDocument.TOKEN_SPEAKER
protected

◆ TOKEN_TO

String grammarscope.io.xml.XMLDocument.TOKEN_TO
protected

◆ TOKEN_WORD

String grammarscope.io.xml.XMLDocument.TOKEN_WORD
protected

◆ TOKENS

String grammarscope.io.xml.XMLDocument.TOKENS
protected

◆ tokens

Map<Integer, Map<Integer, Token> > grammarscope.io.xml.XMLDocument.tokens
protected

Tokens

◆ TRIPLE

String grammarscope.io.xml.XMLDocument.TRIPLE
protected

◆ TRIPLE_OBJECT

String grammarscope.io.xml.XMLDocument.TRIPLE_OBJECT
protected

◆ TRIPLE_RELATION

String grammarscope.io.xml.XMLDocument.TRIPLE_RELATION
protected

◆ TRIPLE_SUBJECT

String grammarscope.io.xml.XMLDocument.TRIPLE_SUBJECT
protected

◆ TRIPLES

String grammarscope.io.xml.XMLDocument.TRIPLES
protected

◆ triples

Map<Integer, List<Triple> > grammarscope.io.xml.XMLDocument.triples
protected

Triples

◆ TYPEDDEPENDENCIES

String grammarscope.io.xml.XMLDocument.TYPEDDEPENDENCIES
protected

◆ typedDependencies

Map<Integer, Map<TypedDependencyProvider, Map<TypedDependencyMode, ATypedDependencies> > > grammarscope.io.xml.XMLDocument.typedDependencies
protected

Typed dependencies

◆ TYPEDDEPENDENCIES_MODE

String grammarscope.io.xml.XMLDocument.TYPEDDEPENDENCIES_MODE
protected

◆ TYPEDDEPENDENCIES_PROVIDER

String grammarscope.io.xml.XMLDocument.TYPEDDEPENDENCIES_PROVIDER
protected

◆ TYPEDDEPENDENCIES_SET

String grammarscope.io.xml.XMLDocument.TYPEDDEPENDENCIES_SET
protected

◆ TYPEDDEPENDENCIES_STYLE

String grammarscope.io.xml.XMLDocument.TYPEDDEPENDENCIES_STYLE
protected

◆ url

final URL grammarscope.io.xml.XMLDocument.url
protected

The XML document URL


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