public enum CommandLineHelp extends java.lang.Enum<CommandLineHelp>
Enum Constant and Description |
---|
ARABICFILETOKENIZER
Contains information for running the
ArabicFileTokenizer program via the command line. |
BITVECTORFINGERPRINTER
Contains information for running the
TokenizeFile program via the command line. |
CHINESEFILETOKENIZER
Contains information for running the
ChineseFileTokenizer program via the command line. |
COMPAREDIRECTORY |
COMPAREFINGERPRINT
Contains information for running the
CompareFingerprint program via the command line. |
COMPAREFINGTODIR
Contains information for running the
Experiment program via the command line. |
CREATEDICTIONARY
Contains information for running the
CreateDictionary program via the command line. |
CREATEDICTTRIM
Contains information for running the
CreateDictionary program via the command line. |
EXPERIMENT
Contains information for running the
Experiment program via the command line. |
EXPERIMENTN2
Contains information for running the
Experiment program via the command line. |
EXTRACTFINGERPRINTDICTIONARY
Contains information for running the
ExtractFingerprintDictionary program via the command line. |
FINGERPRINTSTOTEXT
Contains information for running the
Experiment program via the command line. |
HELP
Contains general help information for running SDText via the command line
|
SCOREFINGERPRINTS
Contains information for running the
ScoreFingerprints program via the command line. |
SDHASHFINGERPRINTER
Contains information for running the
Experiment program via the command line. |
SHOWDICTIONARYSTATISTICS
Contains information for running the
ShowDictionaryStatistics program via the command line. |
SHOWDICTIONARYTOKENS
Contains information for running the
ShowDictionaryTokens program via the command line. |
TOKENIZEFILE
Contains information for running the
TokenizeFile program via the command line. |
TRIMDICTIONARY
Contains information for running the
TrimDictionary program via the command line. |
Modifier and Type | Field and Description |
---|---|
java.lang.String |
name |
java.lang.String |
options |
java.lang.String |
use |
Modifier and Type | Method and Description |
---|---|
static CommandLineHelp |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CommandLineHelp[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CommandLineHelp HELP
public static final CommandLineHelp TOKENIZEFILE
TokenizeFile
program via the command line.
TokenizeFile
tokenizes a text file and prints the resulting tokens to the the screen.public static final CommandLineHelp ARABICFILETOKENIZER
ArabicFileTokenizer
program via the command line.
ArabicFileTokenizer
tokenizes an Arabic text file and prints the resulting tokens to the the screen.public static final CommandLineHelp CHINESEFILETOKENIZER
ChineseFileTokenizer
program via the command line.
ChineseFileTokenizer
tokenizes a Chinese text file into single characters and using a probabilistic
model to group characters and prints both sets of resulting tokens to the the screen.public static final CommandLineHelp CREATEDICTIONARY
CreateDictionary
program via the command line.
CreateDictionary
creates a dictionary from the specified directory using the provided tokenizers.public static final CommandLineHelp CREATEDICTTRIM
CreateDictionary
program via the command line.
CreateDictionary
creates a dictionary from the specified directory using the provided tokenizers.public static final CommandLineHelp SHOWDICTIONARYSTATISTICS
ShowDictionaryStatistics
program via the command line.
ShowDictionaryStatistics
prints statistics for a dictionary.public static final CommandLineHelp SHOWDICTIONARYTOKENS
ShowDictionaryTokens
program via the command line.
ShowDictionaryTokens
prints dictionary tokens and their frequencies, IDFs, and normalized IDFs.public static final CommandLineHelp TRIMDICTIONARY
TrimDictionary
program via the command line.
TrimDictionary
trims a dictionary by removing any token that is outside a range of normalized IDFs.public static final CommandLineHelp BITVECTORFINGERPRINTER
TokenizeFile
program via the command line.
TokenizeFile
tokenizes a text file and prints the resulting tokens to the the screen.public static final CommandLineHelp SCOREFINGERPRINTS
ScoreFingerprints
program via the command line.
ScoreFingerprints
compares two XML fingerprints and provides a score for their degree of similarity.public static final CommandLineHelp EXTRACTFINGERPRINTDICTIONARY
ExtractFingerprintDictionary
program via the command line.
ExtractFingerprintDictionary
extracts a dictionary from a fingerprint digest and writes it to a new
dictionary file.public static final CommandLineHelp COMPAREFINGERPRINT
CompareFingerprint
program via the command line.
CompareFingerprint
outputs a list of files and their scores, comparing a given fingerprint to a
directory of files.public static final CommandLineHelp COMPAREDIRECTORY
public static final CommandLineHelp EXPERIMENT
Experiment
program via the command line. Experiment
outputs results from multiple runs with different experiment settings and optionally stores them in a database.public static final CommandLineHelp SDHASHFINGERPRINTER
Experiment
program via the command line. Experiment
outputs results from multiple runs with different experiment settings and optionally stores them in a database.public static final CommandLineHelp FINGERPRINTSTOTEXT
Experiment
program via the command line. Experiment
outputs results from multiple runs with different experiment settings and optionally stores them in a database.public static final CommandLineHelp COMPAREFINGTODIR
Experiment
program via the command line. Experiment
outputs results from multiple runs with different experiment settings and optionally stores them in a database.public static final CommandLineHelp EXPERIMENTN2
Experiment
program via the command line. Experiment
outputs results from multiple runs with different experiment settings and optionally stores them in a database.public final java.lang.String name
public final java.lang.String use
public final java.lang.String options
public static CommandLineHelp[] values()
for (CommandLineHelp c : CommandLineHelp.values()) System.out.println(c);
public static CommandLineHelp valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null