public final class LogicalFunctions extends Object
| Constructor and Description |
|---|
LogicalFunctions() |
| Modifier and Type | Method and Description |
|---|---|
static Boolean |
AND(Boolean... arguments)
Returns true if all arguments are considered true, false otherwise.
|
static Boolean |
EQUALS(Object obj1,
Object obj2)
Checks if the two specified objects are equal.
|
static Boolean |
FALSE()
Returns the logical value FALSE.
|
static Object |
IF(Boolean test,
Object value1,
Object value2)
Returns one of two values, depending on a test condition.
|
static Boolean |
NOT(Boolean boolValue)
Returns the negation of the specified boolean expression.
|
static Boolean |
OR(Boolean... arguments)
Returns true if any of the arguments is considered true, false otherwise.
|
static Boolean |
TRUE()
Returns the logical value TRUE.
|
public static Boolean AND(Boolean... arguments)
public static Boolean FALSE()
public static Boolean TRUE()
public static Boolean NOT(Boolean boolValue)
public static Boolean OR(Boolean... arguments)
public static Object IF(Boolean test, Object value1, Object value2)
Copyright © 2019 TIBCO Software Inc.. All rights reserved.