Package org.apache.tika.detect
Class DefaultEncodingDetector
- java.lang.Object
- 
- org.apache.tika.detect.CompositeEncodingDetector
- 
- org.apache.tika.detect.DefaultEncodingDetector
 
 
- 
- All Implemented Interfaces:
- Serializable,- EncodingDetector
 
 public class DefaultEncodingDetector extends CompositeEncodingDetector A composite encoding detector based on all theEncodingDetectorimplementations available through theservice provider mechanism. Those loaded via the service provider mechanism are ordered by how they appear in the file, if there is a single service file. If multiple, there is no guarantee of order.If you need to control the order of the Detectors, you should instead construct your own CompositeDetectorand pass in the list of Detectors in the required order.- Since:
- Apache Tika 1.15
- See Also:
- Serialized Form
 
- 
- 
Constructor SummaryConstructors Constructor Description DefaultEncodingDetector()DefaultEncodingDetector(ServiceLoader loader)DefaultEncodingDetector(ServiceLoader loader, Collection<Class<? extends EncodingDetector>> excludeEncodingDetectors)
 
- 
- 
- 
Constructor Detail- 
DefaultEncodingDetectorpublic DefaultEncodingDetector() 
 - 
DefaultEncodingDetectorpublic DefaultEncodingDetector(ServiceLoader loader) 
 - 
DefaultEncodingDetectorpublic DefaultEncodingDetector(ServiceLoader loader, Collection<Class<? extends EncodingDetector>> excludeEncodingDetectors) 
 
- 
 
-