isKeyType

isKeyType(t: Type): Boolean

入力が Key (キー) 型の場合は ​true​ を返します。

DataWeave バージョン 2.3.0 で導入されました。

パラメーター

名前 説明

t

チェックするデータ型。

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

ソース

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

出力

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