public static enum TdbXmlRecord.XmlRecordType extends java.lang.Enum<TdbXmlRecord.XmlRecordType>
TdbXmlRecord
Enum Constant and Description |
---|
NONXML
The TRIPxml record contains a document whose format is not XML.
|
UNKNOWN
The record is new, empty or invalid.
|
XML
The record represents an XML document.
|
Modifier and Type | Method and Description |
---|---|
static TdbXmlRecord.XmlRecordType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TdbXmlRecord.XmlRecordType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TdbXmlRecord.XmlRecordType UNKNOWN
public static final TdbXmlRecord.XmlRecordType XML
public static final TdbXmlRecord.XmlRecordType NONXML
public static TdbXmlRecord.XmlRecordType[] values()
for (TdbXmlRecord.XmlRecordType c : TdbXmlRecord.XmlRecordType.values()) System.out.println(c);
public static TdbXmlRecord.XmlRecordType 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 null