类 ArrayNode
java.lang.Object
com.grapecity.documents.excel.expressions.SyntaxNode
com.grapecity.documents.excel.expressions.TerminalNode
com.grapecity.documents.excel.expressions.ConstNode
com.grapecity.documents.excel.expressions.ArrayNode
Represents an array literal in the syntax tree.
-
构造器详细资料
-
ArrayNode
Creates a newArrayNode
from array.- 参数:
elements
- Array elements. The value can't benull
(Nothing
).
-
-
方法详细资料
-
getElements
Array elements of this node. The value can't benull
.Supported types:
double
,String
,boolean
,CalcError
.The following types will be normalized to
double
if you convert theArrayNode
tostring
and then convert it back:byte
,short
,int
,long
,float
.Floating-point types can't be NaN or infinity.
-
setElements
Array elements of this node. The value can't benull
.Supported types:
double
,String
,boolean
,CalcError
.The following types will be normalized to
double
if you convert theArrayNode
tostring
and then convert it back:byte
,short
,int
,long
,float
.Floating-point types can't be NaN or infinity.
-