パッケージ org.aiwolf.client.lib
クラス OrContentBuilder
- java.lang.Object
-
- org.aiwolf.client.lib.ContentBuilder
-
- org.aiwolf.client.lib.OrContentBuilder
-
public class OrContentBuilder extends ContentBuilder
OR演算子ビルダークラスBuilder class for OR operator.- 作成者:
- otsuki
-
-
コンストラクタの概要
コンストラクタ コンストラクタ 説明 OrContentBuilder(java.util.List<Content> contents)
OR演算子のためのOrContentBuilderを構築する(主語の指定なし) Constructs a OrContentBuilder for OR operator (with no subject specified).OrContentBuilder(Content... contents)
OR演算子のためのOrContentBuilderを構築する(主語の指定なし) Constructs a OrContentBuilder for OR operator (with no subject specified).OrContentBuilder(Agent subject, java.util.List<Content> contents)
OR演算子のためのOrContentBuilderを構築する Constructs a OrContentBuilder for OR operator.OrContentBuilder(Agent subject, Content... contents)
OR演算子のためのOrContentBuilderを構築する Constructs a OrContentBuilder for OR operator.
-
-
-
コンストラクタの詳細
-
OrContentBuilder
public OrContentBuilder(Content... contents)
OR演算子のためのOrContentBuilderを構築する(主語の指定なし)Constructs a OrContentBuilder for OR operator (with no subject specified).- パラメータ:
contents
-Content
の並びThe series ofContent
s.
-
OrContentBuilder
public OrContentBuilder(Agent subject, Content... contents)
OR演算子のためのOrContentBuilderを構築するConstructs a OrContentBuilder for OR operator.- パラメータ:
subject
-発話エージェントThe agent who utters.contents
-Content
の並びThe series ofContent
s.
-
OrContentBuilder
public OrContentBuilder(java.util.List<Content> contents)
OR演算子のためのOrContentBuilderを構築する(主語の指定なし)Constructs a OrContentBuilder for OR operator (with no subject specified).- パラメータ:
contents
-Content
のリストThe list ofContent
s.
-
-