public enum TdbDataFormat extends java.lang.Enum<TdbDataFormat>
| Enum Constant and Description |
|---|
ELEMENT
Fields will be represented using elements named for each field.
|
RAW
Fields will be represented using the <FIELD> element, with a
NAME attribute for the field's name.
|
TFORM
Within the XML markup required for transport via TRIPxpi, the actual
data of the record will be represented using TFORM.
|
| Modifier and Type | Method and Description |
|---|---|
static TdbDataFormat |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TdbDataFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TdbDataFormat TFORM
public static final TdbDataFormat RAW
public static final TdbDataFormat ELEMENT
public static TdbDataFormat[] values()
for (TdbDataFormat c : TdbDataFormat.values()) System.out.println(c);
public static TdbDataFormat 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