Skip navigation links
A B C D F G L M N O P S T U W 

A

add(String) - Method in class com.cybozu.labs.langdetect.util.LangProfile
Add n-gram to profile
add(String) - Method in class com.cybozu.labs.langdetect.util.TagExtractor
 
addChar(char) - Method in class com.cybozu.labs.langdetect.util.NGram
Append a character into ngram buffer.
append(Reader) - Method in class com.cybozu.labs.langdetect.Detector
Append the target text for language detection.
append(String) - Method in class com.cybozu.labs.langdetect.Detector
Append the target text for language detection.

B

batchTest() - Method in class com.cybozu.labs.langdetect.Command
Batch Test of Language Detection (--batchtest option)

C

cjk_map - Static variable in class com.cybozu.labs.langdetect.util.NGram
 
clear() - Static method in class com.cybozu.labs.langdetect.DetectorFactory
Clear loaded language profiles (reinitialization to be available)
clear() - Method in class com.cybozu.labs.langdetect.util.TagExtractor
 
closeTag() - Method in class com.cybozu.labs.langdetect.util.TagExtractor
 
com.cybozu.labs.langdetect - package com.cybozu.labs.langdetect
Provides the language detection classes.
com.cybozu.labs.langdetect.util - package com.cybozu.labs.langdetect.util
Provides the utility classes for language detection.
Command - Class in com.cybozu.labs.langdetect
LangDetect Command Line Interface
Command() - Constructor for class com.cybozu.labs.langdetect.Command
 
count() - Method in class com.cybozu.labs.langdetect.util.TagExtractor
 
create() - Static method in class com.cybozu.labs.langdetect.DetectorFactory
Construct Detector instance
create(double) - Static method in class com.cybozu.labs.langdetect.DetectorFactory
Construct Detector instance with smoothing parameter

D

detect() - Method in class com.cybozu.labs.langdetect.Detector
Detect language of the target text and return the language name which has the highest probability.
detectLang() - Method in class com.cybozu.labs.langdetect.Command
Language detection test for each file (--detectlang option)
Detector - Class in com.cybozu.labs.langdetect
Detector class is to detect language from specified text.
Detector(DetectorFactory) - Constructor for class com.cybozu.labs.langdetect.Detector
Constructor.
DetectorFactory - Class in com.cybozu.labs.langdetect
Language Detector Factory Class This class manages an initialization and constructions of Detector.

F

freq - Variable in class com.cybozu.labs.langdetect.util.LangProfile
 

G

generateProfile() - Method in class com.cybozu.labs.langdetect.Command
Generate Language Profile from Wikipedia Abstract Database File
GenProfile - Class in com.cybozu.labs.langdetect
Load Wikipedia's abstract XML as corpus and generate its language profile in JSON format.
GenProfile() - Constructor for class com.cybozu.labs.langdetect.GenProfile
 
get(int) - Method in class com.cybozu.labs.langdetect.util.NGram
Get n-Gram
getCode() - Method in exception com.cybozu.labs.langdetect.LangDetectException
 
getLangList() - Static method in class com.cybozu.labs.langdetect.DetectorFactory
 
getProbabilities() - Method in class com.cybozu.labs.langdetect.Detector
Get language candidates which have high probabilities
getString(String) - Static method in class com.cybozu.labs.langdetect.util.Messages
 

L

lang - Variable in class com.cybozu.labs.langdetect.Language
 
LangDetectException - Exception in com.cybozu.labs.langdetect
 
LangDetectException(ErrorCode, String) - Constructor for exception com.cybozu.labs.langdetect.LangDetectException
 
langlist - Variable in class com.cybozu.labs.langdetect.DetectorFactory
 
LangProfile - Class in com.cybozu.labs.langdetect.util
LangProfile is a Language Profile Class.
LangProfile() - Constructor for class com.cybozu.labs.langdetect.util.LangProfile
Constructor for JSONIC
LangProfile(String) - Constructor for class com.cybozu.labs.langdetect.util.LangProfile
Normal Constructor
Language - Class in com.cybozu.labs.langdetect
Language is to store the detected language.
Language(String, double) - Constructor for class com.cybozu.labs.langdetect.Language
 
loadFromText(String, File) - Static method in class com.cybozu.labs.langdetect.GenProfile
Load text file with UTF-8 and generate its language profile
loadFromWikipediaAbstract(String, File) - Static method in class com.cybozu.labs.langdetect.GenProfile
Load Wikipedia abstract database file and generate its language profile
loadProfile(String) - Static method in class com.cybozu.labs.langdetect.DetectorFactory
Load profiles from specified directory.
loadProfile(File) - Static method in class com.cybozu.labs.langdetect.DetectorFactory
Load profiles from specified directory.
loadProfile(List<String>) - Static method in class com.cybozu.labs.langdetect.DetectorFactory
Load profiles from specified directory.

M

main(String[]) - Static method in class com.cybozu.labs.langdetect.Command
Command Line Interface
Messages - Class in com.cybozu.labs.langdetect.util
This is Messages class generated by Eclipse automatically.

N

N_GRAM - Static variable in class com.cybozu.labs.langdetect.util.NGram
 
n_words - Variable in class com.cybozu.labs.langdetect.util.LangProfile
 
name - Variable in class com.cybozu.labs.langdetect.util.LangProfile
 
NGram - Class in com.cybozu.labs.langdetect.util
Cut out N-gram from text.
NGram() - Constructor for class com.cybozu.labs.langdetect.util.NGram
Constructor.
normalize(char) - Static method in class com.cybozu.labs.langdetect.util.NGram
Character Normalization
normalize_vi(String) - Static method in class com.cybozu.labs.langdetect.util.NGram
Normalizer for Vietnamese.

O

omitLessFreq() - Method in class com.cybozu.labs.langdetect.util.LangProfile
Eliminate below less frequency n-grams and noise Latin alphabets

P

prob - Variable in class com.cybozu.labs.langdetect.Language
 

S

seed - Variable in class com.cybozu.labs.langdetect.DetectorFactory
 
setAlpha(double) - Method in class com.cybozu.labs.langdetect.Detector
Set smoothing parameter.
setMaxTextLength(int) - Method in class com.cybozu.labs.langdetect.Detector
Specify max size of target text to use for language detection.
setPriorMap(HashMap<String, Double>) - Method in class com.cybozu.labs.langdetect.Detector
Set prior information about language probabilities.
setSeed(long) - Static method in class com.cybozu.labs.langdetect.DetectorFactory
 
setTag(String) - Method in class com.cybozu.labs.langdetect.util.TagExtractor
 
setVerbose() - Method in class com.cybozu.labs.langdetect.Detector
Set Verbose Mode(use for debug).

T

TagExtractor - Class in com.cybozu.labs.langdetect.util
TagExtractor is a class which extracts inner texts of specified tag.
TagExtractor(String, int) - Constructor for class com.cybozu.labs.langdetect.util.TagExtractor
 
toString() - Method in class com.cybozu.labs.langdetect.Language
 

U

update(String) - Method in class com.cybozu.labs.langdetect.util.LangProfile
Update the language profile with (fragmented) text.

W

wordLangProbMap - Variable in class com.cybozu.labs.langdetect.DetectorFactory
 
A B C D F G L M N O P S T U W 
Skip navigation links

Copyright © 2016. All rights reserved.