Uses of Class
ipipan.spejd.entities.Entity

Packages that use Entity
ipipan.spejd.actions Provides classes representing actions (predicates) that can be executed (evaluated) upon finding a match. 
ipipan.spejd.entities Provides classes representing syntactic entities, for example words or syntactic groups. 
ipipan.spejd.readers   
ipipan.spejd.rules Classes for representing and applying rules, as well as a class for reading XML input files to be parsed. 
 

Uses of Entity in ipipan.spejd.actions
 

Methods in ipipan.spejd.actions that return Entity
 Entity GroupAction.result(Match matcher, Entity[] match)
           
 

Methods in ipipan.spejd.actions with parameters of type Entity
 java.lang.String WordBasePart.concatAttr(int id, Entity[] s)
          This is an exact copy of Entity's method - to get rid of "static" Concatenate orth or base of a sequence of entities, adding space or not with respect to ns special entities.
 java.lang.String WordBasePart.concatAttr(int id, Entity[] s, int start, int end)
          This is an exact copy of Entity's method - to get rid of "static" Concatenate orth or base of a sequence of entities, adding space or not with respect to ns special entities.
 java.util.Set<java.lang.String> AgreeAction.getCommonValues(Entity[] match, int[] attrIds)
          This is an exact copy of Entity's method - to get rid of "static" Get common values of specified attributes of specified entities.
 Entity GroupAction.result(Match matcher, Entity[] match)
           
 boolean AgreeAction.unify(Entity[] match, int[] attrIds)
          This is an exact copy of Entity's method - to get rid of "static" Unify specified entities with respect to specified attributes.
 

Uses of Entity in ipipan.spejd.entities
 

Subclasses of Entity in ipipan.spejd.entities
 class Group
          A representation of syntactic group.
 class NoSpace
          A representation of special ns (no space) entity.
 class Segment
          A representation of segment - the smallest interpreted unit, ie. a sequence of characters together with their morphosyntactic interpretations.
 class SentenceBorder
          A representation of sentence beginning (sb) or end (se).
 class Word
          A representation of syntactic group.
 

Fields in ipipan.spejd.entities declared as Entity
static Entity[] Entity.ARRAY
           
 

Methods in ipipan.spejd.entities that return Entity
 Entity Entity.getReplacement()
           
 

Methods in ipipan.spejd.entities with parameters of type Entity
 java.lang.String Entity.concatAttr(int id, Entity[] s)
          Concatenate orth or base of a sequence of entities, adding space or not with respect to ns special entities.
 java.lang.String Entity.concatAttr(int id, Entity[] s, int start, int end)
          Concatenate orth or base of a sequence of entities, adding space or not with respect to ns special entities.
 java.util.Set<java.lang.String> Entity.getCommonValues(Entity[] match, int[] attrIds)
          Get common values of specified attributes of specified entities.
 void Entity.setReplacement(Entity e)
          Sets replacement entity.
 boolean Entity.unify(Entity[] match, int[] attrIds)
          Unify specified entities with respect to specified attributes.
 

Constructors in ipipan.spejd.entities with parameters of type Entity
Group(java.lang.String type, Entity synh, Entity semh, Entity[] match, Config conf)
           
Group(java.lang.String type, Entity synh, Entity semh, Entity[] match, Config conf)
           
Word(Interpretation[] interp, Entity[] content, Config conf)
           
 

Uses of Entity in ipipan.spejd.readers
 

Methods in ipipan.spejd.readers that return Entity
 Entity MorphReader.loadToken()
           
 Entity PlainTextReader.loadToken()
          Move to another word and run Morfeusz over it.
abstract  Entity Reader.loadToken()
          Get the next token from the input.
 Entity WorkbenchReader.loadToken()
           
 

Uses of Entity in ipipan.spejd.rules
 

Methods in ipipan.spejd.rules that return Entity
 Entity[] Gazetteer.get(int[] s)
           
 Entity[] Match.get(int[] s)
           
 Entity[] MatchPattern.get(int[] s)
           
 Entity Sentence.get(java.lang.String segId)
           
 Entity[] Gazetteer.getMatch()
           
 Entity[] Match.getMatch()
           
 Entity[] MatchPattern.getMatch()
           
 Entity Gazetteer.getSingle(int s)
           
 Entity Match.getSingle(int s)
           
 Entity MatchPattern.getSingle(int s)
           
 Entity[] Gazetteer.getSpec(int s)
           
 Entity[] Match.getSpec(int s)
           
 Entity[] MatchPattern.getSpec(int s)
           
 Entity[] Sentence.toArray()
           
 

Methods in ipipan.spejd.rules with parameters of type Entity
 void LexDictionary.apply(Entity e)
           
 boolean Gazetteer.apply(Entity[] chunk)
           
 java.lang.String Gazetteer.concatAttr(int id, Entity[] s, int start, int length, boolean countNospace)
          This is a modified copy of Entity's method - to get rid of "static".