Uses of Interface
org.apache.tika.language.translate.Translator
-
Packages that use Translator Package Description org.apache.tika Apache Tika.org.apache.tika.config Tika configuration tools.org.apache.tika.language.translate org.apache.tika.language.translate.impl -
-
Uses of Translator in org.apache.tika
Methods in org.apache.tika that return Translator Modifier and Type Method Description Translator
Tika. getTranslator()
Returns the translator instance used by this facade.Constructors in org.apache.tika with parameters of type Translator Constructor Description Tika(Detector detector, Parser parser, Translator translator)
Creates a Tika facade using the given detector, parser, and translator instances. -
Uses of Translator in org.apache.tika.config
Methods in org.apache.tika.config that return Translator Modifier and Type Method Description Translator
TikaConfig. getTranslator()
Returns the configured translator instance. -
Uses of Translator in org.apache.tika.language.translate
Classes in org.apache.tika.language.translate that implement Translator Modifier and Type Class Description class
DefaultTranslator
A translator which picks the first availableTranslator
implementations available through theservice provider mechanism
.class
EmptyTranslator
Dummy translator that always declines to give any text.Methods in org.apache.tika.language.translate that return Translator Modifier and Type Method Description Translator
DefaultTranslator. getTranslator()
Returns the current translatorMethods in org.apache.tika.language.translate that return types with arguments of type Translator Modifier and Type Method Description List<Translator>
DefaultTranslator. getTranslators()
Returns all available translators -
Uses of Translator in org.apache.tika.language.translate.impl
Classes in org.apache.tika.language.translate.impl that implement Translator Modifier and Type Class Description class
AbstractTranslator
class
CachedTranslator
CachedTranslator.class
ExternalTranslator
Abstract class used to interact with command line/external Translators.class
GoogleTranslator
An implementation of a REST client to the Google Translate v2 API.class
JoshuaNetworkTranslator
This translator is designed to work with a TCP-IP available Joshua translation server, specifically the REST-based Joshua server.class
Lingo24Translator
An implementation of a REST client for the Premium MT API v1.class
MarianTranslator
Translator that uses the Marian NMT decoder for translation.class
MicrosoftTranslator
Wrapper class to access the Windows translation service.class
MosesTranslator
Translator that uses the Moses decoder for translation.class
RTGTranslator
This translator is designed to work with a TCP-IP available RTG translation server, specifically the REST-based RTG server.class
YandexTranslator
An implementation of a REST client for the YANDEX Translate API.Methods in org.apache.tika.language.translate.impl that return Translator Modifier and Type Method Description Translator
CachedTranslator. getTranslator()
Methods in org.apache.tika.language.translate.impl with parameters of type Translator Modifier and Type Method Description void
CachedTranslator. setTranslator(Translator translator)
Constructors in org.apache.tika.language.translate.impl with parameters of type Translator Constructor Description CachedTranslator(Translator translator)
Create a new CachedTranslator.
-