Class FullformEntry
- java.lang.Object
-
- de.julielab.jcore.ae.acronymtagger.entries.FullformEntry
-
- All Implemented Interfaces:
Serializable
public class FullformEntry extends Object implements Serializable
a FullformEntry contains earliest year and count of the fullform plus meshTerms of the document where it was seen in last change: now the fullform-string is completely normalized and the FullformEntry contains an additional list (a java Set) of all unnormalized fullforms- Author:
- tusche
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedFullformEntry()trivial constructorprotectedFullformEntry(int y, int c, Set<String> m, Set<String> f)constructor for creating a FullformEntry, specifying all informationprotectedFullformEntry(int y, Set<String> m, Set<String> f)constructor for creating a complete new FullformEntry seen ONCE now (count = 1)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected StringgetHTMLString(boolean includeMeshs)protected StringgetString()
-
-
-
Constructor Detail
-
FullformEntry
protected FullformEntry()
trivial constructor
-
FullformEntry
protected FullformEntry(int y, Set<String> m, Set<String> f)constructor for creating a complete new FullformEntry seen ONCE now (count = 1)- Parameters:
y- the year of the document it was seen inm- the MeshTerms of the document it was seen inf- the unnormalized fullforms seen so far
-
FullformEntry
protected FullformEntry(int y, int c, Set<String> m, Set<String> f)constructor for creating a FullformEntry, specifying all information- Parameters:
y- the year of the document it was seen inm- the MeshTerms of the document it was seen inf- the unnormalized fullforms seen so farc- the number of times the form was seen
-
-