public class WordProcessingFormats
extends com.groupdocs.editor.formats.abstraction.DocumentFormatBase
Encapsulates all WordProcessing formats. Includes the following file types:
Doc,
Docm,
Docx,
Dot,
Dotm,
Dotx,
FlatOpc,
Odt,
Ott,
Rtf,
WordML.
Learn more about Word Processing formats here.
MIME codes are grabbed from the given resources: https://filext.com/faq/office_mime_types.html https://docs.microsoft.com/en-us/previous-versions//cc179224(v=technet.10)
| Modifier and Type | Field and Description |
|---|---|
static WordProcessingFormats |
Doc
MS Word 97-2007 Binary File Format (DOC) represents documents generated by Microsoft Word or other word processing documents in binary file format.
|
static WordProcessingFormats |
Docm
Office Open XML WordProcessingML Macro-Enabled Document (DOCM) files are Microsoft Word 2007 or higher generated documents with the ability to run macros.
|
static WordProcessingFormats |
Docx
Office Open XML WordProcessingML Macro-Free Document (DOCX) is a well-known format for Microsoft Word documents.
|
static WordProcessingFormats |
Dot
MS Word 97-2007 Template (DOT) are template files created by Microsoft Word to have pre-formatted settings for generation of further DOC or DOCX files.
|
static WordProcessingFormats |
Dotm
Office Open XML WordprocessingML Macro-Enabled Template (DOTM) represents template files created with Microsoft Word 2007 or higher.
|
static WordProcessingFormats |
Dotx
Office Open XML WordprocessingML Macro-Free Template (DOTX) are template files created by Microsoft Word to have pre-formatted settings for generation of further DOCX files.
|
static WordProcessingFormats |
FlatOpc
Office Open XML WordprocessingML stored in a flat XML file instead of a ZIP package.
|
static WordProcessingFormats |
Odt
Open Document Format Text Document (ODT) files are type of documents created with word processing applications that are based on OpenDocument Text File format.
|
static WordProcessingFormats |
Ott
Open Document Format Text Document Template (OTT) represent template documents generated by applications in compliance with the OASIS' OpenDocument standard format.
|
static WordProcessingFormats |
Rtf
Rich Text Format (RTF) represents a method of encoding formatted text and graphics for use within applications.
|
static WordProcessingFormats |
WordML
Microsoft Office Word 2003 XML Format — WordProcessingML or WordML (.XML).
|
| Modifier and Type | Method and Description |
|---|---|
static WordProcessingFormats |
fromExtension(String extension)
Retrieves an instance of the specified type
WordProcessingFormats that has the specified file extension. |
static WordProcessingFormats |
fromString(String extension)
Converts a string representing a file extension to a
WordProcessingFormats object. |
static List<WordProcessingFormats> |
getAll()
Gets an enumerable collection of all
WordProcessingFormats. |
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 WordProcessingFormats Doc
MS Word 97-2007 Binary File Format (DOC) represents documents generated by Microsoft Word or other word processing documents in binary file format.
Learn more about this file format <a href="https://wiki.fileformat.com/word-processing/doc">here</a>.
public static final WordProcessingFormats Docm
Office Open XML WordProcessingML Macro-Enabled Document (DOCM) files are Microsoft Word 2007 or higher generated documents with the ability to run macros.
Learn more about this file format <a href="https://wiki.fileformat.com/word-processing/docm">here</a>.
public static final WordProcessingFormats Docx
Office Open XML WordProcessingML Macro-Free Document (DOCX) is a well-known format for Microsoft Word documents.
Learn more about this file format <a href="https://wiki.fileformat.com/word-processing/docx">here</a>.
public static final WordProcessingFormats Dot
MS Word 97-2007 Template (DOT) are template files created by Microsoft Word to have pre-formatted settings for generation of further DOC or DOCX files.
Learn more about this file format <a href="https://wiki.fileformat.com/word-processing/dot">here</a>.
public static final WordProcessingFormats Dotm
Office Open XML WordprocessingML Macro-Enabled Template (DOTM) represents template files created with Microsoft Word 2007 or higher.
Learn more about this file format <a href="https://wiki.fileformat.com/word-processing/dotm">here</a>.
public static final WordProcessingFormats Dotx
Office Open XML WordprocessingML Macro-Free Template (DOTX) are template files created by Microsoft Word to have pre-formatted settings for generation of further DOCX files.
Learn more about this file format <a href="https://wiki.fileformat.com/word-processing/dotx">here</a>.
public static final WordProcessingFormats FlatOpc
Office Open XML WordprocessingML stored in a flat XML file instead of a ZIP package.
public static final WordProcessingFormats Odt
Open Document Format Text Document (ODT) files are type of documents created with word processing applications that are based on OpenDocument Text File format.
Learn more about this file format <a href="https://wiki.fileformat.com/word-processing/odt">here</a>.
public static final WordProcessingFormats Ott
Open Document Format Text Document Template (OTT) represent template documents generated by applications in compliance with the OASIS' OpenDocument standard format.
Learn more about this file format <a href="https://wiki.fileformat.com/word-processing/ott">here</a>.
public static final WordProcessingFormats Rtf
Rich Text Format (RTF) represents a method of encoding formatted text and graphics for use within applications.
Learn more about this file format <a href="https://wiki.fileformat.com/word-processing/rtf">here</a>.
public static final WordProcessingFormats WordML
Microsoft Office Word 2003 XML Format — WordProcessingML or WordML (.XML).
public static WordProcessingFormats fromExtension(String extension)
Retrieves an instance of the specified type WordProcessingFormats that has the specified file extension.
extension - The file extension of the document format.WordProcessingFormats with the specified file extension.IllegalArgumentException - Thrown when no matching document format is found.public static WordProcessingFormats fromString(String extension)
Converts a string representing a file extension to a WordProcessingFormats object.
extension - The file extension to convert. If the extension contains multiple periods, the part after the last period is used.WordProcessingFormats object corresponding to the specified file extension.IllegalArgumentException - Thrown when the specified file extension is null.public static List<WordProcessingFormats> getAll()
Gets an enumerable collection of all WordProcessingFormats.
IEnumerable{WordProcessingFormats} containing all instances of WordProcessingFormats.Copyright © 2024. All rights reserved.