Class ArrayPtg

  • All Implemented Interfaces:
    Serializable, Duplicatable, GenericRecord

    public final class ArrayPtg
    extends Ptg
    ArrayPtg - handles arrays The ArrayPtg is a little weird, the size of the Ptg when parsing initially only includes the Ptg sid and the reserved bytes. The next Ptg in the expression then follows. It is only after the "size" of all the Ptgs is met, that the ArrayPtg data is actually held after this. So Ptg.createParsedExpression keeps track of the number of ArrayPtg elements and need to parse the data upto the FORMULA record size.
    See Also:
    Serialized Form
    • Field Detail

      • PLAIN_TOKEN_SIZE

        public static final int PLAIN_TOKEN_SIZE
        The size of the plain tArray token written within the standard formula tokens (not including the data which comes after all formula tokens)
        See Also:
        Constant Field Values
    • Constructor Detail

      • ArrayPtg

        public ArrayPtg​(ArrayPtg other)
      • ArrayPtg

        public ArrayPtg​(Object[][] values2d)
        Parameters:
        values2d - array values arranged in rows
    • Method Detail

      • getTokenArrayValues

        public Object[][] getTokenArrayValues()
        Returns:
        2-d array (inner index is rowIx, outer index is colIx)
      • isBaseToken

        public boolean isBaseToken()
        Specified by:
        isBaseToken in class Ptg
        Returns:
        false if this token is classified as 'reference', 'value', or 'array'
      • getRowCount

        public int getRowCount()
      • getColumnCount

        public int getColumnCount()
      • getSize

        public int getSize​(SpreadsheetVersion version)
        This size includes the size of the array Ptg plus the Array Ptg Token value size
        Specified by:
        getSize in class Ptg
        Returns:
        the encoded length of this Ptg, including the initial Ptg type identifier byte.
      • getSid

        public byte getSid()
        Specified by:
        getSid in class Ptg
        Returns:
        structure id of the parsed thing, or -1 if the record has no sid
      • toFormulaString

        public String toFormulaString()
        Description copied from class: Ptg
        return a string representation of this token alone
        Specified by:
        toFormulaString in class Ptg
      • toFormulaString

        public String toFormulaString​(Locale locale)
      • toInternalFormulaString

        public String toInternalFormulaString()
      • copy

        public ArrayPtg copy()
        Specified by:
        copy in interface Duplicatable
        Specified by:
        copy in class Ptg
        Returns:
        a deep copy of the implementing class / instance