Enum Constant and Description |
---|
BINARY
Identifies the format of binary documents such as images.
|
JSON
Identifies the format of JSON documents.
|
TEXT
Identifies the format of text documents such as plain text and HTML.
|
UNKNOWN
Used for documents with unknown or multiple formats.
|
XML
Identifies the format of XML documents such as XHTML.
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getDefaultExtension()
Returns the default extension for the format.
|
java.lang.String |
getDefaultMimetype()
Returns the default mime type for the format.
|
static Format |
getFromDataType(java.lang.String dataType)
Returns the format based on a document data type
as used in Data Services.
|
static Format |
getFromMimetype(java.lang.String mimeType)
Returns the format implied by the mime type
|
static Format |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Format[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Format BINARY
public static final Format JSON
public static final Format TEXT
public static final Format XML
public static final Format UNKNOWN
public static Format[] values()
for (Format c : Format.values()) System.out.println(c);
public static Format valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String getDefaultMimetype()
public java.lang.String getDefaultExtension()
public static Format getFromMimetype(java.lang.String mimeType)
mimeType
- the mime typepublic static Format getFromDataType(java.lang.String dataType)
dataType
- the data typeCopyright © 2013-2021 MarkLogic Corporation.