パッケージ nlp4j
クラス DocumentBuilder
- java.lang.Object
-
- nlp4j.DocumentBuilder
-
public class DocumentBuilder extends Object
created_at 2021-11-16
- 導入されたバージョン:
- 1.3.2
- 作成者:
- Hiroki Oya
-
-
コンストラクタの概要
コンストラクタ コンストラクタ 説明 DocumentBuilder()
Document Builder of NLP4JDocumentBuilder(Class<? extends Document> classOfT)
Document Builder of NLP4J
-
メソッドの概要
すべてのメソッド インスタンス・メソッド concreteメソッド 修飾子とタイプ メソッド 説明 Document
c()
"c" is short name of "create"Document
create()
DocumentBuilder
kw(String facet, String lex)
DocumentBuilder
put(String key, Number number)
put value on the document.DocumentBuilder
put(String key, Object obj)
put value on the document.DocumentBuilder
put(String key, String s)
put value on the document.DocumentBuilder
put(String key, Date date)
put value on the document.DocumentBuilder
v(String key, Number number)
put value on the document.DocumentBuilder
v(String key, Object obj)
put value on the document.DocumentBuilder
v(String key, String s)
put value on the document.DocumentBuilder
v(String key, Date date)
put value on the document.
-
-
-
メソッドの詳細
-
put
public DocumentBuilder put(String key, Date date)
put value on the document.- パラメータ:
key
- of docdate
- value- 戻り値:
- Builder
-
put
public DocumentBuilder put(String key, Number number)
put value on the document.- パラメータ:
key
- of docnumber
- value- 戻り値:
- Builder
-
put
public DocumentBuilder put(String key, Object obj)
put value on the document.- パラメータ:
key
- of docobj
- value- 戻り値:
- Builder
-
put
public DocumentBuilder put(String key, String s)
put value on the document.- パラメータ:
key
- of docs
- value- 戻り値:
- Builder
-
v
public DocumentBuilder v(String key, Date date)
put value on the document. "v" is short name of "put".
- パラメータ:
key
- of docdate
- value- 戻り値:
- Builder
-
v
public DocumentBuilder v(String key, Number number)
put value on the document. "v" is short name of "put".
- パラメータ:
key
- of docnumber
- value- 戻り値:
- Builder
-
v
public DocumentBuilder v(String key, Object obj)
put value on the document. "v" is short name of "put".
- パラメータ:
key
- of docobj
- value- 戻り値:
- Builder
-
v
public DocumentBuilder v(String key, String s)
put value on the document. "v" is short name of "put".
- パラメータ:
key
- of docs
- value- 戻り値:
- Builder
-
kw
public DocumentBuilder kw(String facet, String lex)
- パラメータ:
facet
- of keywordlex
- of keyword- 戻り値:
- this
- 導入されたバージョン:
- 1.3.4.0.20200203
-
create
public Document create()
- 戻り値:
- Created Document
-
c
public Document c()
"c" is short name of "create"- 戻り値:
- Created Document
-
-