public enum MetadataFormat extends Enum<MetadataFormat>
Enum Constant and Description |
---|
FORMATTED_XML
XML formatted metadata.
|
HTML
HTML metadata format.
|
RAW_XML
raw metadata XML.
|
RAW_XML_AS_HTML
The XML raw metadata as html.
|
Modifier and Type | Method and Description |
---|---|
static MetadataFormat |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MetadataFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MetadataFormat HTML
public static final MetadataFormat FORMATTED_XML
public static final MetadataFormat RAW_XML
public static final MetadataFormat RAW_XML_AS_HTML
public static MetadataFormat[] values()
for (MetadataFormat c : MetadataFormat.values()) System.out.println(c);
public static MetadataFormat 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 nullCopyright © 2015. All Rights Reserved.