isStringType

isStringType(Type): Boolean

入力が String (文字列) 型の場合は ​true​ を返します。

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

パラメーター

名前 説明

t

チェックするデータ型。

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

ソース

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

出力

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