パッケージ nlp4j
インタフェース DocumentAnnotator
-
- 既知のサブインタフェースのリスト:
DocumentAnnotatorPipeline
,FieldAnnotator
,KeywordAnnotator
- 既知の実装クラスのリスト:
AbstractDocumentAnnotator
,AttributeCopyAnnotator
,AttributeFilterAnnotator
,AttributeNameConverter
,AttributeRemoveAnnotator
,AttributeReplaceAllAnnotator
,AttributeTypeConverter
,CompoundAnnotator
,DateAttributeConvertAnnotator
,DateDiffAnnotator
,DebugAnnotator
,DefaultDocumentAnnotator
,DefaultDocumentAnnotatorPipeline
,DefaultDocumentAnnotatorPipelineRunnable
,EmojiAnnotator
,EmptyAnnotator
,KeywordFacetFilteringAnnotator
,KeywordFacetMappingAnnotator
,KeywordFixAnnotator
,KeywordSequencePatternAnnotator
,LexTextAnnotator
,Nokku34Annotator
,NumeralAnnotator
,ParseIntAnnotator
,StandardPatternAnnotatorJa
,UserPatternAnnotator
,ValueNormalizeAnnotator
,WakachiAnnotator
public interface DocumentAnnotator
ドキュメントにメタ情報を付加するアノテーターです。
Document Annotator.- 導入されたバージョン:
- 1.0
- バージョン:
- 1.0
- 作成者:
- Hiroki Oya
-
-
メソッドの概要
すべてのメソッド インスタンス・メソッド abstractメソッド 修飾子とタイプ メソッド 説明 void
annotate(List<Document> docs)
複数のドキュメントにアノテーションを付加します。void
annotate(Document doc)
ドキュメントにアノテーションを付加します。void
setProperties(Properties prop)
プロパティをセットします
Set Propertiesvoid
setProperty(String key, String value)
プロパティをセットします
Set Property
-
-
-
メソッドの詳細
-
annotate
void annotate(Document doc) throws Exception
ドキュメントにアノテーションを付加します。
Add an annotation to a document.- パラメータ:
doc
- ドキュメント- 例外:
Exception
- 例外発生時- 導入されたバージョン:
- 1.0
-
annotate
void annotate(List<Document> docs) throws Exception
複数のドキュメントにアノテーションを付加します。
Add an annotation to documents.- パラメータ:
docs
- ドキュメント- 例外:
Exception
- 例外発生時- 導入されたバージョン:
- 1.0
-
setProperties
void setProperties(Properties prop)
プロパティをセットします
Set Properties- 導入されたバージョン:
- 1.2
-
-