public class SpreadsheetFormats
extends com.groupdocs.editor.formats.abstraction.DocumentFormatBase
Encapsulates all binary, XML and textual Spreadsheet formats (excluding all textual delimiter-based formats with separator like CSV, TSV, semicolon-delimited etc.), in which the workbook can be saved.
Includes the following formats:
Dif,
Fods,
Ods,
Sxc,
Xlam,
Xls,
Xlsb,
Xlsm,
Xlsx,
Xlt,
Xltm,
Xltx.
Learn more about Spreadsheet formats here.
| Modifier and Type | Field and Description |
|---|---|
static SpreadsheetFormats |
Csv
Comma Separated Values (CSV).
|
static SpreadsheetFormats |
Dif
Data Interchange Format (DIF).
|
static SpreadsheetFormats |
Fods
Flat OpenDocument Spreadsheet (FODS).
|
static SpreadsheetFormats |
Ods
OpenDocument Spreadsheet (ODS).
|
static SpreadsheetFormats |
SpreadsheetML
SpreadsheetML — Microsoft Office Excel 2002 and Excel 2003 XML Format.
|
static SpreadsheetFormats |
Sxc
StarOffice or OpenOffice.org Calc XML Spreadsheet (SXC).
|
static SpreadsheetFormats |
Tsv
Tab-Separated Values (TSV).
|
static SpreadsheetFormats |
Xlam
Excel Add-in (XLAM).
|
static SpreadsheetFormats |
Xls
Excel 97-2003 Binary File Format (XLS).
|
static SpreadsheetFormats |
Xlsb
Excel Binary Workbook (XLSB).
|
static SpreadsheetFormats |
Xlsm
Office Open XML Workbook Macro-Enabled (XLSM).
|
static SpreadsheetFormats |
Xlsx
Office Open XML Workbook Macro-Free (XLSX).
|
static SpreadsheetFormats |
Xlt
Excel 97-2003 Template (XLT).
|
static SpreadsheetFormats |
Xltm
Office Open XML Template Macro-Enabled (XLTM).
|
static SpreadsheetFormats |
Xltx
Office Open XML Template Macro-Free (XLTX).
|
| Modifier and Type | Method and Description |
|---|---|
static SpreadsheetFormats |
fromExtension(String extension)
Retrieves an instance of the specified type
SpreadsheetFormats that has the specified file extension. |
static SpreadsheetFormats |
fromString(String extension)
Converts a string representing a file extension to a
SpreadsheetFormats object. |
static List<SpreadsheetFormats> |
getAll()
Gets an enumerable collection of all
SpreadsheetFormats. |
equals, equals, fromExtension, fromMime, getExtension, getFormatFamily, getMime, hashCode, toStringareEqual, areNotEqual, equals, equalsName, fromId, fromName, fromName, fromValue, getAll, getId, getName, notEqualsName, toInt, toString, toStringpublic static final SpreadsheetFormats Csv
Comma Separated Values (CSV).
Learn more about this file format <a href="https://docs.fileformat.com/spreadsheet/csv/">here</a>.
public static final SpreadsheetFormats Dif
Data Interchange Format (DIF).
public static final SpreadsheetFormats Fods
Flat OpenDocument Spreadsheet (FODS).
public static final SpreadsheetFormats Ods
OpenDocument Spreadsheet (ODS).
Learn more about this file format <a href="https://wiki.fileformat.com/spreadsheet/ods">here</a>.
public static final SpreadsheetFormats SpreadsheetML
SpreadsheetML — Microsoft Office Excel 2002 and Excel 2003 XML Format.
public static final SpreadsheetFormats Sxc
StarOffice or OpenOffice.org Calc XML Spreadsheet (SXC).
public static final SpreadsheetFormats Tsv
Tab-Separated Values (TSV).
Learn more about this file format <a href="https://docs.fileformat.com/spreadsheet/tsv/">here</a>.
public static final SpreadsheetFormats Xlam
Excel Add-in (XLAM).
public static final SpreadsheetFormats Xls
Excel 97-2003 Binary File Format (XLS).
Learn more about this file format <a href="https://wiki.fileformat.com/spreadsheet/xls">here</a>.
public static final SpreadsheetFormats Xlsb
Excel Binary Workbook (XLSB).
Learn more about this file format <a href="https://wiki.fileformat.com/spreadsheet/xlsb">here</a>.
public static final SpreadsheetFormats Xlsm
Office Open XML Workbook Macro-Enabled (XLSM).
Learn more about this file format <a href="https://wiki.fileformat.com/spreadsheet/xlsm">here</a>.
public static final SpreadsheetFormats Xlsx
Office Open XML Workbook Macro-Free (XLSX).
Learn more about this file format <a href="https://wiki.fileformat.com/spreadsheet/xlsx">here</a>.
public static final SpreadsheetFormats Xlt
Excel 97-2003 Template (XLT).
Learn more about this file format <a href="https://wiki.fileformat.com/spreadsheet/xlt">here</a>.
public static final SpreadsheetFormats Xltm
Office Open XML Template Macro-Enabled (XLTM).
Learn more about this file format <a href="https://wiki.fileformat.com/spreadsheet/xltm">here</a>.
public static final SpreadsheetFormats Xltx
Office Open XML Template Macro-Free (XLTX).
Learn more about this file format <a href="https://wiki.fileformat.com/spreadsheet/xltx">here</a>.
public static SpreadsheetFormats fromExtension(String extension)
Retrieves an instance of the specified type SpreadsheetFormats that has the specified file extension.
extension - The file extension of the document format.SpreadsheetFormats with the specified file extension.IllegalArgumentException - Thrown when no matching document format is found.public static SpreadsheetFormats fromString(String extension)
Converts a string representing a file extension to a SpreadsheetFormats object.
extension - The file extension to convert. If the extension contains multiple periods, the part after the last period is used.SpreadsheetFormats object corresponding to the specified file extension.SpreadsheetFormats - Thrown when the specified file extension is null.public static List<SpreadsheetFormats> getAll()
Gets an enumerable collection of all SpreadsheetFormats.
IEnumerable{SpreadsheetFormats} containing all instances of SpreadsheetFormats.Copyright © 2024. All rights reserved.