Enum FormulaType

  • All Implemented Interfaces:
    Serializable, Comparable<FormulaType>

    public enum FormulaType
    extends Enum<FormulaType>
    Enumeration of various formula types. See Sections 3 and 4.8 of https://www.openoffice.org/sc/excelfileformat.pdf
    Since:
    6.0.0
    Author:
    jumperchen
    • Enum Constant Detail

      • CELL

        public static final FormulaType CELL
        Regular cell formula
      • SHARED

        public static final FormulaType SHARED
        A Shared Formula ("{=SUM(A1:E1*{1,2,3,4,5}}") Similar to an array formula, but stored in a SHAREDFMLA instead of ARRAY record as a file size optimization. See Section 4.8 of https://www.openoffice.org/sc/excelfileformat.pdf
      • ARRAY

        public static final FormulaType ARRAY
        An Array formula ("{=SUM(A1:E1*{1,2,3,4,5}}") https://support.office.com/en-us/article/Guidelines-and-examples-of-array-formulas-7D94A64E-3FF3-4686-9372-ECFD5CAA57C7
      • CONDFORMAT

        public static final FormulaType CONDFORMAT
        Conditional formatting
      • NAMEDRANGE

        public static final FormulaType NAMEDRANGE
        Named range
      • DATAVALIDATION_LIST

        public static final FormulaType DATAVALIDATION_LIST
        This constant is currently very specific. The exact differences from general data validation formulas or conditional format formulas is not known yet
    • Method Detail

      • values

        public static FormulaType[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (FormulaType c : FormulaType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static FormulaType valueOf​(String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null