public enum Format extends Enum<Format>
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 |
---|---|
String |
getDefaultMimetype()
Returns the default mime type for the format.
|
static Format |
valueOf(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(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant
with the specified nameNullPointerException
- if the argument is nullpublic String getDefaultMimetype()
Copyright © 2013-2015 MarkLogic Corporation.