isBooleanType

isBooleanType(Type): Boolean

入力が Boolean (ブール) 型の場合は ​true​ を返します。

DataWeave 2.3.0 で導入されました。Mule 4.3 以降でサポートされます。

パラメーター

名前 説明

t

チェックするデータ型。

次の例では、さまざまな入力での ​isBooleanType​ の動作を示します。

ソース

%dw 2.0
import * from dw::core::Types
type ABoolean = Boolean
output application/json
---
{
   a: isBooleanType(ABoolean),
   b: isBooleanType(Boolean),
   c: isBooleanType(String),
}

出力

{
  "a": true,
  "b": true,
  "c": false
}