[]
        
立即试用
(Showing Draft Content)

ImportFlags

Enum Class ImportFlags

java.lang.Object
java.lang.Enum<ImportFlags>
com.grapecity.documents.excel.ImportFlags
All Implemented Interfaces:
Serializable, Comparable<ImportFlags>, Constable

public enum ImportFlags extends Enum<ImportFlags>
读取数据的选项
  • Enum Constant Details

    • Data

      public static final ImportFlags Data
      只读取工作表中的数据
    • Formulas

      public static final ImportFlags Formulas
      仅从工作表中读取数据和公式
    • Table

      public static final ImportFlags Table
      读取表格。
    • MergeArea

      public static final ImportFlags MergeArea
      读取合并单元格。
    • Style

      public static final ImportFlags Style
      读取样式。
    • ConditionalFormatting

      public static final ImportFlags ConditionalFormatting
      读取条件格式设置。
    • DataValidation

      public static final ImportFlags DataValidation
      读取数据验证。
    • PivotTable

      public static final ImportFlags PivotTable
      读取透视表。
    • Shapes

      public static final ImportFlags Shapes
      读取所有形状。
  • Method Details

    • values

      public static ImportFlags[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static ImportFlags valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null