case equal
Binary comparison operator that results in
true
if the two objects are equal.
バイナリ比較演算子、それはtrue
という結果になります、もし2つのオブジェクトが等しいならば。
case lessThanOrEqual
Binary comparison operator that results in
true
if the value of the test object is equal to or less than the value of the other object.
バイナリ比較演算子、それはtrue
という結果になります、もしテストオブジェクトの値が他のオブジェクトの値と等しいまたはより少ないならば。
case lessThan
Binary comparison operator that results in
true
if the value of the test object is less than the value of the other object.
バイナリ比較演算子、それはtrue
という結果になります、もしテストオブジェクトの値が他のオブジェクトの値より少ないならば。
case greaterThanOrEqual
Binary comparison operator that results in
true
if the value of the test object is greater than or equal to the value of the other object.
バイナリ比較演算子、それはtrue
という結果になります、もしテストオブジェクトの値が他のオブジェクトの値より大きいまたは等しいならば。
case greaterThan
Binary comparison operator that results in
true
if the value of the test object is greater than the value of the other object.
バイナリ比較演算子、それはtrue
という結果になります、もしテストオブジェクトの値が他のオブジェクトの値より大きいならば。
case beginsWith
Binary containment operator that results in
true
if the test object is a list or string that matches the beginning of the other object (which is also a list or string).
バイナリ比較演算子、それはtrue
という結果になります、もしテストオブジェクトがあるリストまたは文字列であり、他のオブジェクト(それも同様にリストまたは文字列である)の始まりに合致するものならば。
case endsWith
Binary containment operator that results in
true
if the test object is a list or string that matches the end of the other object (which is also a list or string).
バイナリ比較演算子、それはtrue
という結果になります、もしテストオブジェクトがあるリストまたは文字列であり、他のオブジェクト(それも同様にリストまたは文字列である)の終わりに合致するものならば。
case contains
Binary containment operator that results in
true
if the test object is a list or string that matches the other object (which is also a list or string) at any location.
バイナリ比較演算子、それはtrue
という結果になります、もしテストオブジェクトがあるリストまたは文字列であり、他のオブジェクト(それも同様にリストまたは文字列である)にあらゆる位置で合致するものならば。