1 31 32 package org.opencms.search.extractors; 33 34 import java.io.InputStream ; 35 36 46 public interface I_CmsTextExtractor { 47 48 63 I_CmsExtractionResult extractText(byte[] content) throws Exception ; 64 65 78 I_CmsExtractionResult extractText(byte[] content, String encoding) throws Exception ; 79 80 95 I_CmsExtractionResult extractText(InputStream in) throws Exception ; 96 97 110 I_CmsExtractionResult extractText(InputStream in, String encoding) throws Exception ; 111 } | Popular Tags |