public enum XMLFormat extends Enum<XMLFormat>
XDP
to convert delimited data
to XDP data. Likewise, you specify XFDF
to convert delimited data
to XFDF data.Enum Constant and Description |
---|
XDP
Represents the XDP XML format.
|
XFDF
Represents the XFDF XML format.
|
Modifier and Type | Method and Description |
---|---|
String |
getValue()
Returns a string value that specifies the XML format enumeration value.
|
static XMLFormat |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static XMLFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final XMLFormat XDP
public static final XMLFormat XFDF
public static XMLFormat[] values()
for (XMLFormat c : XMLFormat.values()) System.out.println(c);
public static XMLFormat 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 getValue()
Copyright © 1982–2023 Adobe Systems Incorporated. All rights reserved.