public enum Format extends java.lang.Enum<Format>
Enum Constant | 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 | Description |
---|---|---|
java.lang.String |
getDefaultMimetype() |
Returns the default mime type for the format.
|
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 static Format getFromMimetype(java.lang.String mimeType)
mimeType
- the mime typeCopyright © 2013-2019 MarkLogic Corporation.