isDateType

isDateType(Type): Boolean

入力が Date (日付) 型の場合は ​true​ を返します。

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

パラメーター

名前 説明

t

チェックするデータ型。

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

ソース

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

出力

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