public abstract class LogicalFunction extends Fixed1ArgFunction implements ArrayFunction
Modifier and Type | Field and Description |
---|---|
static Function |
ISBLANK |
static Function |
ISERR
Implementation of Excel
ISERR() function. |
static Function |
ISERROR |
static Function |
ISLOGICAL |
static Function |
ISNA
Implementation for Excel ISNA() function.
|
static Function |
ISNONTEXT |
static Function |
ISNUMBER |
static Function |
ISREF |
static Function |
ISTEXT |
Constructor and Description |
---|
LogicalFunction() |
Modifier and Type | Method and Description |
---|---|
ValueEval |
evaluate(int srcRowIndex,
int srcColumnIndex,
ValueEval arg0)
|
protected abstract boolean |
evaluate(ValueEval arg) |
ValueEval |
evaluateArray(ValueEval[] args,
int srcRowIndex,
int srcColumnIndex) |
evaluate
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
_evaluateOneArrayArg, _evaluateTwoArrayArgs, evaluateOneArrayArg, evaluateTwoArrayArgs
public static final Function ISLOGICAL
public static final Function ISNONTEXT
public static final Function ISNUMBER
public static final Function ISTEXT
public static final Function ISBLANK
public static final Function ISERROR
public static final Function ISERR
ISERR()
function.
Syntax:
ISERR(value)
value The value to be tested
Returns the logical value TRUE
if value refers to any error value except
'#N/A'
; otherwise, it returns FALSE
.
public static final Function ISNA
Syntax:
ISNA(value)
value The value to be tested
Returns TRUE
if the specified value is '#N/A', FALSE
otherwise.
public static final Function ISREF
public ValueEval evaluate(int srcRowIndex, int srcColumnIndex, ValueEval arg0)
Function1Arg
evaluate
in interface Function1Arg
public ValueEval evaluateArray(ValueEval[] args, int srcRowIndex, int srcColumnIndex)
evaluateArray
in interface ArrayFunction
args
- the evaluated function arguments. Empty values are represented with
BlankEval
or MissingArgEval
, never null
.srcRowIndex
- row index of the cell containing the formula under evaluationsrcColumnIndex
- column index of the cell containing the formula under evaluationErrorEval
, never null
.
Note - Excel uses the error code #NUM! instead of IEEE NaN, so when
numeric functions evaluate to Double.NaN
be sure to translate the result to ErrorEval.NUM_ERROR
.Copyright 2022 The Apache Software Foundation or its licensors, as applicable.