Class Compile
The Compile class is used to compile a stemmer table.
LUCENENET specific: In the Java implementation, this class' Main method was intended to be called from the command line. However, in .NET a method within a DLL can't be directly called from the command line so we provide a .NET tool, lucene-cli, with a command that maps to that method: analysis stempel-compile-stemsInherited Members
Namespace: Egothor.Stemmer
Assembly: Lucene.Net.Analysis.Stempel.dll
Syntax
public static class Compile
Methods
Main(string[])
Entry point to the Compile application.
This program takes any number of arguments: the first is the name of the desired stemming algorithm to use (a list is available in the package description) , all of the rest should be the path or paths to a file or files containing a stemmer table to compile. LUCENENET specific: In the Java implementation, this Main method was intended to be called from the command line. However, in .NET a method within a DLL can't be directly called from the command line so we provide a .NET tool, lucene-cli, with a command that maps to this method: analysis stempel-compile-stemsDeclaration
public static void Main(string[] args)
Parameters
Type | Name | Description |
---|---|---|
string[] | args | the command line arguments |