Class UnknownDictionary
Dictionary for unknown-word handling.
Inheritance
System.Object
UnknownDictionary
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Assembly: Lucene.Net.Analysis.Kuromoji.dll
Syntax
public class UnknownDictionary : BinaryDictionary, IDictionary
Properties
|
Improve this Doc
View Source
CharacterDefinition
Declaration
public virtual CharacterDefinition CharacterDefinition { get; }
Property Value
|
Improve this Doc
View Source
Instance
Declaration
public static UnknownDictionary Instance { get; }
Property Value
Methods
|
Improve this Doc
View Source
Declaration
public override string GetInflectionForm(int wordId)
Parameters
Type |
Name |
Description |
System.Int32 |
wordId |
|
Returns
Type |
Description |
System.String |
|
Overrides
|
Improve this Doc
View Source
GetInflectionType(Int32)
Declaration
public override string GetInflectionType(int wordId)
Parameters
Type |
Name |
Description |
System.Int32 |
wordId |
|
Returns
Type |
Description |
System.String |
|
Overrides
|
Improve this Doc
View Source
GetReading(Int32, Char[], Int32, Int32)
Declaration
public override string GetReading(int wordId, char[] surface, int off, int len)
Parameters
Type |
Name |
Description |
System.Int32 |
wordId |
|
System.Char[] |
surface |
|
System.Int32 |
off |
|
System.Int32 |
len |
|
Returns
Type |
Description |
System.String |
|
Overrides
|
Improve this Doc
View Source
Lookup(Char[], Int32, Int32)
Declaration
public virtual int Lookup(char[] text, int offset, int len)
Parameters
Type |
Name |
Description |
System.Char[] |
text |
|
System.Int32 |
offset |
|
System.Int32 |
len |
|
Returns
Type |
Description |
System.Int32 |
|
Implements