[]
Serializable, Comparable<ImportFlags>, ConstableUse this enumeration with XlsxOpenOptions.setImportFlags(EnumSet) and similar open options APIs to limit the imported content to specific worksheet aspects, such as cell data, formulas, styles, tables, merged cells, or shapes. Combine multiple values in an EnumSet to import multiple aspects together.
XlsxOpenOptions options = new XlsxOpenOptions();
options.setImportFlags(EnumSet.of(ImportFlags.Data, ImportFlags.Formulas));
EnumSet<ImportFlags> importFlags = options.getImportFlags();
Enum.EnumDesc<E extends Enum<E>>static ImportFlagsstatic ImportFlags[]values()name - the name of the enum constant to be returned.IllegalArgumentException - if this enum class has no constant with the specified nameNullPointerException - if the argument is null