Constructor JaspellTernarySearchTrie
JaspellTernarySearchTrie()
Constructs an empty Ternary Search Trie.
Declaration
public JaspellTernarySearchTrie()
JaspellTernarySearchTrie(CultureInfo)
Constructs an empty Ternary Search Trie,
specifying the
Declaration
public JaspellTernarySearchTrie(CultureInfo culture)
Parameters
Type | Name | Description |
---|---|---|
CultureInfo | culture |
JaspellTernarySearchTrie(FileInfo)
Constructs a Ternary Search Trie and loads data from a
Uses the culture of the current thread to lowercase words before comparing.
Declaration
public JaspellTernarySearchTrie(FileInfo file)
Parameters
Type | Name | Description |
---|---|---|
FileInfo | file | The |
JaspellTernarySearchTrie(FileInfo, CultureInfo)
Constructs a Ternary Search Trie and loads data from a
Uses the supplied culture to lowercase words before comparing.
Declaration
public JaspellTernarySearchTrie(FileInfo file, CultureInfo culture)
Parameters
Type | Name | Description |
---|---|---|
FileInfo | file | The |
CultureInfo | culture | The culture used for lowercasing. |
JaspellTernarySearchTrie(FileInfo, Boolean)
Constructs a Ternary Search Trie and loads data from a
Uses the culture of the current thread to lowercase words before comparing.
Declaration
public JaspellTernarySearchTrie(FileInfo file, bool compression)
Parameters
Type | Name | Description |
---|---|---|
FileInfo | file | The |
System.Boolean | compression | If true, the file is compressed with the GZIP algorithm, and if false, the file is a normal text document. |
JaspellTernarySearchTrie(FileInfo, Boolean, CultureInfo)
Constructs a Ternary Search Trie and loads data from a
Uses the supplied culture to lowercase words before comparing.
Declaration
public JaspellTernarySearchTrie(FileInfo file, bool compression, CultureInfo culture)
Parameters
Type | Name | Description |
---|---|---|
FileInfo | file | The |
System.Boolean | compression | If true, the file is compressed with the GZIP algorithm, and if false, the file is a normal text document. |
CultureInfo | culture | The culture used for lowercasing. |