public abstract class LogicalFunction extends Fixed1ArgFunction
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) |
evaluate
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
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
Copyright 2018 The Apache Software Foundation or its licensors, as applicable.