Package opennlp.tools.parser.lang.en
Class HeadRules
- java.lang.Object
-
- opennlp.tools.parser.lang.en.HeadRules
-
- All Implemented Interfaces:
GapLabeler,HeadRules,SerializableArtifact
public class HeadRules extends Object implements HeadRules, GapLabeler, SerializableArtifact
Class for storing the English head rules associated with parsing.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classHeadRules.HeadRulesSerializer
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object obj)Class<?>getArtifactSerializerClass()Retrieves the class which can serialize and recreate this artifact.ParsegetHead(Parse[] constituents, String type)Returns the head constituent for the specified constituents of the specified type.Set<String>getPunctuationTags()Returns the set of punctuation tags.inthashCode()voidlabelGaps(Stack<Constituent> stack)Labels the constituents found in the stack with gap labels if appropriate.voidserialize(Writer writer)Writes the head rules to the writer in a format suitable for loading the head rules again with the constructor.
-
-
-
Constructor Detail
-
HeadRules
@Deprecated public HeadRules(String ruleFile) throws IOException
Deprecated.Creates a new set of head rules based on the specified head rules file.- Parameters:
ruleFile- the head rules file.- Throws:
IOException- if the head rules file can not be read.
-
HeadRules
public HeadRules(Reader rulesReader) throws IOException
Creates a new set of head rules based on the specified reader.- Parameters:
rulesReader- the head rules reader.- Throws:
IOException- if the head rules reader can not be read.
-
-
Method Detail
-
getPunctuationTags
public Set<String> getPunctuationTags()
Description copied from interface:HeadRulesReturns the set of punctuation tags. Attachment decisions for these tags will not be modeled.- Specified by:
getPunctuationTagsin interfaceHeadRules- Returns:
- the set of punctuation tags.
-
getHead
public Parse getHead(Parse[] constituents, String type)
Description copied from interface:HeadRulesReturns the head constituent for the specified constituents of the specified type.
-
labelGaps
public void labelGaps(Stack<Constituent> stack)
Description copied from interface:GapLabelerLabels the constituents found in the stack with gap labels if appropriate.- Specified by:
labelGapsin interfaceGapLabeler- Parameters:
stack- The stack of un-completed constituents.
-
serialize
public void serialize(Writer writer) throws IOException
Writes the head rules to the writer in a format suitable for loading the head rules again with the constructor. The encoding must be taken into account while working with the writer and reader.After the entries have been written, the writer is flushed. The writer remains open after this method returns.
- Parameters:
writer-- Throws:
IOException
-
getArtifactSerializerClass
public Class<?> getArtifactSerializerClass()
Description copied from interface:SerializableArtifactRetrieves the class which can serialize and recreate this artifact.
Note: The serializer class must have a public zero argument constructor or an exception is thrown during model serialization/loading.- Specified by:
getArtifactSerializerClassin interfaceSerializableArtifact- Returns:
- the corresponding ArtifactSerializer class.
-
-