データ接続と統合Pipeline Builder Expressions等しい

注: 以下の翻訳の正確性は検証されていません。AIPを利用して英語版の原文から機械的に翻訳されたものです。

Equals

対応環境: バッチ、ストリーミング

左と右が等しい場合に true を返します。

式カテゴリー: ブール

引数

  • Left - 左側の式。
    Expression<ComparableType>
  • Right - 右側の式。
    Expression<ComparableType>

出力タイプ: Boolean

例 1: 基本ケース

引数の値:

  • Left: a
  • Right: b
ab出力
11true
10false

例 2: 基本ケース

引数の値:

  • Left: a
  • Right: b
ab出力
1.01true
1.00false

例 3: 基本ケース

引数の値:

  • Left: departure
  • Right: destination
departuredestination出力
HeathrowHeathrowtrue
HeathrowGatwickfalse

例 4: Null ケース

引数の値:

  • Left: departure
  • Right: destination
departuredestination出力
nullnulltrue
nullHeathrowfalse